/* ==========================================================
   BinDrop - Light Theme Edition
   Palette: Ultra Light, Sharp Black Typography (#000000 / #0F172A),
   Vibrant Green Accents (#16A34A / #15803D).
   ========================================================== */

:root {
    --brand-green: #16A34A;
    --brand-green-hover: #15803D;
    --brand-green-glow: rgba(22, 163, 74, 0.25);
    --bg: #FFFFFF;
    --ground: #F8FAFC;
    --ink: #000000;
    --ink-2: #0F172A;
    --muted: #475569;
    --hair: #E2E8F0;
    --card: #FFFFFF;
    --invert-bg: #F8FAFC;
    --invert-ink: #000000;
    --invert-muted: #475569;
    --invert-hair: #E2E8F0;
}

:root[data-theme="dark"],
:root[data-theme="light"] {
    --brand-green: #16A34A;
    --brand-green-hover: #15803D;
    --brand-green-glow: rgba(22, 163, 74, 0.25);
    --bg: #FFFFFF;
    --ground: #F8FAFC;
    --ink: #000000;
    --ink-2: #0F172A;
    --muted: #475569;
    --hair: #E2E8F0;
    --card: #FFFFFF;
    --invert-bg: #F8FAFC;
    --invert-ink: #000000;
    --invert-muted: #475569;
    --invert-hair: #E2E8F0;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #FFFFFF;
        --ground: #F8FAFC;
        --ink: #000000;
        --ink-2: #0F172A;
        --muted: #475569;
        --hair: #E2E8F0;
        --card: #FFFFFF;
        --invert-bg: #F8FAFC;
        --invert-ink: #000000;
        --invert-muted: #475569;
        --invert-hair: #E2E8F0;
    }
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #FFFFFF; color: #000000; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11';
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: #000000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-inner { display: flex; align-items: center; height: 64px; gap: 32px; }
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.brand-logo {
    height: 40px;
    width: auto;
    max-height: 42px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-links a {
    padding: 8px 14px;
    font-weight: 600; font-size: 15px;
    color: #FFFFFF;
    border-radius: 999px;
    transition: all .15s ease;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.12); color: var(--brand-green); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-right a { padding: 8px 14px; font-weight: 600; font-size: 15px; color: #FFFFFF; border-radius: 999px; }
.nav-right a:hover { background: rgba(255, 255, 255, 0.12); color: var(--brand-green); }
.nav-cta {
    background: var(--brand-green) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}
.nav-cta:hover {
    background: var(--brand-green-hover) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
}

/* ============ HERO ============ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 64px);
    background: var(--bg);
}
.hero-left {
    padding: 72px 64px 72px 0;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 620px; margin-left: auto;
}
.hero h1 {
    font-size: clamp(44px, 5.6vw, 72px);
    font-weight: 900;
    color: #000000;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin: 0 0 32px;
    text-wrap: balance;
}
.booking { display: grid; gap: 12px; max-width: 520px; }
.field {
    position: relative;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 16px 14px 44px;
    display: flex; align-items: center;
    transition: all .15s ease;
    outline: 2px solid transparent;
    outline-offset: -2px;
}
.field:focus-within {
    outline-color: var(--brand-green);
    border-color: var(--brand-green);
    background: #FFFFFF;
}
.field-icon {
    position: absolute; left: 16px; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    color: #0F172A;
}
.field input, .field select {
    border: none; outline: none; background: transparent;
    width: 100%; font: inherit; color: #0F172A;
    font-weight: 600;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 20px; }
.field.select::after {
    content: ""; position: absolute; right: 18px; top: 50%;
    width: 8px; height: 8px;
    border-right: 2px solid #0F172A;
    border-bottom: 2px solid #0F172A;
    transform: translateY(-70%) rotate(45deg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cta-primary {
    background: #000000; color: #FFFFFF;
    padding: 16px 28px;
    font-size: 16px; font-weight: 700;
    border-radius: 10px;
    justify-self: start;
    margin-top: 8px;
    transition: transform .1s ease, background .15s ease;
    display: inline-flex; align-items: center; gap: 10px;
}
.cta-primary:hover { background: #1E293B; }
.cta-primary:active { transform: translateY(1px); }
.cta-arrow {
    width: 16px; height: 16px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}
.cta-link {
    margin-top: 12px; font-size: 15px; font-weight: 600;
    text-decoration: underline; text-underline-offset: 3px;
    color: #0F172A;
}
.cta-link:hover {
    color: var(--brand-green);
}

.text-green {
    color: var(--brand-green) !important;
}

.cta-green {
    background: var(--brand-green) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px var(--brand-green-glow);
    transition: all 0.2s ease !important;
}
.cta-green:hover {
    background: var(--brand-green-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.4);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.25);
    color: var(--brand-green);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    width: fit-content;
}

.hero-tag-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 8px var(--brand-green);
    animation: greenPulse 1.6s infinite ease-in-out;
}

@keyframes greenPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.pulse-green {
    background: var(--brand-green) !important;
    box-shadow: 0 0 10px var(--brand-green) !important;
    animation: greenPulse 1.6s infinite ease-in-out;
}

/* Hero Right Stage & Truck Animation */
.hero-right {
    position: relative;
    background: #F8FAFC;
    border-left: 1px solid var(--hair);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}
.hero-photo {
    position: absolute; inset: 0;
    background-color: #F1F5F9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: none;
    transform: scale(1.02);
}
.hero-overlay-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(248,250,252,0.85) 100%);
}

.truck-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    margin-bottom: 16px;
}

.truck-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.truck-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #475569;
}
.pulse-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 8px var(--brand-green);
    animation: greenPulse 1.5s infinite;
}
.btn-replay {
    background: #F1F5F9;
    color: #0F172A;
    border: 1px solid #CBD5E1;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-replay:hover {
    background: rgba(22, 163, 74, 0.1);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.truck-anim-viewport {
    width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}
.truck-svg { width: 100%; height: auto; display: block; }

/* TRUCK ANIMATION KEYFRAMES */
.animating #truckAssembly {
    animation: truckDriveIn 6s ease-in-out forwards;
}
.animating #bedAssembly {
    animation: bedTiltAnim 6s ease-in-out forwards;
}
.animating #dumpsterBin {
    animation: binDropAnim 6s ease-in-out forwards;
}
.animating #dropStatusBadge {
    animation: badgePopAnim 6s ease-in-out forwards;
}
.animating .wheel {
    animation: wheelRotate 6s ease-in-out forwards;
}

@keyframes truckDriveIn {
    0% { transform: translateX(-260px); }
    22% { transform: translateX(0px); }
    72% { transform: translateX(0px); }
    100% { transform: translateX(360px); }
}

@keyframes wheelRotate {
    0% { transform: rotate(0deg); transform-origin: center; }
    22% { transform: rotate(720deg); }
    72% { transform: rotate(720deg); }
    100% { transform: rotate(1440deg); }
}

@keyframes bedTiltAnim {
    0%, 25% { transform: rotate(0deg); transform-origin: 220px 150px; }
    38%, 55% { transform: rotate(-18deg); transform-origin: 220px 150px; }
    68%, 100% { transform: rotate(0deg); transform-origin: 220px 150px; }
}

@keyframes binDropAnim {
    0%, 35% { transform: translate(0, 0); }
    50% { transform: translate(110px, 32px); }
    52% { transform: translate(110px, 28px); }
    54%, 100% { transform: translate(110px, 30px); }
}

@keyframes badgePopAnim {
    0%, 50% { opacity: 0; transform: translateY(-10px) scale(0.9); }
    56%, 92% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.truck-telemetry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}
.tel-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
}
.tel-lbl {
    font-size: 9px;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.05em;
}
.tel-val {
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 2px;
}

.hero-badge {
    position: relative; z-index: 10;
    background: #0F172A; color: #FFFFFF;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 12px;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--brand-green);
}

/* ============ SECTION SHELL ============ */
section { padding: 96px 0; }
.eyebrow {
    font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--brand-green);
    margin: 0 0 20px;
}
h2 {
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 900;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 20px;
    text-wrap: balance;
}
.lede {
    font-size: 18px; color: #475569;
    max-width: 620px; line-height: 1.55;
    margin: 0;
}

/* ============ FEATURES (LIGHT SECTION) ============ */
.band-dark {
    background: #F8FAFC;
    color: #000000;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}
.band-dark .eyebrow { color: var(--brand-green); }
.band-dark .lede { color: #475569; }
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    background: transparent;
    border: none;
}
.feat {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 36px 30px;
    display: flex; flex-direction: column; gap: 12px;
    min-height: 220px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feat:hover {
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.1);
}
.feat .num {
    font-size: 13px; font-weight: 700;
    color: var(--brand-green);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.06em;
}
.feat h3 {
    font-size: 22px; font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.15;
}
.feat p {
    color: #475569;
    font-size: 15px; margin: 0;
    max-width: 32ch;
}

/* ============ BIN SIZES ============ */
.bins {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.bin-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    display: flex; flex-direction: column; gap: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.bin-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.12);
}
.bin-visual {
    height: 200px;
    background-color: #F1F5F9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    filter: none;
}
.bin-head { display: flex; align-items: baseline; justify-content: space-between; }
.bin-title { font-size: 24px; font-weight: 800; color: #0F172A; letter-spacing: -0.02em; margin: 0; }
.bin-tag {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--brand-green);
    background: rgba(22, 163, 74, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
}
.bin-blurb { margin: 0; color: #475569; font-size: 15px; }
.bin-meta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px;
    font-size: 14px; color: #475569;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
    margin: 0;
}
.bin-meta dt { font-weight: 500; color: #64748B; }
.bin-meta dd {
    margin: 0; color: #0F172A; font-weight: 700;
    font-variant-numeric: tabular-nums; text-align: right;
}
.bin-cta {
    background: #000000; color: #FFFFFF;
    border-radius: 8px; padding: 12px 16px;
    font-weight: 700; font-size: 15px;
    text-align: center;
    margin-top: 4px;
    transition: background 0.15s ease, transform 0.15s ease;
}
.bin-cta:hover {
    background: var(--brand-green);
    color: #FFFFFF;
}

/* ============ PROCESS ============ */
.band-alt { background: #F8FAFC; border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 48px;
}
.step {
    display: flex; flex-direction: column; gap: 14px;
    padding-top: 24px;
    border-top: 3px solid var(--brand-green);
}
.step .step-num {
    font-size: 13px; font-weight: 700;
    color: var(--brand-green);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
}
.step h4 { font-size: 20px; font-weight: 800; color: #0F172A; letter-spacing: -0.015em; margin: 0; line-height: 1.2; }
.step p { font-size: 14px; color: #475569; margin: 0; }

/* ============ CLOSING CTA (PHOTO BAND) ============ */
.cta-band {
    color: #FFFFFF;
    padding: 140px 0;
    text-align: center;
    background-color: #0A0A0A;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.cta-band h2 {
    color: #FFFFFF !important;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    margin: 0 auto 28px;
    max-width: 18ch;
}
.cta-band .cta-primary {
    justify-self: center;
    font-size: 17px;
    padding: 18px 34px;
    margin: 8px auto 0;
}

/* ============ FOOTER (BLACK BACKGROUND & FIXED DESKTOP LAYOUT) ============ */
footer {
    background: #000000;
    color: #FFFFFF;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 64px 0 40px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
    gap: 40px;
    align-items: start;
}
.foot-col h5 {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: #94A3B8;
    margin: 0 0 16px;
}
.foot-col a { display: block; padding: 6px 0; font-size: 15px; color: #FFFFFF; font-weight: 500; }
.foot-col a:hover { color: var(--brand-green); text-decoration: underline; text-underline-offset: 3px; }
.foot-brand p { color: #A0A0A0; font-size: 14px; max-width: 32ch; margin: 16px 0 0; line-height: 1.5; }
.foot-brand .brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}
.foot-bar {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 13px; color: #94A3B8;
}
.foot-bar span { white-space: nowrap; }
.foot-bar .legal { display: flex; gap: 20px; flex-wrap: nowrap; }
.foot-bar .legal a { color: #94A3B8; white-space: nowrap; }
.foot-bar .legal a:hover { color: var(--brand-green); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; min-height: 0; }
    .hero-left { padding: 48px 24px; max-width: none; margin: 0; }
    .hero-right { height: 380px; }
    .features { grid-template-columns: 1fr; }
    .bins { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    section { padding: 64px 0; }
    .cta-band { padding: 96px 0; }
}
@media (max-width: 520px) {
    .field-row { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr; }
}

/* ============ CONTACT PAGE ============ */
.contact-page {
    background: #FFFFFF;
    padding-bottom: 96px;
}
.contact-hero {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 72px 0;
    margin-bottom: 56px;
}
.contact-hero h1 {
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 900;
    color: #000000;
    letter-spacing: -0.035em;
    margin: 16px 0 16px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.contact-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.contact-card-sub {
    font-size: 15px;
    color: #475569;
    margin: 0 0 32px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
}
.field-textarea {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 16px;
    font: inherit;
    font-size: 15px;
    color: #0F172A;
    outline: 2px solid transparent;
    transition: all 0.15s ease;
    resize: vertical;
}
.field-textarea:focus {
    outline-color: var(--brand-green);
    border-color: var(--brand-green);
    background: #FFFFFF;
}
.contact-submit-btn {
    align-self: flex-start;
    margin-top: 8px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.channel-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.18s ease, border-color 0.18s ease;
}
.channel-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-2px);
}
.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(22, 163, 74, 0.08);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.channel-icon svg { width: 22px; height: 22px; }
.channel-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 4px;
}
.channel-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-green);
    display: block;
    margin-bottom: 4px;
}
.channel-sub {
    font-size: 13px;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
}

.dispatch-banner {
    background: #0F172A;
    color: #FFFFFF;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.dispatch-banner strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}
.dispatch-banner p {
    font-size: 13px;
    color: #94A3B8;
    margin: 2px 0 0;
}

/* FAQ */
.contact-faq-section {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid #E2E8F0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.faq-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 28px;
}
.faq-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 10px;
    line-height: 1.3;
}
.faq-card p {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 24px; }
}
@media (max-width: 520px) {
    .form-row { grid-template-columns: 1fr; }
}
