/* Sections */
section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    section {
        padding: calc(var(--space-2xl) * 1.5) 0;
    }
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-content {
    z-index: 2;
}

.hero-visual {
    z-index: 1;
}

.hero-image-placeholder {
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder img {
    transition: opacity 0.7s ease;
}

.hero-image-placeholder:hover img {
    opacity: 1;
}

/* Founder Story */
#founder {
    position: relative;
}

.story-step {
    position: relative;
    padding-left: var(--space-lg);
}

.story-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gold-30);
}

/* Services */
#services {
    background-color: var(--secondary);
}

.service-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--gold-30);
    transform: translateY(-4px);
}

/* Process */
#process {
    background-color: var(--bg);
}

.process-step {
    position: relative;
    padding-left: var(--space-lg);
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gold-30);
}

/* Differentiation */
#differentiation {
    background-color: var(--secondary);
}

/* Trial */
#trial {
    background-color: var(--bg);
}

/* Results */
#results {
    background-color: var(--secondary);
}

/* Testimonials */
#testimonials {
    background-color: var(--bg);
}

/* FAQ */
#faq {
    background-color: var(--secondary);
}

/* Contact */
#contact {
    background-color: var(--bg);
}
