/* ============================================================
   SehatBox marketing site — hifi redesign
   Design tokens & components per the SehatBox Landing handoff.
   ============================================================ */

:root {
    /* Brand greens */
    --green: #4FA22B;
    --green-dark: #3C7E1F;
    --green-deep: #132A1B;
    --ink: #16272E;
    /* Blue */
    --blue: #1C97D4;
    --blue-text: #1673A6;
    --blue-tint: #E4F2FB;
    /* Amber */
    --amber: #F19A1C;
    --amber-strong: #F5CB3A;
    --amber-tint: #FDF1DA;
    /* Green tints / surfaces */
    --green-tint: #EAF6E1;
    --green-tint-2: #E7F5DF;
    --page-tint: #F3FAF0;
    --card: #F8FAF8;
    --card-2: #F8FCF5;
    /* Body text */
    --body: #42606B;
    --body-2: #54707A;
    --body-3: #5A7079;
    --body-4: #607680;
    --muted: #6C838C;
    --link: #3B535D;
    /* Borders */
    --border: #EDF2EF;
    --border-2: #E9F0EA;
    --border-3: #E6EEE9;
    --border-4: #DCE7E0;
    --ghost-num: #EAF0EB;
    /* Fonts */
    --display: 'Bricolage Grotesque', system-ui, sans-serif;
    --sans: 'Manrope', system-ui, sans-serif;
    /* Layout */
    --maxw: 1180px;
    --pad: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: #fff;
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: inherit; }

h1, h2, h3, h4 { margin: 0; }

/* ---------- Layout helpers ---------- */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
    width: 100%;
}
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
    width: 100%;
}

.section-white { background: #fff; padding: 80px 0; }
.section-tint { background: var(--page-tint); padding: 84px 0; }
.section-how { background: linear-gradient(180deg, #fff, var(--page-tint)); padding: 84px 0 90px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head-wide { max-width: 660px; }

.h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--green-deep);
}
.h2-lg { font-size: clamp(28px, 3.8vw, 42px); line-height: 1.1; }

.section-sub {
    font-size: 19px;
    color: var(--body-2);
    margin: 16px auto 0;
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 14px;
    padding: 7px 15px;
    border-radius: 999px;
}
.eyebrow-green { background: var(--green-tint-2); color: var(--green-dark); }
.eyebrow-blue { background: var(--blue-tint); color: var(--blue-text); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.txt-green { color: var(--green); }
.txt-blue { color: var(--blue); }
.txt-deep { color: var(--green-deep); }

/* ---------- Grids ---------- */
.grid-autofit-240 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-autofit-260 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-autofit-250 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.grid-autofit-220 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.grid-autofit-200 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-pill { border-radius: 999px; }
.btn-primary {
    background: var(--green);
    color: #fff;
    font-size: 16px;
    padding: 11px 22px;
    box-shadow: 0 6px 16px rgba(79, 162, 43, 0.28);
}
.btn-primary:hover { background: #47921f; box-shadow: 0 10px 22px rgba(79, 162, 43, 0.34); transform: translateY(-1px); }
.btn-lg { font-size: 17px; padding: 15px 30px; }
.btn-primary.btn-lg { box-shadow: 0 10px 24px rgba(79, 162, 43, 0.3); }
.btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--border-4);
    padding: 15px 28px;
}
.btn-outline:hover { border-color: #c7d8cd; transform: translateY(-1px); }
.btn-white {
    background: #fff;
    color: var(--green-dark);
    font-weight: 800;
    font-size: 18px;
    padding: 16px 34px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
.btn-white:hover { transform: translateY(-1px); }
.btn-ghost-white {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 16px 30px;
}
.btn-ghost-white:hover { background: rgba(255, 255, 255, 0.22); }

/* ============================================================
   NAV
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a {
    text-decoration: none;
    color: var(--link);
    font-weight: 600;
    font-size: 16px;
}
.nav-links > a:hover { color: var(--green); }
.nav-links > a.nav-cta, .nav-links > a.nav-cta:hover { color: #fff; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle-bar {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.navbar.menu-open .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar.menu-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.navbar.menu-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px var(--pad) 20px;
    border-top: 1px solid var(--border);
    background: #fff;
}
.nav-menu > a {
    text-decoration: none;
    color: var(--link);
    font-weight: 600;
    font-size: 17px;
    padding: 12px 4px;
}
.nav-menu > a.nav-menu-cta, .nav-menu > a.nav-menu-cta:hover { margin-top: 8px; color: #fff; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--page-tint) 0%, #fff 78%);
}
.hero-grid {
    padding-top: 72px;
    padding-bottom: 88px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 56px;
}
.hero-copy { flex: 1 1 440px; min-width: 320px; }
.hero-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(38px, 5.2vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 22px 0 0;
    color: var(--green-deep);
}
.hero-sub { font-size: 20px; color: var(--body); margin: 22px 0 0; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}
.trust-row li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--link);
    font-weight: 600;
    font-size: 15px;
}
.ic-check { width: 20px; height: 20px; flex-shrink: 0; }
.ic { flex-shrink: 0; }

/* Hero visual */
.hero-visual {
    flex: 1 1 400px;
    min-width: 320px;
    display: flex;
    justify-content: center;
    position: relative;
}
.schedule-panel {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: linear-gradient(160deg, #E9F6FC 0%, var(--green-tint) 100%);
    border-radius: 32px;
    padding: 34px 30px 38px;
    box-shadow: 0 30px 60px -24px rgba(28, 100, 40, 0.28);
}
.schedule-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.schedule-title { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); }
.schedule-pill {
    font-size: 13px; font-weight: 700; color: var(--green-dark);
    background: #fff; padding: 5px 12px; border-radius: 999px;
}
.packet {
    background: #fff;
    border: 1.5px solid var(--border-3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 14px -8px rgba(20, 40, 30, 0.18);
    margin-bottom: 14px;
}
.packet:last-child { margin-bottom: 0; }
.packet-head {
    border-bottom: 2px dashed #E1EAE4;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.packet-date { font-weight: 800; font-size: 13px; letter-spacing: 0.08em; color: var(--green); }
.packet-time { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--ink); }
.ic-clock { width: 15px; height: 15px; }
.packet-body { padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; }
.pills { display: flex; gap: 7px; align-items: center; }
.pill-dot { width: 16px; height: 16px; border-radius: 50%; }
.pill-cap { width: 34px; height: 15px; border-radius: 999px; }
.pill-green { background: linear-gradient(90deg, var(--green) 50%, var(--green-tint) 50%); border: 1px solid #d7e6cf; }
.pill-blue { background: linear-gradient(90deg, var(--blue) 50%, var(--blue-tint) 50%); border: 1px solid #cfe6f2; }
.packet-count { font-size: 13px; color: var(--muted); font-weight: 600; }

.reminder-card {
    position: absolute;
    right: -14px;
    bottom: -26px;
    background: #fff;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px -14px rgba(20, 40, 30, 0.4);
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid #EEF3F0;
    max-width: 250px;
}
.reminder-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--green-tint);
    display: flex; align-items: center; justify-content: center;
}
.reminder-title { font-weight: 800; font-size: 14px; color: var(--ink); }
.reminder-meta { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ============================================================
   CARDS (problem / trust / who / product / steps)
   ============================================================ */
.soft-card {
    padding: 26px;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid var(--border);
}
.emoji { font-size: 26px; margin-bottom: 8px; line-height: 1; }
.card-title { font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 5px; }
.card-body { color: var(--body-4); font-size: 16px; margin: 0; }

/* Icon tiles */
.icon-tile {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
}
.tile-green { background: var(--green-tint); }
.tile-blue { background: var(--blue-tint); }
.tile-amber { background: var(--amber-tint); }
.tile-sm { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 0; flex-shrink: 0; }

/* Product showcase */
.product-card {
    border: 1px solid var(--border-2);
    border-radius: 22px;
    overflow: hidden;
    background: var(--card);
    box-shadow: 0 18px 40px -28px rgba(20, 60, 30, 0.5);
}
.product-card img { width: 100%; display: block; }
.product-body { padding: 22px 24px; }
.product-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink);
    margin-bottom: 8px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }

/* How it works steps */
.step-card {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: 22px;
    padding: 30px 26px;
    box-shadow: 0 14px 30px -22px rgba(20, 60, 30, 0.4);
}
.step-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.step-top .icon-tile { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 0; }
.step-num { font-family: var(--display); font-weight: 700; font-size: 44px; color: var(--ghost-num); line-height: 1; }
.step-title { font-family: var(--display); font-weight: 700; font-size: 22px; margin: 0 0 8px; color: var(--ink); }
.step-card .card-body { color: var(--body-3); }

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.inside-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1120px;
}
.inside-visual { flex: 1 1 380px; min-width: 300px; display: flex; justify-content: center; }
.inside-copy { flex: 1 1 380px; min-width: 300px; }
.inside-copy .eyebrow { margin-bottom: 18px; }
.inside-copy .h2 { margin-bottom: 22px; }

.big-packet {
    background: #fff;
    border: 2px solid var(--border-3);
    border-radius: 22px;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(20, 60, 30, 0.4);
}
.big-packet-head {
    border-bottom: 3px dashed #E1EAE4;
    padding: 18px 22px;
    background: var(--card-2);
    display: flex; align-items: center; justify-content: space-between;
}
.big-packet-date { font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: 0.06em; color: var(--green); }
.big-packet-time {
    display: inline-flex; align-items: center; gap: 7px;
    font-weight: 800; font-size: 17px; color: var(--ink);
    background: #fff; border: 1px solid var(--border-3);
    padding: 6px 13px; border-radius: 999px;
}
.big-packet-time .ic-clock { width: 16px; height: 16px; }
.big-packet-body { padding: 24px 22px; }
.pills-lg { margin-bottom: 20px; gap: 12px; }
.pills-lg .pill-dot { width: 22px; height: 22px; }
.pills-lg .pill-cap { width: 48px; height: 20px; }
.med-list { border-top: 1px solid #EEF3F0; padding-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.med-row { display: flex; justify-content: space-between; font-size: 15px; }
.med-name { color: var(--ink); font-weight: 700; }
.med-qty { color: var(--muted); }

.feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 15px; }
.feature-title { font-weight: 700; font-size: 18px; color: var(--ink); }
.feature-list .card-body { color: var(--body-3); }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-2);
    text-align: center;
}
.who-card .emoji { font-size: 30px; margin-bottom: 10px; }
.who-label { font-weight: 700; font-size: 17px; color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border-3); border-radius: 16px; overflow: hidden; }
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
}
.faq-sign {
    position: relative;
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--green-tint);
}
.faq-sign::before, .faq-sign::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    background: var(--green);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .25s ease;
}
.faq-sign::before { width: 12px; height: 2.5px; }
.faq-sign::after { width: 2.5px; height: 12px; }
.faq-q[aria-expanded="true"] .faq-sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}
.faq-q[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { min-height: 0; overflow: hidden; }
.faq-answer-inner p { margin: 0; padding: 0 22px 20px; color: var(--body-3); font-size: 16.5px; }

/* ============================================================
   PRICING
   ============================================================ */
.launch-banner {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 18px;
    padding: 20px 26px;
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    box-shadow: 0 16px 34px -20px rgba(60, 126, 31, 0.7);
}
.launch-pill {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 999px;
}
.launch-text { color: #fff; font-weight: 700; font-size: 19px; }

.pricing-grid { margin-top: 20px; text-align: left; }
.price-card { border: 1px solid var(--border-2); border-radius: 18px; padding: 28px; background: var(--card); }
.price-card-featured { border: 1.5px solid var(--green); background: var(--page-tint); }
.price-card .card-title { margin-bottom: 6px; }
.price-figure { font-family: var(--display); font-weight: 700; font-size: 30px; }
.price-unit { font-size: 16px; color: var(--body-3); font-weight: 600; }
.price-card .card-body { margin-top: 8px; color: var(--body-3); }
.fine-print { font-size: 15px; color: var(--muted); margin-top: 22px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 26px;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease;
}
a.contact-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -24px rgba(20, 60, 30, 0.5); }
.contact-card .icon-tile { width: 44px; height: 44px; margin-bottom: 14px; }
.contact-label { font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.contact-value { color: var(--body-3); font-size: 16px; }
.contact-meta { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-panel {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 30px;
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(60, 126, 31, 0.7);
}
.cta-circle { position: absolute; border-radius: 50%; }
.cta-circle-1 { top: -60px; right: -40px; width: 220px; height: 220px; background: rgba(255, 255, 255, 0.08); }
.cta-circle-2 { bottom: -70px; left: -30px; width: 180px; height: 180px; background: rgba(255, 255, 255, 0.07); }
.cta-title {
    position: relative;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}
.cta-sub { position: relative; font-size: 20px; color: rgba(255, 255, 255, 0.9); margin: 18px auto 0; max-width: 560px; }
.cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section { min-height: 70vh; }
.legal-section .container-narrow { max-width: 820px; padding-top: 52px; padding-bottom: 84px; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 24px;
}
.back-link:hover { color: var(--green-dark); }
.legal-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--green-deep);
}
.legal-intro { font-size: 19px; color: var(--body-2); margin: 16px 0 0; max-width: 640px; }
.legal-card {
    background: #fff;
    border: 1px solid var(--border-3);
    border-radius: 20px;
    padding: clamp(26px, 4vw, 44px);
    margin-top: 32px;
    box-shadow: 0 20px 40px -30px rgba(20, 60, 30, 0.4);
}
.legal-block { margin-bottom: 30px; }
.legal-block h3 { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--ink); margin: 0 0 12px; }
.legal-block p { font-size: 16.5px; color: var(--body-3); margin: 0 0 12px; }
.legal-updated { border-top: 1px solid #EEF3F0; padding-top: 18px; font-size: 14px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-deep); color: #B8CABE; }
.footer-top {
    padding-top: 56px;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1120px;
}
.footer-brand { max-width: 320px; }
.footer-logo { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.92; margin-bottom: 14px; }
.footer-tagline { font-size: 15px; color: #93AC9A; margin: 0 0 18px; }
.footer-company { display: flex; flex-direction: column; gap: 7px; font-size: 14.5px; color: #B8CABE; }
.footer-company-name { color: #fff; font-weight: 700; }
.footer-company a { color: #B8CABE; }
.footer-company a[href^="https://curatech"] { text-decoration: underline; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-col-title { font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 4px; }
.footer-col a { color: #B8CABE; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom-inner {
    max-width: 1120px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    color: #7C9583;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .navbar.menu-open .nav-menu { display: flex; }
    .hero-visual { margin-bottom: 26px; }
    .reminder-card { right: 0; }
}

@media (max-width: 620px) {
    body { font-size: 17px; }
    .section-white, .section-tint, .section-how { padding: 60px 0; }
    .hero-grid { padding-top: 52px; padding-bottom: 72px; gap: 40px; }
    .inside-grid { gap: 40px; }
    .footer-bottom-inner { justify-content: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}
