/* ============================================
   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(--terracotta);
}

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

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

.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(--terracotta);
}

.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, two-column
   ============================================ */
.section-problem {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.problem-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .problem-photo {
        order: -1;
    }
}

/* Problem section — punchline + aside */
.problem-punchline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-top: 28px;
    letter-spacing: -0.02em;
}

.problem-punchline strong {
    color: var(--terracotta);
}

.problem-aside {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
    font-weight: 400;
}

/* ============================================
   Differentiator Section — white bg
   ============================================ */
.section-differentiator {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.differentiator-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.differentiator-intro {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.differentiator-intro .differentiator-body {
    margin-bottom: 0;
}

.differentiator-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

@media (max-width: 900px) {
    .differentiator-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .differentiator-photo {
        order: -1;
    }
}

.differentiator-body {
    text-align: left;
    margin-bottom: 48px;
}

.differentiator-body p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.differentiator-body p:last-child {
    margin-bottom: 0;
}

.differentiator-lead {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    padding: 20px 24px;
    background: var(--cream);
    border-left: 3px solid var(--terracotta);
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
}

.differentiator-body strong {
    color: var(--text-dark);
    font-weight: 700;
}

.differentiator-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.differentiator-highlight-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 20px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.differentiator-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--terracotta-soft);
    border-radius: var(--radius);
    color: var(--terracotta);
}

.differentiator-icon svg {
    width: 22px;
    height: 22px;
}

.differentiator-highlight-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.differentiator-highlight-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .differentiator-highlight {
        grid-template-columns: 1fr;
    }
}

/* Bonus — booking callout */
.differentiator-bonus {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 36px;
    padding: 28px 28px;
    background: linear-gradient(135deg, var(--terracotta-soft), rgba(202, 138, 4, 0.06));
    border: 1px solid rgba(224, 89, 42, 0.18);
    border-radius: var(--radius-lg);
    text-align: left;
}

.differentiator-bonus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--terracotta);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.differentiator-bonus-icon svg {
    width: 24px;
    height: 24px;
}

.differentiator-bonus strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.differentiator-bonus p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================
   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(--terracotta);
    color: var(--white);
    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(--terracotta-soft);
    border-radius: var(--radius);
    margin-bottom: 20px;
    color: var(--terracotta);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.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: #1F1410;
    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(--gold);
}

.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;
    }
}


/* ============================================
   Printable Menu Section — white bg
   ============================================ */
.section-printable-menu {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.printable-menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.printable-menu-copy .section-title {
    margin-bottom: 24px;
}

.printable-menu-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.printable-menu-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

.printable-menu-highlight-item svg {
    flex-shrink: 0;
    color: var(--terracotta);
}

/* ── PDF Mockup ── */
.printable-menu-preview {
    display: flex;
    justify-content: center;
}

.pdf-mockup {
    width: 100%;
    max-width: 360px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.03);
    padding: 36px 32px 28px;
    position: relative;
}

.pdf-mockup::before {
    content: 'PDF';
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--red);
    background: var(--red-soft);
    padding: 3px 8px;
    border-radius: 4px;
}

.pdf-mockup-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.pdf-mockup-logo {
    font-family: var(--font-brand);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pdf-mockup-subtitle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 600;
}

.pdf-mockup-section {
    margin-bottom: 20px;
}

.pdf-mockup-category {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-light);
}

.pdf-mockup-dish {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: var(--text-dark);
}

.pdf-mockup-dish-name {
    white-space: nowrap;
    font-weight: 500;
}

.pdf-mockup-allergen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    background: var(--cream);
    color: var(--text-secondary);
    padding: 1px 4px;
    border-radius: 3px;
    vertical-align: middle;
    letter-spacing: 0.02em;
}

.pdf-mockup-dish-dots {
    flex: 1;
    border-bottom: 1px dotted var(--text-muted);
    margin: 0 4px;
    min-width: 20px;
    position: relative;
    top: -3px;
}

.pdf-mockup-dish-price {
    white-space: nowrap;
    font-weight: 600;
    color: var(--text-dark);
}

.pdf-mockup-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.pdf-mockup-footer span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Before / After — replaces old value-metrics
   ============================================ */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.before-after-col {
    border-radius: var(--radius-lg);
    padding: 40px 32px;
}

/* ── BEFORE — desaturated, faded, "broken" feel ── */
.before-col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

/* Fade everything except badge and titles */
.before-col .before-after-list li p,
.before-col .before-icon {
    opacity: 0.4;
    filter: saturate(0.2);
}

/* Badge and titles stay vivid */
.before-col .before-after-badge {
    opacity: 1;
    filter: none;
}

.before-col .before-after-list li strong {
    opacity: 0.85;
    filter: none;
    color: #f87171;
}

/* ── AFTER — vibrant, alive ── */
.after-col {
    background: rgba(202, 138, 4, 0.06);
    border: 1px solid rgba(202, 138, 4, 0.22);
}

/* ── Badges ── */
.before-after-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.before-badge {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
}

.before-badge svg {
    color: #f87171;
}

.after-badge {
    background: rgba(202, 138, 4, 0.15);
    color: var(--gold);
}

.after-badge svg {
    color: var(--gold);
}

/* ── List ── */
.before-after-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.before-after-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.before-icon,
.after-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 2px;
}

.before-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.after-icon {
    background: rgba(202, 138, 4, 0.15);
    color: var(--gold);
}

.before-after-list li strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-on-dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.before-after-list li p {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
    line-height: 1.65;
}

/* ============================================
   Responsive — Printable Menu + Before/After
   ============================================ */
@media (max-width: 900px) {
    .printable-menu-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .printable-menu-copy {
        text-align: center;
    }

    .printable-menu-highlight-item {
        justify-content: center;
    }

    .before-after {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
