:root {
    --red: #D72600;
    --red-dark: #9F1800;
    --orange: #FF6B00;
    --green: #13A35B;
    --yellow: #FFE600;
    --blue: #006BD6;
    --ink: #2C160F;
    --muted: #6F625E;
    --soft: #F8FAFC;
    --white: #FFFFFF;
    --border: rgba(44, 22, 15, .11);
    --shadow-sm: 0 10px 28px rgba(76, 27, 13, .08);
    --shadow-md: 0 22px 60px rgba(76, 27, 13, .14);
    --shadow-red: 0 28px 70px rgba(122, 21, 0, .32);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 28px;
    --container: 1180px;
    --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] {
    display: none !important;
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, blockquote { margin-top: 0; }
button { border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid rgba(0, 107, 214, .65); outline-offset: 3px; }
::selection { background: var(--yellow); color: var(--ink); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: #26100a; }
.section-heading { max-width: 730px; margin-bottom: 54px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2,
.history-copy h2,
.trust-copy h2,
.location-copy h2,
.impact-copy h2,
.partners-copy h2,
.cta-copy h2,
.faq-heading h2,
.screens-heading h2 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: -.045em;
    font-weight: 900;
}
.section-heading p,
.history-copy p,
.trust-copy > p,
.location-copy > p,
.impact-copy p,
.partners-copy p,
.cta-copy p,
.faq-heading p,
.screens-heading p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 680px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--red);
    font-size: .77rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 999px; background: currentColor; }
.eyebrow-light { color: rgba(255, 255, 255, .86); }
.sr-only, .svg-sprite {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; background: var(--white); color: var(--ink); padding: 12px 18px; border-radius: 8px; font-weight: 800; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .045em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 25px rgba(215, 38, 0, .22); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 16px 34px rgba(159, 24, 0, .28); }
.button-light { color: var(--red-dark); background: var(--white); box-shadow: 0 16px 40px rgba(74, 13, 0, .2); }
.button-light:hover { box-shadow: 0 20px 50px rgba(74, 13, 0, .28); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #120907; }
.button-outline { border-color: rgba(215, 38, 0, .28); color: var(--red); background: var(--white); }
.button-outline:hover { border-color: var(--red); background: #fff7f5; }
.button-ghost-light { color: var(--white); border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .08); backdrop-filter: blur(10px); }
.button-ghost-light:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .7); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .76rem; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    color: var(--white);
    transition: background .3s ease, box-shadow .3s ease, color .3s ease, height .3s ease;
}
.site-header.scrolled,
body:not(.home-page) .site-header { height: 72px; color: var(--ink); background: rgba(255, 255, 255, .95); box-shadow: 0 8px 30px rgba(44, 22, 15, .08); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.brand-word { font-size: 2rem; letter-spacing: -.08em; font-weight: 900; }
.brand-word span { color: var(--yellow); }
.site-header.scrolled .brand-word span,
body:not(.home-page) .site-header .brand-word span,
.brand-footer .brand-word span { color: var(--orange); }
.brand small { margin-top: 5px; font-size: .54rem; font-weight: 700; letter-spacing: .06em; opacity: .72; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav > a:not(.button) { position: relative; font-size: .83rem; font-weight: 700; opacity: .91; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: currentColor; transition: right .25s ease; }
.primary-nav > a:not(.button):hover::after { right: 0; }
.site-header:not(.scrolled) .button-header { color: var(--red-dark); background: var(--white); }
.site-header.scrolled .button-header,
body:not(.home-page) .button-header { color: var(--white); background: var(--red); }
.menu-toggle { width: 46px; height: 46px; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; color: inherit; background: transparent; border-radius: 10px; }
.menu-toggle span { width: 24px; height: 2px; background: currentColor; border-radius: 9px; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    min-height: 850px;
    position: relative;
    overflow: hidden;
    padding: 150px 0 120px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 230, 0, .2), transparent 18%),
        radial-gradient(circle at 20% 70%, rgba(255, 107, 0, .35), transparent 26%),
        linear-gradient(128deg, #8e1300 0%, #D72600 52%, #b82000 78%, #FF6B00 140%);
}
.hero-noise { position: absolute; inset: 0; opacity: .13; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-shape { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); }
.hero-shape-one { width: 700px; height: 700px; right: -200px; top: 40px; box-shadow: inset 0 0 0 70px rgba(255, 255, 255, .025), inset 0 0 0 150px rgba(255, 255, 255, .025); }
.hero-shape-two { width: 340px; height: 340px; left: -160px; bottom: 50px; background: rgba(255, 107, 0, .08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 80px; }
.hero-copy h1 { max-width: 700px; margin-bottom: 28px; font-size: clamp(3.4rem, 7vw, 6.7rem); line-height: .9; letter-spacing: -.065em; font-weight: 900; }
.hero-copy h1 span { color: var(--yellow); }
.hero-copy > p { max-width: 630px; margin-bottom: 34px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.65; color: rgba(255, 255, 255, .86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; align-items: center; gap: 11px; max-width: 540px; margin-top: 26px; color: rgba(255, 255, 255, .82); font-size: .9rem; }
.hero-trust svg { width: 22px; height: 22px; fill: none; stroke: var(--yellow); stroke-width: 1.8; }
.hero-visual { min-height: 610px; position: relative; display: flex; align-items: center; justify-content: center; }
.phone { position: relative; border: 10px solid #201310; border-radius: 42px; background: #201310; box-shadow: 0 30px 80px rgba(31, 7, 0, .43), inset 0 0 0 1px rgba(255,255,255,.2); }
.phone::before { content: ""; position: absolute; right: -14px; top: 110px; width: 4px; height: 82px; background: #271713; border-radius: 0 5px 5px 0; }
.phone-speaker { position: absolute; z-index: 6; left: 50%; top: 8px; width: 80px; height: 20px; transform: translateX(-50%); border-radius: 0 0 14px 14px; background: #201310; }
.phone-screen { position: relative; overflow: hidden; width: 100%; height: 100%; border-radius: 32px; background: var(--soft); color: var(--ink); }
.phone-hero { width: 304px; height: 600px; z-index: 4; transform: rotate(2deg); box-shadow: 0 40px 90px rgba(54, 9, 0, .48), 0 0 0 1px rgba(255,255,255,.15); }
.app-status, .mock-status { height: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; font-size: .58rem; font-weight: 800; color: var(--ink); background: var(--white); }
.app-topbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 18px 15px; background: var(--white); }
.app-topbar div { display: flex; flex-direction: column; }
.app-topbar small { color: var(--muted); font-size: .61rem; }
.app-topbar strong { font-size: .93rem; }
.app-avatar { width: 32px; height: 32px; display: grid; place-items: center; color: var(--white); font-size: .75rem; font-weight: 900; background: var(--red); border-radius: 50%; }
.app-saving-card { margin: 12px 16px 15px; padding: 17px; display: flex; align-items: flex-end; justify-content: space-between; color: var(--white); border-radius: 16px; background: linear-gradient(135deg, var(--red-dark), var(--red) 65%, var(--orange)); box-shadow: 0 16px 28px rgba(215,38,0,.24); }
.app-saving-card div:first-child { display: flex; flex-direction: column; }
.app-saving-card small { font-size: .58rem; opacity: .82; }
.app-saving-card strong { margin: 3px 0 1px; font-size: 1.6rem; letter-spacing: -.05em; }
.app-saving-card span { font-size: .48rem; opacity: .72; }
.mini-bars { height: 46px; display: flex; align-items: flex-end; gap: 4px; }
.mini-bars i { width: 4px; border-radius: 5px; background: rgba(255,255,255,.55); }
.mini-bars i:nth-child(1){height:18px}.mini-bars i:nth-child(2){height:30px}.mini-bars i:nth-child(3){height:25px}.mini-bars i:nth-child(4){height:42px}.mini-bars i:nth-child(5){height:35px}
.app-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 0 16px; }
.app-quick-grid div { min-width: 0; height: 68px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; font-size: .49rem; font-weight: 700; background: var(--white); border: 1px solid rgba(44,22,15,.06); border-radius: 12px; box-shadow: 0 7px 18px rgba(61,35,26,.06); }
.app-quick-grid svg { width: 20px; height: 20px; fill: none; stroke: var(--red); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.app-section-title { display: flex; justify-content: space-between; align-items: center; padding: 20px 18px 8px; }
.app-section-title strong { font-size: .76rem; }
.app-section-title small { font-size: .48rem; color: var(--muted); }
.app-product-row { margin: 0 16px 8px; padding: 10px; display: grid; grid-template-columns: 32px 1fr auto; gap: 9px; align-items: center; background: var(--white); border-radius: 11px; border: 1px solid rgba(44,22,15,.06); }
.app-product-row div { display: flex; flex-direction: column; }
.app-product-row strong { font-size: .63rem; }
.app-product-row small { font-size: .48rem; color: var(--muted); }
.app-product-row b { color: var(--green); font-size: .65rem; }
.product-dot, .product-mini { display: grid; place-items: center; border-radius: 9px; color: var(--white); font-weight: 900; }
.product-dot { width: 32px; height: 32px; font-size: .7rem; }
.rice { background: linear-gradient(135deg, #e7b72e, #b87a00); }
.coffee { background: linear-gradient(135deg, #7d4e2a, #3d1b0c); }
.milk { background: linear-gradient(135deg, #56a9e9, #006BD6); }
.soap { background: linear-gradient(135deg, #4fc981, #148d4e); }
.paper { background: linear-gradient(135deg, #f69072, #D72600); }
.app-nav { position: absolute; inset: auto 0 0; height: 58px; display: flex; justify-content: space-around; align-items: center; color: #8b7e79; font-size: .85rem; background: var(--white); box-shadow: 0 -8px 25px rgba(44,22,15,.08); }
.scan-main { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; transform: translateY(-9px); box-shadow: 0 8px 18px rgba(215,38,0,.35); }
.float-card { position: absolute; z-index: 7; min-width: 210px; padding: 13px 15px; display: flex; align-items: center; gap: 11px; color: var(--ink); background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.7); border-radius: 15px; box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.float-card div { display: flex; flex-direction: column; }
.float-card small { color: var(--muted); font-size: .56rem; text-transform: uppercase; letter-spacing: .08em; }
.float-card strong { font-size: .78rem; }
.float-card em { color: var(--green); font-size: .72rem; font-style: normal; font-weight: 800; }
.float-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; }
.float-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.float-icon.green { color: var(--green); background: rgba(19,163,91,.11); }
.float-icon.yellow { color: #966f00; background: rgba(255,230,0,.28); }
.float-icon.blue { color: var(--blue); background: rgba(0,107,214,.11); }
.float-card-saving { left: -5px; top: 78px; }
.float-card-price { right: -32px; top: 235px; }
.float-card-near { left: 6px; bottom: 80px; }
.floating-receipt { position: absolute; z-index: 3; right: 35px; bottom: 46px; padding: 12px 14px; display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: .66rem; font-weight: 800; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-md); transform: rotate(-6deg); }
.floating-receipt svg { width: 20px; height: 20px; fill: none; stroke: var(--orange); stroke-width: 1.8; }
.floating-receipt b { color: var(--green); }
.floating-pin { position: absolute; top: 58px; right: 95px; width: 46px; height: 56px; display: grid; place-items: center; color: var(--white); background: var(--blue); border: 7px solid rgba(255,255,255,.2); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 16px 30px rgba(0,52,105,.28); }
.floating-pin::first-letter { transform: rotate(45deg); }
.floating-coin { position: absolute; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; color: #5b4300; font-size: .65rem; font-weight: 900; border: 5px solid rgba(255,255,255,.25); border-radius: 50%; background: var(--yellow); box-shadow: 0 15px 30px rgba(80,40,0,.22); }
.coin-one { left: 70px; top: 250px; }
.coin-two { right: 65px; top: 115px; }
.hero-bottom-wave { position: absolute; left: -5%; right: -5%; bottom: -80px; height: 150px; background: var(--white); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }

/* Purpose */
.purpose { padding-top: 80px; }
.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar-card { position: relative; overflow: hidden; min-height: 280px; padding: 31px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.pillar-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(215,38,0,.2); }
.pillar-card h3 { margin: 22px 0 12px; font-size: 1.4rem; line-height: 1.2; }
.pillar-card p { color: var(--muted); margin-bottom: 0; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; }
.icon-box svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-box.red { color: var(--red); background: rgba(215,38,0,.1); }
.icon-box.blue { color: var(--blue); background: rgba(0,107,214,.1); }
.icon-box.green { color: var(--green); background: rgba(19,163,91,.1); }
.card-line { position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.pillar-card:hover .card-line { transform: scaleX(1); }
.mission-strip { margin-top: 30px; padding: 26px 30px; display: grid; grid-template-columns: 310px 1fr; align-items: center; gap: 35px; background: linear-gradient(100deg, #fff5f2, #fff, #f6fff9); border: 1px solid var(--border); border-radius: var(--radius); }
.mission-strip p { margin: 0; font-size: 1.05rem; color: var(--muted); }
.mission-strip strong { color: var(--ink); }
.mission-graphic { display: flex; align-items: center; justify-content: center; gap: 13px; }
.mission-bag, .mission-phone, .mission-result { min-width: 62px; height: 54px; display: grid; place-items: center; border-radius: 14px; font-size: 1.15rem; font-weight: 900; }
.mission-bag { color: var(--orange); background: rgba(255,107,0,.1); }
.mission-phone { color: var(--red); background: rgba(215,38,0,.1); }
.mission-result { color: var(--green); background: rgba(19,163,91,.1); }
.mission-line { width: 36px; height: 2px; background: repeating-linear-gradient(90deg, rgba(44,22,15,.26) 0 5px, transparent 5px 9px); }

/* How */
.steps-layout { display: grid; grid-template-columns: 380px 1fr; gap: 36px; align-items: stretch; }
.steps-nav { display: flex; flex-direction: column; gap: 12px; }
.step-tab { width: 100%; padding: 18px; display: flex; align-items: center; gap: 15px; text-align: left; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: 14px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.step-tab > span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; color: var(--red); font-weight: 900; background: rgba(215,38,0,.08); border-radius: 12px; }
.step-tab div { display: flex; flex-direction: column; }
.step-tab strong { font-size: .96rem; }
.step-tab small { color: var(--muted); }
.step-tab:hover { transform: translateX(4px); border-color: rgba(215,38,0,.22); }
.step-tab.active { color: var(--white); background: linear-gradient(135deg, var(--red-dark), var(--red)); border-color: transparent; box-shadow: 0 16px 36px rgba(215,38,0,.22); }
.step-tab.active > span { color: var(--red-dark); background: var(--yellow); }
.step-tab.active small { color: rgba(255,255,255,.72); }
.steps-stage { min-height: 480px; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.step-panel { min-height: 480px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 35px; padding: 45px; animation: panelIn .45s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step-copy h3 { margin: 10px 0 16px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.08; letter-spacing: -.035em; }
.step-copy p { color: var(--muted); }
.step-number { color: var(--red); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.check-list { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.check-list svg { width: 20px; height: 20px; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.step-demo { min-height: 320px; position: relative; display: grid; place-items: center; border-radius: 22px; background: linear-gradient(140deg, #fff5f2, #fff, #f3f8fc); border: 1px solid rgba(44,22,15,.07); }
.demo-phone-card { width: min(340px, 90%); padding: 20px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-md); }
.demo-heading { display: flex; justify-content: space-between; margin-bottom: 15px; }
.demo-heading span { color: var(--red); font-size: .76rem; font-weight: 800; }
.voice-input { height: 48px; display: flex; align-items: center; gap: 9px; padding: 0 13px; color: var(--muted); font-size: .78rem; border: 1px solid var(--border); border-radius: 12px; background: var(--soft); }
.voice-input svg { width: 20px; height: 20px; fill: none; stroke: var(--red); stroke-width: 1.8; }
.voice-input i { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(215,38,0,.1); animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(215,38,0,0); } }
.typed-products { display: grid; gap: 8px; margin-top: 14px; }
.typed-products span { min-height: 40px; display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 10px; padding: 0 10px; font-size: .76rem; border-radius: 10px; background: var(--soft); }
.typed-products b { width: 22px; height: 22px; display: grid; place-items: center; color: var(--red); border-radius: 7px; background: rgba(215,38,0,.08); }
.typed-products em { color: var(--green); font-style: normal; font-weight: 900; }
.scan-demo { overflow: hidden; background: #1e1715; }
.scan-frame { position: relative; width: 220px; height: 220px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.8); border-radius: 20px; box-shadow: 0 0 0 1000px rgba(0,0,0,.18); }
.scan-frame::before, .scan-frame::after { content: ""; position: absolute; width: 42px; height: 42px; border-color: var(--yellow); }
.scan-frame::before { left: -4px; top: -4px; border-left: 5px solid var(--yellow); border-top: 5px solid var(--yellow); border-radius: 12px 0 0; }
.scan-frame::after { right: -4px; bottom: -4px; border-right: 5px solid var(--yellow); border-bottom: 5px solid var(--yellow); border-radius: 0 0 12px; }
.fake-qr { width: 120px; height: 120px; background-color: #fff; background-image: linear-gradient(90deg,#111 25%,transparent 25% 50%,#111 50% 75%,transparent 75%), linear-gradient(#111 25%,transparent 25% 50%,#111 50% 75%,transparent 75%); background-size: 19px 19px; border: 10px solid #fff; box-shadow: 0 8px 25px rgba(0,0,0,.2); }
.scan-line { position: absolute; z-index: 3; left: 12px; right: 12px; height: 3px; background: var(--red); box-shadow: 0 0 14px var(--red); animation: scan 2.4s ease-in-out infinite; }
@keyframes scan { 0%,100% { top: 18px; } 50% { top: calc(100% - 20px); } }
.receipt-card { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); width: 86%; padding: 12px; display: flex; align-items: center; gap: 10px; color: var(--ink); background: rgba(255,255,255,.95); border-radius: 12px; box-shadow: var(--shadow-md); }
.receipt-card svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 1.8; }
.receipt-card div { display: flex; flex-direction: column; flex: 1; }
.receipt-card strong { font-size: .72rem; }
.receipt-card span { color: var(--muted); font-size: .58rem; }
.receipt-card b { color: var(--green); }
.compare-demo { grid-template-columns: 1fr; align-content: center; gap: 9px; padding: 30px; }
.mini-market-card { width: 85%; padding: 15px; display: grid; grid-template-columns: 1fr auto; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 13px; box-shadow: 0 8px 20px rgba(44,22,15,.05); }
.mini-market-card b { color: var(--ink); }
.mini-market-card small { grid-column: 1/-1; color: var(--muted); }
.mini-market-card.best { border-color: rgba(19,163,91,.35); box-shadow: 0 10px 28px rgba(19,163,91,.12); }
.mini-market-card.best b { color: var(--green); }
.demo-disclaimer { color: var(--muted); font-size: .65rem; }
.total-demo { align-content: center; gap: 7px; text-align: center; }
.total-demo > span { color: var(--muted); }
.old-total { color: #9b8f8b; font-size: 1.8rem; font-weight: 800; text-decoration: line-through; }
.total-demo svg { width: 28px; height: 28px; margin: 0 auto; fill: none; stroke: var(--red); stroke-width: 2; transform: rotate(90deg); }
.new-total { color: var(--green); font-size: 3rem; line-height: 1; font-weight: 900; letter-spacing: -.05em; animation: totalBounce 2.6s ease-in-out infinite; }
@keyframes totalBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.total-demo strong { color: var(--green); }

/* Comparison */
.comparison-app { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 28px 70px rgba(73,32,20,.13); }
.comparison-toolbar { padding: 26px 28px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-bottom: 1px solid var(--border); background: linear-gradient(90deg,#fff,#fff8f6); }
.comparison-toolbar h3 { margin: 7px 0 0; font-size: 1.35rem; }
.demo-badge { display: inline-flex; padding: 5px 9px; color: #705400; font-size: .66rem; font-weight: 800; background: rgba(255,230,0,.32); border-radius: 999px; }
.mode-switch { padding: 4px; display: flex; gap: 4px; background: #f3efed; border-radius: 12px; }
.mode-switch button { min-height: 42px; padding: 0 15px; color: var(--muted); font-size: .77rem; font-weight: 800; background: transparent; border-radius: 9px; }
.mode-switch button.active { color: var(--white); background: var(--red); box-shadow: 0 7px 18px rgba(215,38,0,.2); }
.comparison-content { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 520px; }
.shopping-list-panel { padding: 28px; border-right: 1px solid var(--border); background: var(--soft); }
.panel-label { display: flex; justify-content: space-between; margin-bottom: 15px; }
.panel-label span { font-weight: 900; }
.panel-label b { color: var(--red); font-size: .78rem; }
.shopping-list-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.shopping-list-panel li { min-height: 68px; padding: 10px 12px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; background: var(--white); border: 1px solid rgba(44,22,15,.07); border-radius: 12px; transition: transform .2s ease, box-shadow .2s ease; }
.shopping-list-panel li:hover { transform: translateX(3px); box-shadow: 0 9px 22px rgba(44,22,15,.07); }
.product-mini { width: 42px; height: 42px; }
.shopping-list-panel li div { display: flex; flex-direction: column; }
.shopping-list-panel li strong { font-size: .89rem; }
.shopping-list-panel li small { color: var(--muted); font-size: .7rem; }
.shopping-list-panel em { color: var(--ink); font-style: normal; font-weight: 900; }
.result-panel { padding: 35px; display: flex; flex-direction: column; }
.result-summary { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 25px; border-bottom: 1px solid var(--border); }
.result-summary > div:first-child { display: flex; flex-direction: column; }
.result-summary span { color: var(--muted); }
.result-summary strong { margin: 4px 0; color: var(--green); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.05em; }
.result-summary small { color: var(--muted); }
.saving-pill { padding: 8px 12px; color: #08763e; font-size: .76rem; font-weight: 900; background: rgba(19,163,91,.1); border: 1px solid rgba(19,163,91,.18); border-radius: 999px; }
.market-breakdown { flex: 1; display: grid; align-content: start; gap: 10px; padding: 25px 0; }
.market-line { min-height: 72px; padding: 12px 14px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 13px; background: var(--white); }
.market-line.active { border-color: rgba(19,163,91,.25); background: rgba(19,163,91,.035); }
.market-letter { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); font-weight: 900; background: var(--red); border-radius: 12px; }
.market-line div { display: flex; flex-direction: column; }
.market-line small { color: var(--muted); }
.market-line b { color: var(--green); }
.result-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.legal-note { margin: 18px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }

/* Location */
.location { overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(215,38,0,.28), transparent 30%), linear-gradient(135deg,#21100a,#3a150d 55%,#24100b); }
.location::after { content: ""; position: absolute; inset: auto -10% -250px 40%; height: 500px; border-radius: 50%; background: rgba(255,107,0,.12); filter: blur(80px); }
.location-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 75px; }
.location-copy > p { color: rgba(255,255,255,.72); }
.radius-control { margin-top: 35px; padding: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 15px; backdrop-filter: blur(12px); }
.radius-control > div:first-child { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.radius-control label { font-weight: 700; }
.radius-control strong { color: var(--yellow); font-size: 1.15rem; }
.radius-control input { width: 100%; accent-color: var(--yellow); }
.range-labels { display: flex; justify-content: space-between; margin-top: 6px; color: rgba(255,255,255,.5); font-size: .68rem; }
.coverage-result { margin-top: 14px; padding: 15px; display: flex; align-items: center; gap: 13px; color: var(--ink); background: var(--white); border-radius: 13px; }
.coverage-result svg { width: 27px; height: 27px; fill: none; stroke: var(--red); stroke-width: 1.7; }
.coverage-result div { display: flex; flex-direction: column; }
.coverage-result strong { color: var(--red); }
.coverage-result span { color: var(--muted); font-size: .74rem; }
.map-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.map-mini-button { padding: 0 14px; min-height: 50px; color: var(--white); font-weight: 800; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; }
.map-demo { min-height: 590px; position: relative; overflow: hidden; border-radius: 28px; background: #e6ecec; box-shadow: 0 30px 90px rgba(0,0,0,.38); border: 10px solid rgba(255,255,255,.1); }
.map-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(74,112,117,.08) 1px, transparent 1px), linear-gradient(90deg,rgba(74,112,117,.08) 1px, transparent 1px); background-size: 52px 52px; }
.map-road { position: absolute; height: 30px; background: #fff; box-shadow: 0 0 0 1px rgba(67,98,102,.08); }
.map-road::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 2px dashed rgba(89,114,117,.18); }
.road-one { width: 120%; left: -10%; top: 42%; transform: rotate(-14deg); }
.road-two { width: 95%; left: 12%; top: 62%; transform: rotate(27deg); }
.road-three { width: 90%; left: 4%; top: 24%; transform: rotate(38deg); }
.radius-circle { position: absolute; left: 50%; top: 50%; width: 300px; height: 300px; transform: translate(-50%,-50%); border: 2px solid rgba(215,38,0,.6); border-radius: 50%; background: rgba(215,38,0,.1); box-shadow: 0 0 0 1px rgba(255,255,255,.65) inset; transition: width .35s ease, height .35s ease; }
.current-location { position: absolute; z-index: 6; left: 50%; top: 50%; width: 24px; height: 24px; transform: translate(-50%,-50%); display: grid; place-items: center; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 8px rgba(0,107,214,.18), 0 6px 18px rgba(0,47,93,.25); }
.current-location span { width: 8px; height: 8px; border-radius: 50%; background: var(--white); }
.map-marker { position: absolute; z-index: 5; width: 54px; color: var(--white); background: transparent; transition: opacity .3s ease, filter .3s ease, transform .3s ease; }
.map-marker span { width: 40px; height: 46px; margin: 0 auto; display: grid; place-items: center; font-weight: 900; background: var(--red); border: 4px solid var(--white); border-radius: 50% 50% 50% 5px; transform: rotate(-45deg); box-shadow: 0 8px 18px rgba(70,24,14,.25); }
.map-marker span::first-letter { display: inline-block; transform: rotate(45deg); }
.map-marker small { display: block; margin-top: 4px; padding: 3px 5px; color: var(--ink); font-size: .58rem; font-weight: 900; white-space: nowrap; background: var(--white); border-radius: 5px; box-shadow: 0 5px 12px rgba(44,22,15,.12); }
.map-marker.inside span { background: var(--green); }
.map-marker.outside { opacity: .5; filter: grayscale(1); }
.marker-a { left: 30%; top: 36%; }
.marker-b { right: 29%; top: 29%; }
.marker-c { right: 20%; bottom: 25%; }
.marker-d { left: 14%; bottom: 18%; }
.marker-e { right: 8%; top: 12%; }
.map-legend { position: absolute; z-index: 8; left: 16px; top: 16px; padding: 10px 12px; display: flex; gap: 13px; color: var(--ink); font-size: .65rem; font-weight: 700; background: rgba(255,255,255,.92); border-radius: 10px; box-shadow: var(--shadow-sm); }
.map-legend span { display: flex; align-items: center; gap: 5px; }
.map-legend i { width: 8px; height: 8px; border-radius: 50%; }
.map-legend .in { background: var(--green); }
.map-legend .out { background: #8d9495; }
.map-caption { position: absolute; z-index: 8; left: 16px; right: 16px; bottom: 16px; padding: 11px 13px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .68rem; background: rgba(255,255,255,.94); border-radius: 11px; }
.map-caption svg { width: 18px; height: 18px; fill: none; stroke: var(--blue); stroke-width: 1.8; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { --delay: 0ms; position: relative; overflow: hidden; min-height: 240px; padding: 25px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 9px 26px rgba(44,22,15,.05); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; transition-delay: var(--delay); }
.feature-card::before { content: ""; position: absolute; width: 100px; height: 100px; right: -40px; top: -40px; border-radius: 50%; background: rgba(215,38,0,.045); transition: transform .35s ease, background .35s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(215,38,0,.2); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scale(1.55); background: rgba(215,38,0,.08); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--red); background: rgba(215,38,0,.08); border-radius: 13px; }
.feature-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 22px 0 10px; font-size: 1.06rem; line-height: 1.25; }
.feature-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.feature-arrow { position: absolute; right: 19px; bottom: 15px; color: var(--red); opacity: 0; transform: translate(-5px,5px); transition: opacity .25s ease, transform .25s ease; }
.feature-card:hover .feature-arrow { opacity: 1; transform: none; }

/* Trust */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 85px; }
.trust-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.trust-orbit { position: absolute; border: 1px dashed rgba(215,38,0,.22); border-radius: 50%; animation: orbitSpin 30s linear infinite; }
.orbit-one { width: 340px; height: 340px; }
.orbit-two { width: 480px; height: 480px; animation-direction: reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.trust-center { position: relative; z-index: 3; width: 210px; height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--white); border: 1px solid rgba(215,38,0,.12); border-radius: 50%; box-shadow: 0 25px 65px rgba(104,34,15,.15); }
.trust-center svg { width: 46px; height: 46px; margin-bottom: 10px; fill: none; stroke: var(--red); stroke-width: 1.5; }
.trust-center strong { max-width: 150px; line-height: 1.2; }
.trust-center span { color: var(--muted); font-size: .72rem; }
.trust-node { position: absolute; z-index: 4; min-width: 150px; padding: 12px 14px; display: flex; align-items: center; gap: 9px; font-size: .77rem; font-weight: 800; background: var(--white); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-sm); }
.trust-node svg { width: 22px; height: 22px; fill: none; stroke: var(--red); stroke-width: 1.8; }
.node-one { left: 5px; top: 76px; }
.node-two { right: 5px; top: 110px; }
.node-three { left: 15px; bottom: 75px; }
.node-four { right: 0; bottom: 90px; }
.trust-list { margin: 30px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.trust-list span { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .9rem; }
.trust-list svg { width: 20px; height: 20px; flex: 0 0 20px; fill: none; stroke: var(--green); stroke-width: 2.2; }
.trust-callout { padding: 18px; display: flex; flex-direction: column; border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; background: var(--white); box-shadow: var(--shadow-sm); }
.trust-callout strong { color: var(--red); }
.trust-callout span { color: var(--muted); font-size: .86rem; }

/* History */
.history-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 75px; }
.history-copy blockquote { margin: 30px 0 0; padding: 18px 0 18px 22px; color: var(--ink); font-size: 1.05rem; font-weight: 700; border-left: 4px solid var(--red); }
.history-dashboard { overflow: hidden; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-md); }
.history-top { display: flex; justify-content: space-between; align-items: flex-start; }
.history-top > div:first-child { display: flex; flex-direction: column; }
.history-top small { color: var(--muted); font-size: .7rem; }
.history-top strong { font-size: 1.35rem; }
.history-top span { color: var(--muted); font-size: .7rem; }
.trend-down { padding: 7px 10px; color: var(--green); font-weight: 900; background: rgba(19,163,91,.1); border-radius: 999px; }
.chart-area { position: relative; height: 245px; margin-top: 22px; }
.chart-grid { position: absolute; inset: 0 0 35px; display: flex; flex-direction: column; justify-content: space-between; }
.chart-grid i { display: block; border-top: 1px dashed rgba(44,22,15,.1); }
.chart-area > svg { position: absolute; left: 0; right: 0; bottom: 35px; width: 100%; height: 190px; overflow: visible; }
.chart-line { fill: none; stroke: var(--red); stroke-width: 4; stroke-linecap: round; }
.chart-area circle { fill: var(--white); stroke: var(--red); stroke-width: 4; }
.chart-tooltip { position: absolute; right: -8px; top: 78px; padding: 8px 10px; display: flex; flex-direction: column; background: var(--ink); color: var(--white); border-radius: 9px; box-shadow: var(--shadow-sm); }
.chart-tooltip::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 12px; height: 12px; transform: translateX(-50%) rotate(45deg); background: var(--ink); }
.chart-tooltip span { color: rgba(255,255,255,.66); font-size: .55rem; }
.chart-tooltip strong { font-size: .8rem; }
.chart-months { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; color: var(--muted); font-size: .65rem; }
.history-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.history-metrics div { padding: 13px; display: flex; flex-direction: column; background: var(--soft); border-radius: 11px; }
.history-metrics small { color: var(--muted); font-size: .61rem; }
.history-metrics strong { font-size: .86rem; }
.history-metrics .positive { color: var(--green); background: rgba(19,163,91,.08); }
.history-metrics .positive small { color: #2b7b51; }

/* Impact */
.impact { overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--red-dark), var(--red) 60%, #f04b00); }
.impact::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at 20px 20px, #fff 1px, transparent 1px); background-size: 34px 34px; }
.impact-glow { position: absolute; width: 600px; height: 600px; right: -180px; top: -240px; border-radius: 50%; background: rgba(255,230,0,.14); filter: blur(20px); }
.impact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 85px; align-items: start; }
.impact-copy > p { color: rgba(255,255,255,.78); }
.impact-list { display: grid; gap: 10px; }
.impact-list span { min-height: 60px; padding: 12px 15px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 13px; backdrop-filter: blur(10px); }
.impact-list b { width: 35px; height: 35px; display: grid; place-items: center; color: var(--red-dark); font-size: .72rem; background: var(--yellow); border-radius: 10px; }
.impact-stats { grid-column: 1/-1; margin-top: 15px; padding-top: 30px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.2); }
.impact-stats div { display: flex; flex-direction: column; align-items: center; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.impact-stats div:last-child { border-right: 0; }
.impact-stats strong { color: var(--yellow); font-size: 4rem; line-height: 1; letter-spacing: -.06em; }
.impact-stats span { margin-top: 7px; color: rgba(255,255,255,.75); }

/* Partners */
.partners-card { position: relative; overflow: hidden; padding: 56px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; color: var(--ink); background: linear-gradient(135deg,#fff,#fff6f3); border: 1px solid rgba(215,38,0,.12); border-radius: 28px; box-shadow: var(--shadow-md); }
.partners-card::before { content: ""; position: absolute; width: 360px; height: 360px; right: -160px; top: -180px; border-radius: 50%; background: rgba(215,38,0,.06); }
.partners-copy { position: relative; z-index: 2; }
.partners-types { position: relative; z-index: 2; align-content: center; display: flex; flex-wrap: wrap; gap: 9px; }
.partners-types span { padding: 10px 13px; color: var(--ink); font-size: .82rem; font-weight: 800; background: var(--white); border: 1px solid var(--border); border-radius: 999px; box-shadow: 0 6px 16px rgba(44,22,15,.05); }
.future-logos { grid-column: 1/-1; padding-top: 24px; display: grid; grid-template-columns: 1fr repeat(4, 120px); gap: 13px; align-items: center; border-top: 1px solid var(--border); }
.future-logos small { color: var(--muted); }
.future-logos i { height: 42px; border-radius: 8px; background: linear-gradient(90deg,#eee7e4,#f8f4f2,#eee7e4); background-size: 200% 100%; animation: shimmer 2s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Screens */
.screens { overflow: hidden; }
.screens-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 42px; }
.screens-heading > div:first-child { max-width: 700px; }
.carousel-controls { display: flex; gap: 9px; }
.carousel-controls button { width: 50px; height: 50px; display: grid; place-items: center; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform .2s ease, background .2s ease, color .2s ease; }
.carousel-controls button:hover { transform: translateY(-2px); color: var(--white); background: var(--red); }
.screens-track-wrap { width: min(100%, 1500px); margin-inline: auto; }
.screens-track { display: flex; gap: 25px; overflow-x: auto; padding: 20px max(20px, calc((100vw - var(--container))/2)) 34px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.screens-track::-webkit-scrollbar { display: none; }
.screen-slide { flex: 0 0 260px; scroll-snap-align: center; text-align: center; }
.screen-slide h3 { margin: 16px 0 4px; }
.screen-slide p { margin: 0; color: var(--muted); font-size: .82rem; }
.phone-small { width: 236px; height: 480px; margin-inline: auto; border-width: 8px; border-radius: 34px; box-shadow: 0 20px 50px rgba(44,22,15,.2); transition: transform .3s ease, box-shadow .3s ease; }
.screen-slide:hover .phone-small { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 30px 65px rgba(44,22,15,.28); }
.phone-small .phone-screen { border-radius: 26px; }
.phone-small .phone-speaker { top: 6px; width: 65px; height: 17px; }
.mock-status { height: 25px; padding: 0 13px; font-size: .48rem; }
.mock-header { height: 48px; padding: 0 12px; display: grid; grid-template-columns: 24px 1fr 24px; align-items: center; color: var(--white); background: var(--red); }
.mock-header button, .mock-header span { color: inherit; background: transparent; font-weight: 900; }
.mock-header strong { font-size: .75rem; }
.mock-screen { font-size: .68rem; }
.mock-screen h4 { margin: 17px 14px 10px; text-align: left; }
.mock-saving { margin: 14px; padding: 15px; display: flex; flex-direction: column; align-items: flex-start; color: var(--white); background: linear-gradient(135deg,var(--red-dark),var(--red),var(--orange)); border-radius: 13px; }
.mock-saving small { opacity: .8; }
.mock-saving strong { font-size: 1.45rem; }
.mock-saving em { opacity: .65; font-style: normal; font-size: .5rem; }
.mock-grid { margin: 0 14px; display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; }
.mock-grid i { min-height: 50px; display: grid; place-items: center; font-style: normal; font-weight: 800; background: var(--white); border-radius: 9px; box-shadow: 0 4px 12px rgba(44,22,15,.06); }
.mock-rows { display: grid; gap: 7px; margin: 14px; }
.mock-rows span { height: 38px; background: var(--white); border-radius: 9px; }
.mock-camera { position: relative; margin: 18px 14px 12px; height: 255px; display: grid; place-items: center; overflow: hidden; background: #211915; border-radius: 13px; }
.mock-camera::after { content: ""; position: absolute; left: 18px; right: 18px; top: 20%; height: 2px; background: var(--red); box-shadow: 0 0 12px var(--red); animation: scan 2.3s infinite; }
.mock-camera .fake-qr { width: 100px; height: 100px; background-size: 16px 16px; }
.mock-screen > p { margin: 8px 14px; color: var(--muted); text-align: center; }
.mock-primary { min-height: 39px; margin: 10px 14px; padding: 0 14px; color: var(--white); font-weight: 900; background: var(--red); border-radius: 9px; }
.mock-summary { margin: 14px; padding: 12px; display: flex; flex-direction: column; align-items: flex-start; background: rgba(255,107,0,.1); border-radius: 10px; }
.mock-summary small { color: var(--muted); }
.mock-product-list { margin: 10px 14px; display: grid; gap: 7px; }
.mock-product-list span { min-height: 40px; padding: 0 10px; display: flex; align-items: center; justify-content: space-between; background: var(--white); border-radius: 9px; }
.mock-product-list b { color: var(--green); font-size: .61rem; }
.mock-search { margin: 14px; min-height: 40px; padding: 0 12px; display: flex; align-items: center; color: var(--muted); background: var(--white); border: 1px solid var(--border); border-radius: 9px; }
.mock-check-list { margin: 10px 14px; display: grid; gap: 8px; text-align: left; }
.mock-check-list span { padding: 9px 10px; background: var(--white); border-radius: 9px; }
.mock-progress { display: flex; gap: 5px; margin: 14px; }
.mock-progress i { flex: 1; height: 4px; background: rgba(215,38,0,.15); border-radius: 9px; }
.mock-progress i:first-child, .mock-progress i:nth-child(2) { background: var(--red); }
.mock-mode { margin: 14px; padding: 8px; color: var(--red); font-weight: 900; background: rgba(215,38,0,.08); border-radius: 9px; }
.mock-mode.green { color: var(--green); background: rgba(19,163,91,.09); }
.mock-market-card { margin: 8px 14px; padding: 12px; display: flex; flex-direction: column; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.mock-market-card.best { border-color: rgba(19,163,91,.32); }
.mock-market-card strong { color: var(--green); font-size: 1.25rem; }
.mock-market-card small { color: var(--muted); }
.mock-economy { margin: 14px; padding: 11px; display: flex; flex-direction: column; color: #08763e; background: rgba(19,163,91,.1); border-radius: 10px; }
/*.mock-map { position: relative; overflow: hidden; height: 260px; margin: 14px; background: linear-gradient(35deg,#e5ecec 25%,#f8fbfb 25% 50%,#e5ecec 50% 75%,#f8fbfb 75%); background-size: 54px 54px; border-radius: 13px; }*/

.mock-map {
    /* position: relative; */
    overflow: hidden;
    /* height: 260px; */
    /* margin: 14px; */
    background: linear-gradient(35deg, #e5ecec 25%, #f8fbfb 25% 50%, #e5ecec 50% 75%, #f8fbfb 75%);
    background-size: 54px 54px;
    border-radius: 13px;
}
.mock-map .circle { position: absolute; width: 165px; height: 165px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 2px solid rgba(215,38,0,.45); border-radius: 50%; background: rgba(215,38,0,.08); }
.mock-map .pin { position: absolute; width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); font-style: normal; font-weight: 900; border-radius: 50%; background: var(--green); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.mock-map .p1 { left: 28%; top: 30%; }.mock-map .p2 { right: 25%; top: 40%; }.mock-map .p3 { left: 48%; bottom: 22%; }
.mock-slider { margin: 10px 20px; height: 5px; border-radius: 9px; background: #ddd; }
.mock-slider i { width: 48%; height: 100%; display: block; background: var(--red); border-radius: inherit; }
.mock-caption { color: var(--muted); }
.mock-price { margin: 16px 14px 7px; display: flex; flex-direction: column; align-items: flex-start; }
.mock-price strong { color: var(--green); font-size: 1.65rem; }
.mock-price em { padding: 3px 7px; color: #08763e; font-style: normal; font-weight: 800; background: rgba(19,163,91,.1); border-radius: 999px; }
.mock-chart { width: calc(100% - 28px); height: 100px; margin: 10px 14px; overflow: visible; }
.mock-chart path { fill: none; stroke: var(--red); stroke-width: 3; }
.mock-metrics { margin: 10px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mock-metrics span { padding: 9px; display: flex; flex-direction: column; background: var(--white); border-radius: 8px; }
.mock-alert { margin: 12px 14px; padding: 11px; display: flex; gap: 10px; text-align: left; background: var(--white); border-radius: 10px; box-shadow: 0 5px 15px rgba(44,22,15,.06); }
.mock-alert i { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; color: var(--green); font-style: normal; font-weight: 900; background: rgba(19,163,91,.1); border-radius: 9px; }
.mock-alert div { display: flex; flex-direction: column; }
.mock-alert small { color: var(--muted); font-size: .55rem; }
.mock-profile-avatar { width: 76px; height: 76px; margin: 25px auto 8px; display: grid; place-items: center; color: var(--white); font-size: 1.8rem; font-weight: 900; background: var(--red); border-radius: 50%; }
.mock-screen > h4 { text-align: center; }
.mock-settings { margin: 18px 14px; display: grid; gap: 7px; }
.mock-settings span { min-height: 41px; padding: 0 10px; display: flex; align-items: center; justify-content: space-between; background: var(--white); border-radius: 9px; }

/* CTA */
.cta { overflow: hidden; color: var(--white); background: linear-gradient(120deg,#9f1800,#D72600 60%,#f76500); }
.cta::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 35%, rgba(255,255,255,.2) 35% 36%, transparent 36% 65%, rgba(255,255,255,.12) 65% 66%, transparent 66%); background-size: 70px 70px; }
.cta-shape { position: absolute; width: 720px; height: 720px; right: -240px; top: -320px; border: 90px solid rgba(255,255,255,.06); border-radius: 50%; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 55px; }
.cta-copy p { color: rgba(255,255,255,.82); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.cta-phone-wrap { position: relative; min-height: 530px; display: flex; align-items: flex-end; justify-content: center; }
.phone-cta { width: 270px; height: 535px; transform: translateY(80px) rotate(2deg); box-shadow: var(--shadow-red); }
.app-map-preview { position: relative; overflow: hidden; height: 210px; margin: 14px 15px; background: linear-gradient(35deg,#e4ecec 25%,#fafcfc 25% 50%,#e4ecec 50% 75%,#fafcfc 75%); background-size: 55px 55px; border-radius: 15px; }
.map-circle-mini { position: absolute; width: 145px; height: 145px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 2px solid rgba(215,38,0,.55); border-radius: 50%; background: rgba(215,38,0,.1); }
.mini-pin { position: absolute; width: 30px; height: 30px; display: grid; place-items: center; color: var(--white); font-size: .65rem; font-style: normal; font-weight: 900; background: var(--green); border-radius: 50%; box-shadow: 0 5px 12px rgba(0,0,0,.18); }
.mp1 { left: 30%; top: 26%; }.mp2 { right: 24%; top: 45%; }.mp3 { left: 48%; bottom: 18%; }
.app-saving-card.compact { margin-top: 8px; }
.cta-price-tag { position: absolute; z-index: 5; left: 5px; top: 100px; padding: 13px 16px; display: flex; flex-direction: column; color: var(--ink); background: var(--yellow); border-radius: 12px 12px 12px 2px; box-shadow: var(--shadow-md); transform: rotate(-7deg); }
.cta-price-tag span { font-size: .58rem; }
.cta-price-tag strong { font-size: 1.3rem; }
.notify-card { grid-column: 1/-1; margin-top: 30px; padding: 24px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 30px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.7); border-radius: 18px; box-shadow: 0 20px 50px rgba(63,10,0,.25); backdrop-filter: blur(12px); }
.notify-card > div { display: flex; flex-direction: column; }
.notify-card > div strong { font-size: 1.15rem; }
.notify-card > div span { color: var(--muted); font-size: .86rem; }
.notify-form { display: grid; grid-template-columns: .75fr 1fr auto; gap: 9px; }
.notify-form input[type="text"], .notify-form input[type="email"] { min-height: 50px; width: 100%; padding: 0 13px; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.notify-form input:focus { border-color: var(--blue); outline: 3px solid rgba(0,107,214,.12); }
.consent { grid-column: 1/-1; display: flex; align-items: flex-start; gap: 8px; color: var(--muted); font-size: .68rem; }
.consent input { margin-top: 3px; accent-color: var(--red); }
.consent a { color: var(--red); text-decoration: underline; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 900; }
.text-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 13px; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item.open { border-color: rgba(215,38,0,.22); box-shadow: var(--shadow-sm); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 68px; padding: 15px 18px; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; color: var(--ink); font-weight: 900; background: transparent; }
.faq-item i { position: relative; width: 22px; height: 22px; flex: 0 0 22px; }
.faq-item i::before, .faq-item i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: var(--red); transform: translate(-50%,-50%); transition: transform .25s ease; }
.faq-item i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { padding: 0 18px 18px; }
.faq-answer p { margin: 0; color: var(--muted); }

/* Footer */
.site-footer { padding: 70px 0 22px; color: rgba(255,255,255,.78); background: #1b0d09; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; }
.footer-brand p { max-width: 360px; margin: 22px 0 12px; }
.footer-brand strong { color: var(--white); }
.brand-footer { color: var(--white); }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a, .footer-muted { display: block; width: fit-content; margin: 9px 0; font-size: .88rem; transition: color .2s ease; }
.site-footer a:hover { color: var(--yellow); }
.footer-muted { opacity: .42; }
.footer-bottom { margin-top: 50px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .72rem; }

/* Content pages */
.content-hero { padding: 150px 0 70px; color: var(--white); background: linear-gradient(135deg,var(--red-dark),var(--red),var(--orange)); }
.content-hero h1 { margin-bottom: 15px; font-size: clamp(2.5rem,6vw,4.8rem); line-height: 1; letter-spacing: -.05em; }
.content-hero p { max-width: 700px; color: rgba(255,255,255,.8); font-size: 1.08rem; }
.content-page { padding: 75px 0 100px; }
.content-narrow { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.content-card { padding: 35px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-sm); }
.content-card h2 { margin: 32px 0 10px; font-size: 1.55rem; }
.content-card h2:first-child { margin-top: 0; }
.content-card p, .content-card li { color: var(--muted); }
.content-card a { color: var(--red); font-weight: 700; text-decoration: underline; }
.content-card ul { padding-left: 20px; }
.page-note { margin-bottom: 24px; padding: 15px 17px; color: #795c00; background: #fff9d9; border-left: 4px solid var(--yellow); border-radius: 0 10px 10px 0; }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; }
.contact-info { display: grid; align-content: start; gap: 13px; }
.contact-info-card { padding: 20px; border: 1px solid var(--border); border-radius: 14px; background: var(--soft); }
.contact-info-card strong { display: block; margin-bottom: 5px; }
.contact-info-card p { margin: 0; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .82rem; font-weight: 800; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.form-group input, .form-group select { min-height: 48px; }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); outline: 3px solid rgba(0,107,214,.11); }
.form-status { grid-column: 1/-1; min-height: 24px; font-size: .84rem; }

.toast { position: fixed; z-index: 5000; right: 22px; bottom: 22px; max-width: min(380px, calc(100vw - 44px)); padding: 15px 18px; color: var(--white); font-weight: 800; background: var(--ink); border-radius: 12px; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; transform: none; }
.toast.success { background: var(--green); }
.toast.error { background: #a31515; }

/* Reveal — conteúdo permanece visível quando JavaScript estiver desativado */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1120px) {
    .primary-nav { gap: 15px; }
    .primary-nav > a:not(.button) { font-size: .76rem; }
    .hero-grid { gap: 35px; }
    .float-card-price { right: -5px; }
    .features-grid { grid-template-columns: repeat(3,1fr); }
    .location-grid { gap: 45px; }
    .trust-grid { gap: 45px; }
}

@media (max-width: 960px) {
    :root { --header-height: 72px; }
    .menu-toggle { display: flex; }
    .primary-nav { position: fixed; inset: 72px 16px auto; max-height: calc(100vh - 90px); overflow: auto; padding: 18px; display: grid; gap: 4px; color: var(--ink); background: rgba(255,255,255,.98); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .22s ease, visibility .22s ease, transform .22s ease; }
    .primary-nav.open { opacity: 1; visibility: visible; transform: none; }
    .primary-nav > a:not(.button) { padding: 11px 10px; font-size: .9rem; border-radius: 8px; }
    .primary-nav > a:not(.button):hover { background: var(--soft); }
    .primary-nav > a:not(.button)::after { display: none; }
    .button-header { width: 100%; margin-top: 7px; color: var(--white) !important; background: var(--red) !important; }
    .hero { min-height: auto; padding-top: 125px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy h1, .hero-copy > p, .hero-trust { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { width: min(100%,650px); margin: 0 auto; }
    .purpose-grid { grid-template-columns: 1fr; }
    .pillar-card { min-height: auto; }
    .mission-strip { grid-template-columns: 1fr; text-align: center; }
    .steps-layout { grid-template-columns: 1fr; }
    .steps-nav { display: grid; grid-template-columns: repeat(2,1fr); }
    .step-tab:hover { transform: translateY(-3px); }
    .comparison-content { grid-template-columns: 1fr; }
    .shopping-list-panel { border-right: 0; border-bottom: 1px solid var(--border); }
    .location-grid, .trust-grid, .history-grid, .impact-grid, .cta-grid, .faq-grid { grid-template-columns: 1fr; }
    .location-copy { max-width: 680px; }
    .map-demo { min-height: 520px; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .trust-visual { min-height: 520px; order: 2; }
    .history-copy { max-width: 700px; }
    .impact-grid { gap: 45px; }
    .impact-stats { grid-column: auto; }
    .partners-card { grid-template-columns: 1fr; }
    .future-logos { grid-template-columns: repeat(4,1fr); }
    .future-logos small { grid-column: 1/-1; }
    .cta-phone-wrap { min-height: 430px; }
    .phone-cta { transform: translateY(80px) rotate(2deg); }
    .notify-card { grid-template-columns: 1fr; }
    .faq-heading { position: static; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 78px 0; }
    .section-heading { margin-bottom: 36px; }
    .site-header.scrolled, body:not(.home-page) .site-header { height: 66px; }
    .primary-nav { inset: 66px 10px auto; }
    .brand-word { font-size: 1.75rem; }
    .brand small { display: none; }
    .hero { padding: 110px 0 95px; }
    .hero-copy h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
    .hero-copy > p { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 540px; transform: scale(.88); margin-top: -20px; margin-bottom: -45px; }
    .phone-hero { width: 285px; height: 560px; }
    .float-card { min-width: 180px; padding: 10px; }
    .float-card-saving { left: -38px; top: 60px; }
    .float-card-price { right: -45px; top: 225px; }
    .float-card-near { left: -30px; bottom: 60px; }
    .floating-receipt { right: -20px; }
    .floating-pin, .floating-coin { display: none; }
    .hero-bottom-wave { height: 110px; bottom: -65px; }
    .mission-strip { padding: 22px 16px; }
    .mission-graphic { transform: scale(.88); }
    .steps-nav { grid-template-columns: 1fr; }
    .step-tab { padding: 14px; }
    .step-panel { grid-template-columns: 1fr; padding: 24px; min-height: auto; }
    .step-demo { min-height: 300px; }
    .comparison-toolbar { align-items: stretch; flex-direction: column; }
    .mode-switch { display: grid; grid-template-columns: 1fr; }
    .comparison-content { min-height: auto; }
    .shopping-list-panel, .result-panel { padding: 20px 16px; }
    .shopping-list-panel li { grid-template-columns: 36px 1fr auto; gap: 8px; padding: 8px; }
    .product-mini { width: 36px; height: 36px; }
    .shopping-list-panel em { font-size: .78rem; }
    .result-summary { flex-direction: column; }
    .result-actions { flex-direction: column; }
    .result-actions .button { width: 100%; }
    .location-grid { gap: 45px; }
    .map-demo { min-height: 430px; border-width: 6px; }
    .map-legend { flex-direction: column; gap: 4px; }
    .radius-circle { width: 230px; height: 230px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .trust-visual { min-height: 420px; transform: scale(.84); margin: -40px -30px; }
    .trust-list { grid-template-columns: 1fr; }
    .history-dashboard { padding: 18px 14px; }
    .history-metrics { grid-template-columns: repeat(2,1fr); }
    .chart-tooltip { right: 0; }
    .impact-stats { grid-template-columns: 1fr; gap: 20px; }
    .impact-stats div { padding-bottom: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .impact-stats div:last-child { border-bottom: 0; }
    .impact-stats strong { font-size: 3rem; }
    .partners-card { padding: 30px 22px; }
    .future-logos { grid-template-columns: repeat(2,1fr); }
    .screens-heading { align-items: flex-start; flex-direction: column; }
    .screen-slide { flex-basis: 245px; }
    .cta-grid { gap: 20px; }
    .cta-copy { text-align: center; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .button { width: 100%; }
    .cta-phone-wrap { transform: scale(.92); margin: -20px -20px; }
    .notify-card { padding: 19px 15px; }
    .notify-form { grid-template-columns: 1fr; }
    .consent { grid-column: auto; }
    .faq-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1/-1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .content-hero { padding: 120px 0 55px; }
    .content-card { padding: 24px 18px; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
}

@media (max-width: 420px) {
    .hero-visual { transform: scale(.76); margin: -60px -60px -95px; width: calc(100% + 120px); }
    .mission-graphic { transform: scale(.72); margin-inline: -35px; }
    .map-marker small { display: none; }
    .trust-visual { transform: scale(.72); margin: -70px -70px; }
    .screen-slide { flex-basis: 230px; }
    .phone-small { width: 220px; height: 450px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .js .reveal { opacity: 1; transform: none; }
    [data-parallax] { transform: none !important; }
}

/* ========================================================================== 
   Integração Bootstrap 5.3 — estrutura, componentes e utilitários locais
   O tema abaixo preserva a identidade visual original do PouPop.
   ========================================================================== */
:root {
    --bs-primary: #D72600;
    --bs-primary-rgb: 215, 38, 0;
    --bs-success: #13A35B;
    --bs-success-rgb: 19, 163, 91;
    --bs-warning: #FFE600;
    --bs-warning-rgb: 255, 230, 0;
    --bs-info: #006BD6;
    --bs-info-rgb: 0, 107, 214;
    --bs-body-color: #2C160F;
    --bs-body-bg: #FFFFFF;
    --bs-body-font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bs-border-radius: 10px;
    --bs-border-radius-lg: 16px;
}

/* Mantém o limite visual original usando o container responsivo do Bootstrap. */
.container {
    width: 100%;
    max-width: var(--container);
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

/* Botões continuam com a identidade PouPop e agora também são componentes .btn. */
.button.btn { --bs-btn-border-width: 1px; }
.button.btn:focus-visible { box-shadow: none; }

/* Navbar Bootstrap */
.site-header.navbar { --bs-navbar-padding-y: 0; }
.site-header .navbar-brand { color: inherit; }
.primary-nav.navbar-collapse { flex-grow: 0; }
.primary-nav .navbar-nav { gap: 24px; }
.primary-nav .nav-link {
    position: relative;
    padding: 0;
    color: inherit;
    font-size: .83rem;
    font-weight: 700;
    opacity: .91;
}
.primary-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: currentColor;
    transition: right .25s ease;
}
.primary-nav .nav-link:hover,
.primary-nav .nav-link:focus { color: inherit; }
.primary-nav .nav-link:hover::after,
.primary-nav .nav-link:focus::after { right: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* O sistema de grid passa a ser o row/col do Bootstrap. */
.hero-grid.row,
.purpose-grid.row,
.steps-layout.row,
.comparison-content.row,
.location-grid.row,
.features-grid.row,
.trust-grid.row,
.history-grid.row,
.impact-grid.row,
.partners-card.row,
.cta-grid.row,
.faq-grid.row,
.footer-grid.row,
.contact-layout.row,
.contact-form.row,
.notify-form.row {
    display: flex;
    grid-template-columns: none;
    gap: 0;
}

.hero-grid.row,
.location-grid.row,
.trust-grid.row,
.history-grid.row,
.impact-grid.row,
.partners-card.row,
.cta-grid.row,
.faq-grid.row,
.contact-layout.row { width: auto; }

/* Cards Bootstrap com o mesmo acabamento anterior. */
.pillar-card.card,
.feature-card.card,
.content-card.card,
.contact-info-card.card {
    color: inherit;
    border-color: var(--border);
}
.pillar-card.card,
.feature-card.card { padding: 0; }
.pillar-card.card .card-body { padding: 31px; }
.feature-card.card .card-body { position: relative; z-index: 1; padding: 25px; }
.content-card.card { padding: 0; }
.content-card.card > .card-body { padding: 35px; }
.contact-info-card.card { padding: 20px; }

/* Nav Pills Bootstrap — etapas de funcionamento. */
.steps-nav.nav { flex-wrap: nowrap; align-content: stretch; }
.step-tab.nav-link { color: var(--ink); }
.step-tab.nav-link:hover { color: var(--ink); }
.step-tab.nav-link.active,
.step-tab.nav-link.active:hover,
.step-tab.nav-link.active:focus { color: var(--white); }
.tab-content > .step-panel:not(.active) { display: none !important; }
.tab-content > .step-panel.active { display: grid; }

/* Button group Bootstrap — comparação. */
.mode-switch.btn-group .btn { border: 0; box-shadow: none; }
.mode-switch.btn-group .btn + .btn { margin-left: 0; }

/* Formulários Bootstrap. */
.form-control,
.form-select {
    color: var(--ink);
    background-color: var(--white);
    border-color: var(--border);
    border-radius: 10px;
}
.form-control:focus,
.form-select:focus {
    color: var(--ink);
    background-color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem rgba(0, 107, 214, .11);
}
.form-check-input:checked {
    background-color: var(--red);
    border-color: var(--red);
}
.form-check-input:focus { border-color: var(--red); box-shadow: 0 0 0 .2rem rgba(215, 38, 0, .12); }
.notify-form.row { align-items: start; }
.notify-form .form-control { min-height: 50px; }
.notify-form .consent { display: block; color: var(--muted); font-size: .68rem; }
.notify-form .form-check-input { margin-top: .18rem; }
.contact-form.row { margin-top: 0; }
.form-group.col-12,
.form-group[class*="col-"] { display: flex; }

/* Accordion Bootstrap — perguntas frequentes. */
.faq-list.accordion { display: grid; gap: 10px; }
.faq-item.accordion-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 13px;
}
.faq-item.accordion-item:first-of-type,
.faq-item.accordion-item:last-of-type { border-radius: 13px; }
.faq-item .accordion-button {
    min-height: 68px;
    padding: 15px 18px;
    color: var(--ink);
    font-weight: 900;
    background: var(--white);
    box-shadow: none;
}
.faq-item .accordion-button:not(.collapsed) { color: var(--ink); background: var(--white); box-shadow: none; }
.faq-item .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
    filter: sepia(1) saturate(8) hue-rotate(340deg);
}
.faq-item:has(.accordion-collapse.show) {
    border-color: rgba(215,38,0,.22);
    box-shadow: var(--shadow-sm);
}
.faq-answer.accordion-body { padding: 0 18px 18px; }

/* Toast Bootstrap local. */
.toast-container { z-index: 5000; }
.site-toast.toast {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(380px, calc(100vw - 32px));
    max-width: 100%;
    padding: 0;
    color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.site-toast.toast-success { background: var(--green); }
.site-toast.toast-error { background: #a31515; }
.site-toast .toast-body { padding: 15px 18px; }

/* Ajustes dos grids internos convertidos. */
.comparison-content.row { min-height: 520px; }
.shopping-list-panel.col-12 { border-right: 1px solid var(--border); }
.result-panel.col-12 { min-width: 0; }
.location-grid.row,
.trust-grid.row,
.history-grid.row { position: relative; z-index: 2; }
.impact-stats.col-12 { grid-column: auto; }
.partners-card.row { padding: 56px; }
.future-logos.col-12 { grid-column: auto; }
.notify-card.col-12 { grid-column: auto; }
.footer-grid.row > div:last-child { grid-column: auto; }

@media (max-width: 1119.98px) {
    .primary-nav .navbar-nav { gap: 15px; }
    .primary-nav .nav-link { font-size: .76rem; }
}

@media (max-width: 991.98px) {
    .menu-toggle.navbar-toggler { display: flex; }
    .primary-nav.navbar-collapse {
        position: fixed;
        inset: 72px 16px auto;
        max-height: calc(100vh - 90px);
        overflow: auto;
        padding: 18px;
        color: var(--ink);
        background: rgba(255,255,255,.98);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow-md);
    }
    .primary-nav.navbar-collapse:not(.show):not(.collapsing) { display: none !important; }
    .primary-nav.navbar-collapse.show,
    .primary-nav.navbar-collapse.collapsing { display: block; }
    .primary-nav .navbar-nav { gap: 4px; align-items: stretch !important; }
    .primary-nav .nav-link {
        padding: 11px 10px;
        color: var(--ink);
        font-size: .9rem;
        border-radius: 8px;
    }
    .primary-nav .nav-link:hover { color: var(--ink); background: var(--soft); }
    .primary-nav .nav-link::after { display: none; }
    .button-header { width: 100%; margin-top: 7px; margin-left: 0 !important; color: var(--white) !important; background: var(--red) !important; }
    .shopping-list-panel.col-12 { border-right: 0; border-bottom: 1px solid var(--border); }
    .trust-visual { order: 2; }
    .partners-card.row { padding: 42px; }
}

@media (min-width: 681px) and (max-width: 991.98px) {
    .steps-nav.nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 680px) {
    .container { padding-right: 14px; padding-left: 14px; }
    .primary-nav.navbar-collapse { inset: 66px 10px auto; }
    .steps-nav.nav { display: flex; }
    .step-panel.tab-pane.active { grid-template-columns: 1fr; }
    .comparison-content.row { min-height: auto; }
    .partners-card.row { padding: 30px 22px; }
    .content-card.card > .card-body { padding: 24px 18px; }
}

@media (max-width: 991.98px) {
    .primary-nav.navbar-collapse.show,
    .primary-nav.navbar-collapse.collapsing {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}
