/* ============================================
   Sections — Problem, Solution, Features,
   Business Value (Agency-specific)
   ============================================ */

/* ── Shared ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lavender);
}

/* Dark variant */
.section-label-dark {
    color: var(--text-on-dark-muted);
}

.section-label-dark .section-label-dot {
    background: var(--lime);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-title em {
    font-style: normal;
    color: var(--lavender);
}

.section-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.section-body p + p {
    margin-top: 16px;
}

/* ============================================
   Problem Section — warm cream
   ============================================ */
.section-problem {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.section-problem .container {
    max-width: 720px;
    text-align: center;
}

/* ============================================
   Solution Section — How it works (white bg)
   ============================================ */
.section-solution {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.section-solution .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    padding: 36px 28px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.solution-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--plum);
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.solution-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Features Section — cream bg, 6-card grid
   ============================================ */
.section-features {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.section-features .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-soft);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Business Value — dark plum, big metrics
   ============================================ */
.section-value {
    padding: var(--section-padding) 0;
    background: var(--plum);
    color: var(--text-on-dark);
}

.value-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.value-header .section-title {
    color: var(--text-on-dark);
}

.value-header .section-title em {
    color: var(--lime);
}

.value-header .section-body {
    color: var(--text-on-dark-muted);
}

.value-header .section-body p + p {
    margin-top: 16px;
}

/* ── Metrics row — nory.ai style, no cards ── */
.value-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.value-metric {
    text-align: center;
    padding: 48px 24px;
    position: relative;
}

/* Vertical dividers between columns */
.value-metric + .value-metric::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.value-metric-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-on-dark-muted);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.value-metric-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.value-metric-tag-dot.dot-lime { background: var(--lime); }
.value-metric-tag-dot.dot-lavender { background: var(--lavender); }
.value-metric-tag-dot.dot-red { background: var(--red); }

.value-metric-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-on-dark);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.value-metric-label {
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    font-weight: 400;
    line-height: 1.4;
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
    .solution-steps {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .value-metrics {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .value-metric + .value-metric::before {
        left: 20%;
        right: 20%;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px;
    }
}
