/* ============================================================
   Will's Waste, LLC — Industrial Premium
   Design system: deep forest base, lime accent, Anton + Manrope.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    /* Surfaces */
    --bg:           #0a1410;
    --surface:      #0f1c16;
    --surface-2:    #142821;
    --surface-3:    #1a3329;

    /* Borders */
    --border:       rgba(212, 212, 216, 0.10);
    --border-soft:  rgba(255, 255, 255, 0.06);
    --border-hot:   rgba(212, 212, 216, 0.30);

    /* Text */
    --text:         #f1f5f4;
    --text-mid:     #a3b3ab;
    --text-low:     #6b7d72;

    /* Brand — zinc grayscale (replaces prior lime accent) */
    --accent:       #d4d4d8;        /* zinc-300 */
    --accent-hot:   #f4f4f5;        /* zinc-100 */
    --accent-deep:  #71717a;        /* zinc-500 */
    --accent-soft:  rgba(212, 212, 216, 0.12);
    --gold:         #facc15;
    --ok:           #d4d4d8;

    /* Typography */
    --font-display: 'Anton', 'Impact', 'Arial Narrow Bold', sans-serif;
    --font-body:    'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

    /* Layout */
    --radius:       18px;
    --radius-sm:    10px;
    --radius-lg:    28px;
    --container:    1240px;

    /* Shadows */
    --shadow-sm:    0 1px 2px rgba(0,0,0,0.3);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.35);
    --shadow-lg:    0 24px 60px -12px rgba(0,0,0,0.55);
    --glow-accent:  0 0 0 1px rgba(212,212,216,0.40), 0 18px 40px -10px rgba(212,212,216,0.30);

    /* Motion */
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Ambient background ---------- */
.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
}
.ambient-glow--lime {
    width: 720px; height: 720px;
    top: -200px; right: -180px;
    background: radial-gradient(circle, rgba(212,212,216,0.35), transparent 70%);
}
.ambient-glow--deep {
    width: 900px; height: 900px;
    top: 30%; left: -300px;
    background: radial-gradient(circle, rgba(163,163,163,0.10), transparent 70%);
}
.ambient-grain {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}

body > nav, body > section, body > footer { position: relative; z-index: 1; }

/* ---------- Layout primitives ---------- */
.container {
    max-width: var(--container);
    padding: 0 32px;
    margin: 0 auto;
}

section {
    padding: 120px 0;
}

/* ---------- Typography ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}
.eyebrow-bar {
    width: 40px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text);
}

h2 {
    font-size: clamp(40px, 5.6vw, 76px);
    margin-bottom: 22px;
}

h3 {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: none;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    color: var(--text);
}

.accent { color: var(--accent); }
.accent-italic {
    color: var(--accent);
    font-style: normal;
    transform: skewX(-7deg);
    display: inline-block;
}

.muted { color: var(--text-low); font-weight: 400; }

.section-header {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}
.section-header p {
    color: var(--text-mid);
    font-size: 18px;
    margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.005em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--accent);
    color: #0a1410;
    box-shadow: 0 10px 30px -8px rgba(212,212,216,0.45);
}
.btn-primary:hover {
    background: var(--accent-hot);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(212,212,216,0.55);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-hot);
}
.btn-outline:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-hot);
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border-color: var(--border-soft);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--border-hot);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(10, 20, 16, 0.55);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: background .35s var(--ease), border-color .35s var(--ease);
}
.navbar.scrolled {
    background: rgba(10, 20, 16, 0.85);
    border-bottom: 1px solid var(--border-soft);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--container);
    padding: 0 32px;
    margin: 0 auto;
}
.nav-logo {
    display: flex;
    align-items: center;
    color: var(--text);
}

/* Header wordmark — type-only, no graphic mark. Anton caps, with the
   apostrophe color-shifted to lime as the single accent tying it back
   to the site palette. The "LLC" chip is set in Manrope tracked-out
   small-caps so it reads as a sub-mark, not a heading. */
.nav-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    color: var(--text);
    line-height: 1;
    transition: color .2s var(--ease);
}
.nav-wordmark:hover { color: var(--text); }
.nav-wordmark:hover .nav-wordmark-tick { color: var(--accent-hot); }

.nav-wordmark-name {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}
.nav-wordmark-tick {
    color: var(--accent);
    transition: color .2s var(--ease);
    /* Anton's apostrophe sits high; nudge it visually into balance. */
    display: inline-block;
    transform: translateY(-1px);
}
.nav-wordmark-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-low);
    padding: 4px 8px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    align-self: center;
}

/* Footer keeps the full brand artwork — kept in its own scope so this
   never collides with the header wordmark. */
.brand-logo {
    height: 96px;
    width: auto;
    transition: opacity .25s var(--ease);
    user-select: none;
    -webkit-user-drag: none;
}
.footer-brand a:hover .brand-logo { opacity: 0.85; }

@media (max-width: 820px) {
    .nav-wordmark-name { font-size: 24px; }
    .nav-wordmark-tag { display: none; }
    .footer-brand .brand-logo { height: 80px; }
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 999px;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--accent); }

.nav-cta { display: flex; gap: 8px; align-items: center; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hamburger .bar {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    padding: 200px 0 80px;
    position: relative;
}
.hero-container {
    max-width: var(--container);
    padding: 0 32px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: rise 0.8s var(--ease) both;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(212,212,216,0.18);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 9vw, 132px);
    line-height: 0.92;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title .line {
    display: block;
    animation: rise 0.9s var(--ease) both;
}
.hero-title .line:nth-child(1) { animation-delay: 0.05s; }
.hero-title .line:nth-child(2) { animation-delay: 0.18s; }
@keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    color: var(--text-mid);
    font-size: 19px;
    line-height: 1.55;
    max-width: 540px;
    margin-bottom: 36px;
    animation: rise 0.9s var(--ease) 0.32s both;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: rise 0.9s var(--ease) 0.42s both;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    animation: rise 0.9s var(--ease) 0.52s both;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-mid);
    font-size: 13px;
}
.trust-item i { color: var(--accent); font-size: 13px; }

/* Hero visual */
.hero-visual {
    position: relative;
    animation: rise 1.0s var(--ease) 0.25s both;
}
.hero-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-hot), 0 0 60px -10px rgba(212,212,216,0.30);
}
.hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}
.hero-photo:hover img { transform: scale(1.06); }
.hero-photo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,20,16,0.85) 100%);
    pointer-events: none;
}
.hero-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    padding: 14px 18px;
    background: rgba(10, 20, 16, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-hot);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.hero-badge-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent);
    letter-spacing: 0.02em;
}
.hero-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mid);
    margin-top: 6px;
}
.hero-tag {
    position: absolute;
    top: 22px;
    right: -14px;
    padding: 12px 16px;
    background: var(--accent);
    color: #0a1410;
    border-radius: var(--radius-sm);
    transform: rotate(6deg);
    box-shadow: 0 14px 30px -8px rgba(212,212,216,0.50);
    line-height: 1;
}
.hero-tag span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    font-weight: 700;
}
.hero-tag strong {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* Marquee divider */
.marquee {
    margin-top: 80px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
    background: linear-gradient(90deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}
.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    padding: 18px 0;
    animation: marquee 38s linear infinite;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--text-low);
    text-transform: uppercase;
    padding-right: 16px;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}

/* ---------- Plans / Services ---------- */
.services { padding-top: 100px; }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
    overflow: hidden;
}
.plan-card:hover {
    transform: translateY(-6px);
    background: var(--surface-2);
    border-color: var(--border-hot);
}

.plan-card--featured {
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    border-color: var(--border-hot);
    box-shadow: 0 30px 60px -20px rgba(212,212,216,0.20), 0 0 0 1px var(--border-hot);
    transform: translateY(-12px);
}
.plan-card--featured:hover { transform: translateY(-18px); }

.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 11px;
    background: var(--accent);
    color: #0a1410;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
}

.plan-head {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px dashed var(--border-soft);
}
.plan-icon {
    display: inline-grid;
    place-items: center;
    width: 46px; height: 46px;
    background: var(--surface-3);
    border-radius: 12px;
    color: var(--text-mid);
    font-size: 18px;
    margin-bottom: 18px;
}
.plan-icon--featured {
    background: var(--accent-soft);
    color: var(--accent);
}
.plan-name {
    font-family: var(--font-display);
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 6px;
}
.plan-desc {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 26px;
}
.plan-amount {
    font-family: var(--font-display);
    font-size: 88px;
    line-height: 1;
    color: var(--text);
    letter-spacing: 0;
}
.plan-card--featured .plan-amount { color: var(--accent); }
.plan-currency {
    font-size: 36px;
    color: var(--text-mid);
    margin-right: 2px;
    vertical-align: 12px;
}
.plan-period {
    font-size: 14px;
    color: var(--text-low);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-features {
    margin-bottom: 28px;
    flex-grow: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-mid);
    font-size: 14.5px;
}
.plan-features i {
    color: var(--accent);
    font-size: 12px;
    margin-top: 6px;
}

.plan-footnote {
    margin-top: 36px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px dashed var(--border-soft);
    border-radius: 14px;
    color: var(--text-mid);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}
.plan-footnote i { color: var(--accent); }
.plan-footnote strong { color: var(--text); }

/* ---------- Service Areas ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto;
}
.area-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 22px;
    transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.area-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hot);
    background: var(--surface-2);
}
.area-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 14px;
}
.area-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}
.area-card p {
    font-size: 12px;
    color: var(--text-low);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.area-card--ghost {
    border-style: dashed;
    background: transparent;
}
.area-card--ghost a { color: var(--accent); }

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}
.about-text > p {
    color: var(--text-mid);
    font-size: 17px;
    line-height: 1.65;
    margin-top: 18px;
}

.pull-quote {
    margin: 32px 0;
    padding: 28px 28px 28px 36px;
    background: var(--surface);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
}
.quote-mark {
    color: var(--accent);
    font-size: 60px;
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-soft);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1;
    color: var(--accent);
    letter-spacing: 0.01em;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-low);
    margin-top: 8px;
}

.about-visual { position: relative; }
.about-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-lg);
}
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-tag {
    position: absolute;
    bottom: -28px;
    left: -28px;
    padding: 18px 22px;
    background: var(--surface-2);
    border: 1px solid var(--border-hot);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 240px;
}
.about-tag i {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 4px;
}
.about-tag strong {
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
}
.about-tag span {
    font-size: 12px;
    color: var(--text-mid);
    letter-spacing: 0.04em;
}

/* ---------- Conditions ---------- */
.conditions {
    background: var(--surface);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.condition-tile {
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.condition-tile:hover {
    border-color: var(--border-hot);
    transform: translateY(-3px);
}
.condition-tile i {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 16px;
    display: block;
}
.condition-tile h3 { margin-bottom: 6px; }
.condition-tile p {
    color: var(--text-mid);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ---------- Extra Waste ---------- */
.extra-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: start;
}
.extra-text > p {
    color: var(--text-mid);
    font-size: 17px;
    line-height: 1.6;
    margin-top: 18px;
    margin-bottom: 28px;
}

.extra-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.extra-price-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
}
.extra-price-row > i {
    color: var(--accent);
    font-size: 22px;
}
.extra-price-info { display: flex; flex-direction: column; }
.extra-price-info strong { color: var(--text); font-size: 16px; }
.extra-price-info span { color: var(--text-low); font-size: 13px; }
.extra-price-amount {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
}
.extra-price-amount span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    color: var(--text-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 4px;
}

.extra-form-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.extra-form-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
}
.extra-form-sub {
    color: var(--text-mid);
    font-size: 14px;
    margin-bottom: 24px;
}

/* ---------- Forms ---------- */
.form { display: flex; flex-direction: column; gap: 14px; }

/* Honeypot anti-spam field — hidden from humans, present for bots to fill.
   Using a class (not inline style) because our CSP forbids inline styles. */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Inline field validation — error message + invalid-state border */
.field-error {
    display: none;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
    color: #f87171;
    letter-spacing: 0.01em;
}
.form-group.invalid .field-error {
    display: block;
}
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #f87171;
}
.form-group.invalid input:focus,
.form-group.invalid select:focus,
.form-group.invalid textarea:focus {
    outline-color: #f87171;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:hover,
.form select:hover,
.form textarea:hover { border-color: var(--border-hot); }
.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,212,216,0.18);
    background: var(--surface);
}
.form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3b3ab' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}
.form textarea { resize: vertical; min-height: 90px; }
.form ::placeholder { color: var(--text-low); }

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px dashed var(--border-soft);
    border-radius: 10px;
    color: var(--text-mid);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}
.form-consent input {
    width: 16px; height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-success {
    padding: 14px 18px;
    background: rgba(163,163,163,0.10);
    border: 1px solid rgba(163,163,163,0.40);
    border-radius: 10px;
    color: #d4d4d8;
    font-size: 14px;
    margin-top: 10px;
}
.form-error {
    padding: 14px 18px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.40);
    border-radius: 10px;
    color: #fca5a5;
    font-size: 14px;
    margin-top: 10px;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.contact-item:hover {
    border-color: var(--border-hot);
    background: var(--surface-2);
    transform: translateY(-2px);
}
.contact-icon {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    background: var(--surface-3);
    border-radius: 10px;
    color: var(--text-mid);
    flex-shrink: 0;
}
.contact-icon--accent {
    background: var(--accent-soft);
    color: var(--accent);
}
.contact-item div { display: flex; flex-direction: column; line-height: 1.5; }
.contact-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-low);
    margin-bottom: 4px;
}
.contact-item strong {
    font-weight: 600;
    color: var(--text);
}
.contact-item span:not(.contact-label) {
    font-size: 14px;
    color: var(--text-mid);
}
.contact-item--cta {
    background: linear-gradient(135deg, var(--accent-soft), transparent);
    border-color: var(--border-hot);
}

.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 60px 0; }
.cta-banner-inner {
    background:
        radial-gradient(circle at 80% 20%, rgba(212,212,216,0.18), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(163,163,163,0.10), transparent 50%),
        var(--surface-2);
    border: 1px solid var(--border-hot);
    border-radius: var(--radius-lg);
    padding: 60px 56px;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
    font-size: clamp(32px, 4vw, 56px);
    margin-bottom: 12px;
}
.cta-banner p {
    color: var(--text-mid);
    font-size: 17px;
    max-width: 540px;
}
.cta-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-soft);
    background: linear-gradient(180deg, transparent, rgba(15, 28, 22, 0.5));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand p {
    color: var(--text-mid);
    font-size: 14.5px;
    line-height: 1.6;
    margin-top: 18px;
    max-width: 320px;
}
.footer-col h3 {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-low);
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
    color: var(--text-mid);
    font-size: 14.5px;
    transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-col li { line-height: 1.5; }
.footer-col i { font-size: 11px; margin-left: 4px; opacity: 0.7; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-low);
    font-size: 13px;
}
.footer-tag {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ---------- Scroll-to-top ---------- */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a1410;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
    box-shadow: 0 10px 30px -8px rgba(212,212,216,0.55);
    transition: transform .25s var(--ease);
}
.scroll-to-top:hover { transform: translateY(-3px); }
.scroll-to-top.visible { display: flex; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .hero-container,
    .about-grid,
    .extra-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }

    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .hero-visual { order: -1; max-width: 540px; }
    .hero-photo { aspect-ratio: 16 / 11; }
    .about-photo { aspect-ratio: 16 / 11; max-width: 640px; }

    .plans-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .plan-card--featured { transform: none; }
    .plan-card--featured:hover { transform: translateY(-6px); }

    .conditions-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-banner-inner {
        grid-template-columns: 1fr;
        padding: 40px 32px;
    }
}

@media (max-width: 820px) {
    section { padding: 80px 0; }
    .container, .nav-container, .hero-container { padding: 0 22px; }

    .nav-menu {
        position: fixed;
        top: 64px;
        right: 0;
        left: 0;
        flex-direction: column;
        gap: 4px;
        padding: 18px 22px 26px;
        background: rgba(10, 20, 16, 0.95);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border-soft);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s var(--ease), transform .25s var(--ease);
    }
    .nav-menu.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .nav-link { width: 100%; padding: 12px 14px; }

    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }

    .form-row { grid-template-columns: 1fr; }

    .hero-tag { right: 8px; top: 12px; }
    .about-tag { left: 0; bottom: -20px; }
    .pull-quote { font-size: 22px; }

    .plan-amount { font-size: 72px; }
    .stat-num { font-size: 36px; }

    .marquee-track span { font-size: 16px; }
}

@media (max-width: 480px) {
    .hero { padding-top: 140px; }
    .hero-trust { gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .extra-form-card, .contact-form-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-track { animation: none; }
}
