/* ============================================================
   Yampli site foundation
   Tokens in OKLCH, converted 1:1 from the app's brand hexes.
   Visual rules follow impeccable; motion follows emil-design-eng.
   ============================================================ */

:root {
    /* Brand, exact conversions of the app tokens */
    --berry:       oklch(50.6% 0.1442 16);    /* #A73948 */
    --berry-deep:  oklch(42.1% 0.1207 15.3);  /* #822A37 */
    --berry-tint:  oklch(93.2% 0.0187 21.6);  /* #F5E4E3 */
    --gold:        oklch(85.5% 0.1431 98.2);  /* #E8D055 */
    --ink:         oklch(19.7% 0.0105 196.3); /* #101717 */
    --ivory:       oklch(97.5% 0.0119 79.8);  /* #FBF6EE, existing brand token */
    --paper:       oklch(95.4% 0.0131 82.4);  /* #F4EFE6 */
    --card:        oklch(100% 0 0);
    --ok:          oklch(64.9% 0.1408 158.7);

    /* Derived, contrast-verified */
    --ink-soft:    oklch(46% 0.012 40);       /* 6.4:1+ on ivory/paper/white */
    --line:        oklch(90% 0.014 75);
    --on-berry:    oklch(97.5% 0.0119 79.8);
    --on-berry-soft: oklch(97.5% 0.0119 79.8 / .84);

    /* Radii, shadows */
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-card: 0 10px 34px oklch(30% 0.05 20 / .08);
    --shadow-lift: 0 24px 56px oklch(30% 0.05 20 / .16);
    --shadow-berry: 0 14px 34px oklch(42% 0.12 15 / .30);

    /* Motion, emil-design-eng curves */
    --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --t-press: 160ms;
    --t-ui: 200ms;
    --t-reveal: 550ms;

    /* Z-scale, semantic */
    --z-sticky: 10;
    --z-banner: 20;
    --z-menu: 30;

    /* Type scale */
    --t-hero: clamp(2.7rem, 7vw, 5.5rem);
    --t-band: clamp(2.1rem, 4.8vw, 3.8rem);
    --t-sub:  clamp(1rem, 1.3vw, 1.15rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    letter-spacing: -0.01em;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.6;
}

h1, h2, h3, .logo-text {
    font-family: 'Baloo 2', 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.022em;
    line-height: 1.04;
    text-wrap: balance;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--berry); outline-offset: 3px; border-radius: 2px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.75rem; }

/* ============ Navbar ============ */
.navbar {
    position: sticky; top: 0; z-index: var(--z-sticky);
    background: oklch(97.5% 0.0119 79.8 / .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; }
.logo { display: flex; align-items: center; gap: .55rem; }
.logo-icon { width: 34px; height: 34px; object-fit: contain; }
.logo-text { font-size: 1.35rem; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: .92rem; }
.nav-links a { color: var(--ink-soft); font-weight: 600; transition: color var(--t-ui) ease; }
.nav-links a:hover { color: var(--berry); }
.nav-links a.btn-primary { color: var(--on-berry); }

.language-switcher { display: flex; gap: .2rem; background: var(--card);
    border: 1px solid var(--line); border-radius: 9999px; padding: .2rem; }
.lang-btn { border: 0; background: transparent; cursor: pointer; font: inherit;
    font-size: .78rem; font-weight: 700; color: var(--ink-soft); padding: .26rem .68rem; border-radius: 9999px; }
.lang-btn.active { background: var(--berry); color: var(--on-berry); }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer;
    padding: 8px; background: none; border: 0; }
.mobile-menu-toggle span { width: 24px; height: 2px; background: var(--ink);
    transition: transform var(--t-ui) var(--ease-out), opacity var(--t-ui) ease; }

/* ============ Buttons ============ */
.btn-primary, .btn-gold, .btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font: 700 .95rem/1 'Montserrat', sans-serif;
    padding: .9rem 1.8rem; border-radius: 9999px; border: 0; cursor: pointer;
    transition: transform var(--t-press) var(--ease-out),
                box-shadow var(--t-press) var(--ease-out),
                background-color var(--t-ui) ease;
}
.btn-primary { background: var(--berry); color: var(--on-berry); }
.btn-primary:hover { background: var(--berry-deep); box-shadow: var(--shadow-berry); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { box-shadow: 0 10px 26px oklch(85% 0.14 98 / .45); }
.btn-secondary { background: transparent; color: var(--berry); box-shadow: inset 0 0 0 2px var(--berry); }
.btn-secondary:hover { background: var(--berry-tint); }
.btn-primary:active, .btn-gold:active, .btn-secondary:active,
.download-btn:active, .lang-btn:active { transform: scale(0.97); }
.btn-large { padding: 1.05rem 2.3rem; font-size: 1.05rem; }

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover, .btn-gold:hover { transform: translateY(-2px); }
    .btn-primary:active, .btn-gold:active { transform: translateY(-2px) scale(0.97); }
}

/* ============ Bands ============ */
.band { padding: clamp(4.2rem, 8.5vw, 8rem) 0; }
.band--white { background: var(--card); }
.band--paper { background: var(--paper); }
.band--berry { background: var(--berry); color: var(--on-berry); }
.band--ink   { background: var(--ink); color: var(--ivory); }

.hook { font-size: var(--t-band); }
.hook .accent { color: var(--berry); }
.band--berry .hook .accent, .band--ink .hook .accent { color: var(--gold); }
.pay { font-size: clamp(2.3rem, 5.4vw, 4.4rem); margin-top: .08em; }
.pay--berry { color: var(--berry); }
.pay--gold  { color: var(--gold); }

.lede {
    font-size: var(--t-sub); color: var(--ink-soft);
    max-width: 58ch; margin-top: 1.7rem; line-height: 1.72;
}
.band--berry .lede { color: var(--on-berry-soft); }
.lede + .lede { margin-top: 1rem; }

.split { display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split--flip .split-visual { order: -1; }
.split-visual { display: flex; align-items: center; justify-content: center; }

/* ============ Device screenshots (pre-framed) ============ */
.mock { width: 100%; max-width: 300px; }
.mock img { width: 100%; height: auto; filter: drop-shadow(0 22px 40px oklch(30% 0.05 20 / .22)); }
.mock-pair { display: flex; align-items: flex-end; gap: 1.1rem; }
.mock-pair .mock { max-width: 244px; }
.mock-pair .mock:first-child { transform: rotate(-4deg) translateY(12px); }
.mock-pair .mock:last-child  { transform: rotate(4deg); }

/* ============ Check strip ============ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.strip ul { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem 3rem; padding: 1.4rem 0; }
.strip li { font-size: .93rem; font-weight: 600; }
.strip li::before { content: '✓'; color: var(--ok); font-weight: 800; margin-right: .5rem; }

/* ============ Store badges ============ */
.store-badges { display: flex; gap: .7rem; flex-wrap: wrap; }
.download-btn { display: flex; align-items: center; gap: .6rem; background: var(--ink);
    color: #fff; border-radius: 14px; padding: .68rem 1.15rem;
    transition: transform var(--t-press) var(--ease-out); }
.band--berry .download-btn { background: var(--ink); }
.download-small { font-size: .62rem; opacity: .78; line-height: 1.2; }
.download-large { font-size: .97rem; font-weight: 700; line-height: 1.25; }
@media (hover: hover) and (pointer: fine) {
    .download-btn:hover { transform: translateY(-2px); }
}

/* ============ Footer ============ */
.footer { background: var(--ink); color: oklch(66% 0.01 60); padding: 4rem 0 1.75rem; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem; }
.footer-section { flex: 1 1 190px; }
.footer-logo { display: flex; align-items: center; gap: .55rem; }
.footer-logo .logo-text { color: #fff; font-size: 1.1rem; }
.footer-logo .logo-icon { width: 26px; height: 26px; }
.footer-description { font-size: .88rem; margin-top: .8rem; max-width: 30ch; line-height: 1.6; }
.footer-title { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: .85rem; }
.footer-links li { margin-bottom: .55rem; font-size: .88rem; }
.footer-links a { transition: color var(--t-ui) ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid oklch(100% 0 0 / .1); margin-top: 3rem;
    padding-top: 1.5rem; text-align: center; font-size: .82rem; }

/* ============ Cookie banner ============ */
.cookie-banner { position: fixed; z-index: var(--z-banner); left: 1rem; right: 1rem; bottom: 1rem;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
    max-width: 880px; margin: auto; background: var(--ink); color: #fff; border-radius: 16px;
    box-shadow: 0 14px 44px oklch(0% 0 0 / .32); padding: 1.05rem 1.3rem; }
.cookie-banner[hidden] { display: none; }
.cookie-copy { flex: 1; }
.cookie-banner h2 { color: #fff; font-size: 1rem; margin-bottom: .35rem; }
.cookie-banner p { font-size: .82rem; line-height: 1.5; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner button { border: 1px solid oklch(100% 0 0 / .4); border-radius: 9999px;
    cursor: pointer; font: 700 .78rem 'Montserrat', sans-serif; padding: .6rem 1rem;
    transition: transform var(--t-press) var(--ease-out); }
.cookie-banner button:active { transform: scale(0.97); }
.cookie-customize { background: transparent; color: #fff; }
.cookie-reject { background: #fff; color: var(--ink); border-color: #fff !important; }
.cookie-save { background: #fff; color: var(--ink); }
.cookie-accept { background: #fff; color: var(--ink); border-color: #fff !important; }
.cookie-banner--preferences { max-width: 680px; align-items: stretch; flex-direction: column; }
.cookie-banner--preferences .cookie-actions { justify-content: flex-end; width: 100%; }
.cookie-preferences { display: grid; gap: .55rem; margin-top: .9rem; }
.cookie-preference { display: grid; grid-template-columns: 1.15rem 1fr; gap: .65rem; align-items: start;
    border-top: 1px solid oklch(100% 0 0 / .13); padding-top: .55rem; }
.cookie-preference input { width: 1rem; height: 1rem; margin-top: .2rem; accent-color: var(--gold); }
.cookie-preference strong, .cookie-preference small { display: block; }
.cookie-preference strong { color: #fff; font-size: .82rem; }
.cookie-preference small { color: oklch(100% 0 0 / .72); font-size: .72rem; line-height: 1.45; margin-top: .12rem; }
.cookie-settings-button { position: fixed; z-index: calc(var(--z-banner) - 1); left: .75rem; bottom: .75rem;
    border: 1px solid oklch(100% 0 0 / .25); border-radius: 9999px; background: var(--ink); color: #fff;
    box-shadow: 0 5px 18px oklch(0% 0 0 / .2); cursor: pointer; font: 600 .7rem 'Montserrat', sans-serif;
    padding: .5rem .75rem; }

/* ============ Scroll reveals ============
   JS opts elements in by adding .will-reveal; without JS everything
   stays visible (never gate content on animation). */
.will-reveal { opacity: 0; transform: translateY(16px);
    transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out); }
.will-reveal.revealed { opacity: 1; transform: none; }
.mock-pair .will-reveal:nth-child(2) { transition-delay: 70ms; }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .will-reveal { transform: none; transition: opacity 200ms ease; }
    .btn-primary:hover, .btn-gold:hover, .download-btn:hover { transform: none; }
    * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============ Responsive ============ */
@media (max-width: 920px) {
    .split { grid-template-columns: 1fr; gap: 2.8rem; }
    .split--flip .split-visual { order: 0; }
    .lede { max-width: 65ch; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column; align-items: flex-start;
        position: absolute; top: 100%; left: 0; right: 0; z-index: var(--z-menu);
        background: var(--card); padding: 1.25rem 1.75rem; gap: 1.05rem;
        box-shadow: var(--shadow-card); border-bottom: 1px solid var(--line);
    }
    .mobile-menu-toggle { display: flex; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .footer-content { flex-direction: column; }
    .cookie-banner { flex-direction: column; align-items: stretch; }
    .cookie-actions { flex-wrap: wrap; justify-content: flex-end; }
    .mock-pair { justify-content: center; }
    .mock-pair .mock { max-width: 200px; }
}

/* ============ Hero (consumer) ============ */
.hero { padding: clamp(3.2rem, 6vw, 5.5rem) 0 clamp(2.6rem, 5vw, 4.5rem); overflow: hidden; }
.hero .split { align-items: center; }
.hero-title { font-size: var(--t-hero); }
.hero-title .accent { color: var(--berry); }
.hero-lede { font-size: clamp(1.02rem, 1.5vw, 1.28rem); color: var(--ink-soft);
    max-width: 44ch; margin-top: 1.8rem; line-height: 1.65; }
.hero-ctas { margin-top: 2.2rem; }
.hero-micro { font-size: .85rem; color: var(--ink-soft); margin-top: 1rem; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img { max-width: min(380px, 78vw); height: auto;
    filter: drop-shadow(0 26px 44px oklch(30% 0.05 20 / .2)); }
.hero-visual .mascot-peek { position: absolute; width: 92px; height: 92px;
    right: 2%; bottom: -6px; object-fit: contain; filter: none; }

/* ============ Download band ============ */
.dl-band { text-align: center; }
.dl-band .mascot { width: 112px; height: 112px; object-fit: contain; margin: 0 auto 1.4rem; }
.dl-band h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.dl-band .lede { margin-left: auto; margin-right: auto; }
.dl-band .store-badges { justify-content: center; margin-top: 2.4rem; }
.dl-band .micro { font-size: .84rem; margin-top: 1.1rem; color: var(--on-berry-soft); }

/* ============================================================
   Partner page components
   ============================================================ */

/* ---- Animated staff checklist (signature element) ----
   Without JS the finished state is fully visible. JS adds
   .armed (hides strokes) then .play (draws them, staggered). */
.sheet-stack { position: relative; width: 100%; max-width: 500px; }
.sheet-behind { position: absolute; inset: 1.4rem -1rem -1.4rem 2rem;
    background: var(--berry); border-radius: 22px; transform: rotate(1.6deg); }
.sheet { position: relative; background: oklch(99.4% 0.004 85); border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.3rem); transform: rotate(-.8deg); box-shadow: var(--shadow-lift); }
.sheet-row { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; }
.sheet-row + .sheet-row { border-top: 2px dotted oklch(20% 0.01 196 / .14); }
.sheet-box { width: 38px; height: 38px; flex: none; border-radius: 9px;
    border: 3px solid oklch(20% 0.01 196 / .18); background: #fff;
    display: flex; align-items: center; justify-content: center; }
.sheet-box svg { width: 76%; height: 76%; overflow: visible; }
.sheet-box path { stroke: var(--berry); stroke-width: 5.5; fill: none;
    stroke-linecap: round; stroke-linejoin: round; }
.sheet-text { position: relative; font-weight: 600;
    font-size: clamp(.95rem, 1.5vw, 1.15rem); color: var(--ink); opacity: .5; }
.sheet-text svg { position: absolute; left: -3%; top: 50%; width: 106%; height: 14px;
    transform: translateY(-50%); overflow: visible; }
.sheet-text svg path { stroke: var(--berry); stroke-width: 3.2; fill: none; stroke-linecap: round; }

.sticker { position: absolute; right: -1.2rem; bottom: -2rem;
    width: clamp(108px, 14vw, 140px); aspect-ratio: 1;
    background: var(--berry); border-radius: 50%; transform: rotate(-8deg);
    box-shadow: 0 14px 30px oklch(30% 0.05 20 / .3);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--on-berry); }
.sticker-n { font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3.3rem); line-height: .85; }
.sticker-n em { font-style: normal; font: 700 .3em 'Montserrat', sans-serif; }
.sticker-l { font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: clamp(.85rem, 1.3vw, 1.1rem); color: var(--gold); margin-top: .1rem; }

/* draw strokes: pathLength=1 on every animatable path */
.checklist.armed .sheet-box path,
.checklist.armed .sheet-text svg path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.checklist.armed .sticker { opacity: 0; transform: rotate(-8deg) scale(.9); }
.checklist.play .sheet-box path { animation: draw 260ms var(--ease-out) forwards; }
.checklist.play .sheet-text svg path { animation: draw 320ms var(--ease-out) forwards; }
.checklist.play .sheet-row:nth-child(1) .sheet-box path { animation-delay: 80ms; }
.checklist.play .sheet-row:nth-child(1) .sheet-text svg path { animation-delay: 200ms; }
.checklist.play .sheet-row:nth-child(2) .sheet-box path { animation-delay: 420ms; }
.checklist.play .sheet-row:nth-child(2) .sheet-text svg path { animation-delay: 540ms; }
.checklist.play .sheet-row:nth-child(3) .sheet-box path { animation-delay: 760ms; }
.checklist.play .sheet-row:nth-child(3) .sheet-text svg path { animation-delay: 880ms; }
.checklist.play .sheet-row:nth-child(4) .sheet-box path { animation-delay: 1100ms; }
.checklist.play .sheet-row:nth-child(4) .sheet-text svg path { animation-delay: 1220ms; }
.checklist.play .sticker { animation: pop 420ms var(--ease-out) 1560ms forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; transform: rotate(-8deg) scale(1); } }

/* ---- Receipt object ---- */
.receipt { width: 100%; max-width: 400px; background: var(--ivory); position: relative;
    padding: clamp(2rem, 3.5vw, 2.8rem) clamp(1.5rem, 3vw, 2.3rem);
    transform: rotate(-1.4deg); box-shadow: var(--shadow-lift); }
.receipt::before, .receipt::after { content: ''; position: absolute; left: 0; width: 100%; height: 14px;
    background: repeating-linear-gradient(-45deg, var(--ivory) 0 7px, transparent 7px 14px); }
.receipt::before { top: -7px; transform: scaleY(-1); }
.receipt::after { bottom: -7px; }
.receipt-h { font: 700 .7rem 'Montserrat', sans-serif; letter-spacing: .24em;
    text-transform: uppercase; color: var(--berry); text-align: center; }
.receipt-rule { height: 2px; background: oklch(20% 0.01 196 / .12); margin: 1.3rem 0; }
.receipt-row { display: flex; align-items: baseline; gap: .6rem; font-size: .92rem; margin-bottom: .68rem; }
.receipt-row i { flex: 1; border-bottom: 2px dotted oklch(20% 0.01 196 / .25); }
.receipt-row b { font-weight: 700; white-space: nowrap; }
.receipt-total { display: flex; align-items: baseline; gap: .6rem; margin-top: 1.25rem;
    background: var(--ink); color: #fff; padding: .85rem 1.05rem; border-radius: 10px; }
.receipt-total span { font: 700 .85rem 'Montserrat', sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.receipt-total i { flex: 1; border-bottom: 2px dotted oklch(100% 0 0 / .3); }
.receipt-total b { font-family: 'Baloo 2', sans-serif; font-size: 1.25rem; color: var(--gold); }

/* ---- Modules ---- */
.module + .module { margin-top: clamp(3.6rem, 7vw, 6.2rem); }
.module h3 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.module h3 .accent { color: var(--berry); }
.module-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.module-list li { font-size: .96rem; padding-left: 1.7rem; position: relative; }
.module-list li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 800; }

/* ---- Cost ---- */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.8rem; }
.cost-card { border-radius: var(--radius); padding: clamp(1.7rem, 3.4vw, 2.5rem); }
.cost-card--own { background: var(--card); border: 1px solid var(--line); }
.cost-card--us  { background: var(--berry); color: var(--on-berry); box-shadow: var(--shadow-berry); }
.cost-label { font-size: .76rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; opacity: .7; }
.cost-n { font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: clamp(2.1rem, 4.2vw, 3.2rem); line-height: 1.05; margin-top: .65rem; }
.cost-card--us .cost-n { color: var(--gold); }
.cost-sub { margin-top: .4rem; font-weight: 700; font-size: .98rem; }
.cost-lines { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .55rem; }
.cost-lines li { font-size: .92rem; display: flex; justify-content: space-between;
    gap: 1rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.cost-card--us .cost-lines li { border-color: oklch(100% 0 0 / .2); }
.cost-lines b { font-weight: 700; white-space: nowrap; }
.cost-note { margin-top: 1.4rem; font-size: .9rem; opacity: .82; line-height: 1.6; }

/* ---- How to start ---- */
.steps { counter-reset: step; max-width: 640px; list-style: none; padding-left: 0; }
.step-card { position: relative; padding: 1.15rem 0 1.15rem 4rem; counter-increment: step; }
.step-card + .step-card { border-top: 1px solid var(--line); }
.step-card::before { content: counter(step); position: absolute; left: 0; top: 1rem;
    width: 2.6rem; height: 2.6rem; border-radius: 50%;
    background: var(--berry-tint); color: var(--berry);
    font: 800 1.15rem/2.6rem 'Baloo 2', sans-serif; text-align: center; }
.step-title { font-weight: 700; font-size: 1.04rem; }
.step-body { font-size: .93rem; color: var(--ink-soft); margin-top: .25rem; max-width: 55ch; }

/* ---- Proof quotes ---- */
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    max-width: 940px; margin: 2.8rem auto 0; }
.proof-quote { background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); }
.proof-quote p { font-family: 'Baloo 2', sans-serif; font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.35; }
.proof-quote cite { display: block; font: 600 .88rem 'Montserrat', sans-serif;
    font-style: normal; color: var(--ink-soft); margin-top: 1rem; }

/* ---- FAQ ---- */
.faq { max-width: 800px; margin: 2.4rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; padding: 1.35rem 0; font-weight: 700;
    font-size: clamp(.98rem, 1.5vw, 1.12rem); list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font: 800 1.7rem 'Baloo 2', sans-serif;
    color: var(--berry); line-height: 1; flex-shrink: 0;
    transition: transform var(--t-ui) var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: .96rem; color: var(--ink-soft); padding-bottom: 1.35rem;
    max-width: 62ch; line-height: 1.7; }

/* ---- Inquiry form ---- */
.form-wrap { max-width: 620px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.2rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .35rem; }
.field input, .field textarea { width: 100%; font: 500 .95rem 'Montserrat', sans-serif;
    color: var(--ink); background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: .8rem .95rem;
    transition: border-color var(--t-ui) ease, box-shadow var(--t-ui) ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--berry);
    box-shadow: 0 0 0 3px oklch(50.6% 0.1442 16 / .15); }
.field textarea { min-height: 120px; resize: vertical; }
.form-consent { display: flex; align-items: flex-start; gap: .65rem; font-size: .8rem; color: var(--ink-soft); }
.form-consent input { width: 1rem; height: 1rem; margin-top: .15rem; flex: 0 0 auto; accent-color: var(--coral); }
.form-status { font-size: .9rem; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: var(--ok); }
.form-status.error { color: var(--berry); }

@media (max-width: 920px) {
    .cost-grid, .proof-grid, .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: auto; }
    .sticker { right: 0; bottom: -1.5rem; }
}
