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

:root {
    --bg: #fafaf7;
    --bg2: #f0efe8;
    --surface: #ffffff;
    --surface2: #f5f4f0;
    --border: rgba(0,0,0,0.07);
    --border2: rgba(0,0,0,0.12);
    --accent: #2d6a4f;
    --accent2: #40916c;
    --accentDim: rgba(45,106,79,0.07);
    --warm: #b85c38;
    --warmDim: rgba(184,92,56,0.06);
    --text: #1a1a1a;
    --text2: rgba(26,26,26,0.65);
    --text3: rgba(26,26,26,0.45);
    --r: 8px; --rl: 12px;
    --font: 'DM Sans', system-ui, sans-serif;
    --mono: 'DM Mono', 'SF Mono', monospace;
}

html { scroll-behavior: smooth; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.accent { color: var(--accent); font-style: normal; font-weight: 800; }
.mono { font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; color: var(--accent); opacity: 0.8; }
.label { font-family: var(--mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; color: var(--text3); text-transform: uppercase; text-align: left; margin-bottom: 0.5rem; }

.anim { animation: slideUp .45s cubic-bezier(.16,1,.3,1); }
@keyframes slideUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

/* ========== HERO ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 2rem 0;
    background: linear-gradient(180deg, #0a1520 0%, #10261c 40%, #162e22 70%, #12201a 100%);
}

/* Night sky */
.hero-sky { position: absolute; inset: 0; }
.stars {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 8% 12%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1.5px 1.5px at 22% 6%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 35% 18%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 48% 8%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 62% 14%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75% 4%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 88% 16%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 55% 22%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 42% 28%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 92% 10%, rgba(255,255,255,0.3), transparent);
    animation: twinkle 5s ease-in-out infinite alternate;
}
.stars2 {
    background-image:
        radial-gradient(1.5px 1.5px at 5% 20%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 18% 32%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 30% 5%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 44% 35%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1.5px 1.5px at 58% 3%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 70% 28%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 82% 8%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 95% 20%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 38% 15%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 66% 38%, rgba(255,255,255,0.4), transparent);
    animation: twinkle 6s ease-in-out infinite alternate-reverse;
}
@keyframes twinkle { from{opacity:.4} to{opacity:1} }

.moon {
    position: absolute; top: 8%; right: 15%;
    width: 40px; height: 40px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffeebb, #ddc580);
    box-shadow: 0 0 30px rgba(255,238,187,0.3), 0 0 80px rgba(255,238,187,0.1);
}

.shooting-star {
    position: absolute;
    width: 2px; height: 2px; background: white; border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(255,255,255,0.3);
    opacity: 0;
}
.ss1 { top: 10%; left: 20%; animation: shoot1 7s linear infinite 2s; }
.ss2 { top: 18%; left: 55%; animation: shoot2 9s linear infinite 5s; }
.ss3 { top: 6%; left: 75%; animation: shoot3 11s linear infinite 8s; }
@keyframes shoot1 {
    0% { opacity:0; transform:translate(0,0) rotate(-30deg); }
    1.5% { opacity:1; }
    5% { opacity:1; transform:translate(140px,70px) rotate(-30deg); }
    7% { opacity:0; transform:translate(180px,90px) rotate(-30deg); }
    100% { opacity:0; }
}
@keyframes shoot2 {
    0% { opacity:0; transform:translate(0,0) rotate(-40deg); }
    1% { opacity:1; }
    4% { opacity:1; transform:translate(100px,90px) rotate(-40deg); }
    6% { opacity:0; transform:translate(130px,115px) rotate(-40deg); }
    100% { opacity:0; }
}
@keyframes shoot3 {
    0% { opacity:0; transform:translate(0,0) rotate(-25deg); }
    2% { opacity:1; }
    6% { opacity:1; transform:translate(160px,60px) rotate(-25deg); }
    8% { opacity:0; transform:translate(200px,80px) rotate(-25deg); }
    100% { opacity:0; }
}

/* Landscape */
.landscape {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 400px; z-index: 2;
}
/* CSS Campfire */
.campfire-wrap {
    position: absolute;
    bottom: 26%; left: 55.5%;
    width: 30px; height: 50px;
    z-index: 3;
}
.fire-glow {
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 60px;
    background: radial-gradient(ellipse, rgba(255,140,0,0.25), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite alternate;
}
@keyframes glowPulse { 0%{opacity:.6;transform:translateX(-50%) scale(1)} 100%{opacity:1;transform:translateX(-50%) scale(1.1)} }

.fire-particle {
    position: absolute;
    bottom: 0; left: 50%;
    width: 10px; height: 10px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(1px);
    transform-origin: bottom center;
}
.p1 { width: 14px; height: 28px; background: #ff6600; margin-left: -7px; animation: burn 1.2s ease-in-out infinite alternate; }
.p2 { width: 10px; height: 22px; background: #ff9900; margin-left: -5px; left: 45%; animation: burn 0.9s ease-in-out infinite alternate-reverse; }
.p3 { width: 12px; height: 24px; background: #ffaa22; margin-left: -6px; left: 55%; animation: burn 1.1s ease-in-out infinite alternate 0.3s; }
.p4 { width: 8px; height: 18px; background: #ffcc44; margin-left: -4px; animation: burn 0.8s ease-in-out infinite alternate-reverse 0.2s; }
.p5 { width: 6px; height: 14px; background: #ffe880; margin-left: -3px; animation: burn 1s ease-in-out infinite alternate 0.5s; filter: blur(0.5px); }

@keyframes burn {
    0% { transform: scaleX(1) scaleY(1) rotate(-1deg); opacity: 0.9; }
    50% { transform: scaleX(0.92) scaleY(1.06) rotate(1deg); opacity: 1; }
    100% { transform: scaleX(1.04) scaleY(0.96) rotate(-0.5deg); opacity: 0.85; }
}

.fire-base {
    position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
    width: 24px; height: 6px;
    background: #3a2510; border-radius: 3px;
}

/* Fireflies */
.firefly {
    position: absolute; z-index: 3;
    width: 3px; height: 3px; border-radius: 50%;
    background: rgba(255,220,80,0.8);
    box-shadow: 0 0 6px 2px rgba(255,200,50,0.4), 0 0 14px 5px rgba(255,200,50,0.12);
}
.ff1  { bottom: 32%; left: 10%; animation: ffa 7s ease-in-out infinite; }
.ff2  { bottom: 38%; left: 25%; animation: ffb 9s ease-in-out infinite -2s; }
.ff3  { bottom: 30%; left: 38%; animation: ffa 8s ease-in-out infinite -4s; }
.ff4  { bottom: 36%; left: 50%; animation: ffb 6.5s ease-in-out infinite -1s; }
.ff5  { bottom: 28%; left: 62%; animation: ffa 10s ease-in-out infinite -5s; }
.ff6  { bottom: 34%; left: 75%; animation: ffb 7.5s ease-in-out infinite -3s; }
.ff7  { bottom: 30%; left: 88%; animation: ffa 8.5s ease-in-out infinite -6s; }
.ff8  { bottom: 40%; left: 15%; animation: ffb 11s ease-in-out infinite -7s; }
.ff9  { bottom: 26%; left: 42%; animation: ffa 6s ease-in-out infinite -1.5s; }
.ff10 { bottom: 34%; left: 58%; animation: ffb 9.5s ease-in-out infinite -4.5s; }
.ff11 { bottom: 28%; left: 82%; animation: ffa 7s ease-in-out infinite -8s; }
.ff12 { bottom: 36%; left: 5%; animation: ffb 8s ease-in-out infinite -3.5s; }
@keyframes ffa {
    0%,100% { transform:translate(0,0); opacity:.15; }
    20% { transform:translate(10px,-20px); opacity:.8; }
    40% { transform:translate(-6px,-32px); opacity:.3; }
    60% { transform:translate(14px,-18px); opacity:1; }
    80% { transform:translate(-4px,-10px); opacity:.5; }
}
@keyframes ffb {
    0%,100% { transform:translate(0,0); opacity:.2; }
    15% { transform:translate(-12px,-15px); opacity:.9; }
    35% { transform:translate(8px,-28px); opacity:.35; }
    55% { transform:translate(-10px,-22px); opacity:.85; }
    75% { transform:translate(6px,-8px); opacity:.4; }
}

.hero-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(transparent, var(--bg));
    z-index: 4;
}

.hero-layout {
    position: relative; z-index: 5;
    max-width: 1060px; width: 100%; margin: 0 auto;
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 5rem;
    align-items: center;
}

.hero-left { max-width: 520px; }

.hero-left h1 {
    font-size: 3.4rem; font-weight: 800;
    letter-spacing: -0.035em; line-height: 1.06;
    margin-bottom: 1.5rem;
    color: #eee8df;
}

.hero-p {
    font-size: 1.05rem; color: rgba(238,232,223,0.6);
    line-height: 1.75; margin-bottom: 2.5rem;
    max-width: 420px;
}

.hero-section .accent { color: #86efac; font-style: italic; }

.cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px;
    background: var(--accent);
    color: #fff; font-weight: 600; font-size: 0.88rem;
    border-radius: 8px; border: none;
    text-decoration: none; cursor: pointer;
    transition: background .2s;
    font-family: var(--font);
}
.hero-section .cta-btn { background: #86efac; color: #000; }
.hero-section .cta-btn:hover { background: #a7f3c9; }
.hero-section .cta-btn svg { stroke: #000; }
.cta-btn:hover { background: var(--accent2); }
.cta-btn svg { stroke: #fff; }
.cta-btn.full { width: 100%; justify-content: center; }

/* ========== PHONE MOCKUP ========== */
.phone {
    width: 270px; margin: 0 auto;
    background: #111; border-radius: 32px;
    border: 3px solid rgba(255,255,255,0.1);
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}
.phone-notch {
    width: 90px; height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin: 4px auto 12px;
}
.phone-screen {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 16px 12px;
    min-height: 340px;
}
.sms-header {
    text-align: center; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 14px;
}
.sms-number { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.3); }
.sms-label { font-size: 0.62rem; color: rgba(255,255,255,0.3); }
.sms-thread { display: flex; flex-direction: column; gap: 8px; }

.sms {
    max-width: 85%; padding: 10px 12px;
    border-radius: 14px; font-size: 0.7rem; line-height: 1.5;
    position: relative;
}
.sms p { margin: 0; }
.sms-time { display: block; font-size: 0.56rem; color: rgba(255,255,255,0.25); margin-top: 3px; }
.incoming {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.outgoing {
    background: #4ade80;
    color: #000;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.outgoing .sms-time { color: rgba(0,0,0,0.4); }
.alert-sms {
    border: 1px solid rgba(74,222,128,0.2);
    background: rgba(74,222,128,0.08);
    animation: alertPop 0.5s ease 2s both;
}
@keyframes alertPop { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.sms-link { color: #86efac; font-size: 0.7rem; word-break: break-all; text-decoration: none; }
.sms-new { color: #86efac !important; font-weight: 600; }

/* ========== MARQUEE — hidden ========== */
.marquee-wrap { display: none; }

/* ========== HOW IT WORKS ========== */
.how-section {
    padding: 6rem 2rem 7rem;
}
.how-wrap { max-width: 880px; margin: 0 auto; }
.how-wrap h2 {
    font-size: 2rem; font-weight: 800; letter-spacing: -0.03em;
    text-align: left; margin-bottom: 0.4rem;
}
.how-sub { text-align: left; color: var(--text3); font-size: 0.95rem; margin-bottom: 3rem; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.how-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--rl); padding: 2rem 1.75rem;
    transition: box-shadow .25s, border-color .25s;
}
.how-card:hover { border-color: var(--border2); box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.how-icon {
    width: 44px; height: 44px; margin-bottom: 1.25rem;
    background: var(--warmDim);
    border: 1px solid rgba(184,92,56,0.1);
    color: var(--warm);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.how-icon svg { width: 22px; height: 22px; }
.how-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.how-card p { font-size: 0.84rem; color: var(--text2); line-height: 1.65; }

/* ========== APP ========== */
.app-section {
    padding: 3rem 2rem 6rem;
}
.app-wrap { max-width: 640px; margin: 0 auto; }

.app-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 1.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.step-row {
    font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--text3);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.step-row .mono { color: var(--accent); }

/* ========== NEARBY FILTERS ========== */
.nb-filters { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.slider-row { display: flex; align-items: center; gap: 0.75rem; }
.slider-row label { font-size: 0.7rem; font-weight: 600; color: var(--text3); min-width: 70px; flex-shrink: 0; }
.slider-wrap { flex: 1; display: flex; align-items: center; gap: 0.5rem; }
.slider-wrap input[type="range"] {
    flex: 1; height: 3px; -webkit-appearance: none; appearance: none;
    background: var(--border2); border-radius: 2px; outline: none;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 16px; height: 16px;
    background: var(--accent); border-radius: 50%; cursor: pointer;
    border: 2px solid var(--surface);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.slider-wrap input[type="range"]::-moz-range-thumb {
    width: 16px; height: 16px;
    background: var(--accent); border-radius: 50%; cursor: pointer;
    border: 2px solid var(--surface);
}
.slider-val {
    font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
    color: var(--text); min-width: 55px; text-align: right;
}

.type-pills { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.type-pill {
    padding: 3px 9px; border-radius: 100px;
    border: 1px solid var(--border2); background: var(--bg);
    font-family: var(--font); font-size: 0.62rem; font-weight: 600;
    color: var(--text3); cursor: pointer; transition: .15s;
}
.type-pill:hover { border-color: var(--accent); color: var(--text2); }
.type-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.nb-meta { display: flex; align-items: center; gap: 4px; flex-shrink: 0; margin-left: auto; }
.nb-type { font-family: var(--mono); font-size: 0.52rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.nb-fee { font-family: var(--mono); font-size: 0.58rem; font-weight: 500; color: var(--accent); background: var(--accentDim); padding: 1px 5px; border-radius: 3px; }
.nb-free { color: var(--warm); background: var(--warmDim); }

/* ========== SEARCH ========== */
.search-box { position: relative; }
.s-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 17px; height: 17px; color: var(--text3); pointer-events: none;
}
.search-box input {
    width: 100%; padding: 0.85rem 1rem 0.85rem 2.75rem;
    background: var(--bg); border: 1px solid var(--border2);
    border-radius: var(--r); font-size: 0.92rem;
    font-family: var(--font); color: var(--text); transition: .2s;
}
.search-box input:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accentDim);
}
.search-box input::placeholder { color: var(--text3); }
.spinner {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    width: 15px; height: 15px;
    border: 2px solid var(--border2); border-top-color: var(--accent);
    border-radius: 50%; animation: spin .5s linear infinite;
}
@keyframes spin { to{transform:translateY(-50%) rotate(360deg)} }

.results-area {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.75rem; margin-top: 1rem; max-height: 400px;
}
.results-list {
    overflow-y: auto; max-height: 400px;
    display: flex; flex-direction: column; gap: 2px;
    scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.08) transparent;
}
.rcard {
    display: flex; align-items: center; gap: 10px;
    padding: 8px; border-radius: 8px;
    cursor: pointer; transition: .15s;
}
.rcard:hover { background: var(--surface2); }
.rcard img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.rph { width: 44px; height: 44px; border-radius: 6px; background: var(--bg2); flex-shrink: 0; }
.rtxt { display: flex; flex-direction: column; min-width: 0; gap: 1px; }
.rtxt strong { font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rtxt span { font-size: 0.68rem; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.empty { padding: 2rem; text-align: center; color: var(--text3); }

.map-wrap { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); min-height: 300px; }
#map { width: 100%; height: 100%; min-height: 300px; }

/* ========== DETAIL ========== */
.detail-card { padding: 0; overflow: hidden; position: relative; }
.back-pill {
    position: absolute; top: 12px; left: 12px; z-index: 10;
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.85); color: var(--text);
    border: 1px solid var(--border2);
    border-radius: 100px; padding: 5px 14px 5px 10px;
    font-size: 0.72rem; font-weight: 600; cursor: pointer;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: .2s;
}
.back-pill:hover { background: #fff; }

.detail-hero { position: relative; height: 220px; overflow: hidden; background: var(--bg2); }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-grad { position: absolute; inset: 0; background: linear-gradient(0deg, var(--surface) 0%, transparent 50%); }
.detail-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 1; }
.detail-text h2 { font-size: 1.35rem; font-weight: 800; text-shadow: 0 1px 6px rgba(0,0,0,0.15); }
.detail-text p { font-size: 0.82rem; color: var(--text2); margin-top: 2px; }

.detail-body { display: grid; grid-template-columns: 1fr 1fr; min-height: 260px; }
.dm-col { min-height: 260px; }
#detail-map { width: 100%; height: 100%; min-height: 260px; }

.nb-col { padding: 1.25rem; overflow-y: auto; max-height: 360px; border-left: 1px solid var(--border); }
.nb-header {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 0.62rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--text3);
    text-transform: uppercase; margin-bottom: 0.75rem;
}
.nb-list { display: flex; flex-direction: column; gap: 2px; }
.nb-empty { color: var(--text3); font-size: 0.8rem; }
.nb-card {
    display: flex; align-items: center; gap: 8px;
    padding: 6px; border-radius: 8px; cursor: pointer; transition: .15s;
}
.nb-card:hover { background: var(--surface2); }
.nb-card img { width: 38px; height: 38px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.nb-txt { min-width: 0; }
.nb-txt strong { display: block; font-size: 0.72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nb-txt span { font-size: 0.62rem; color: var(--text3); }
.nb-pk { display: inline-block; font-size: 0.56rem; font-weight: 600; color: var(--accent); background: var(--accentDim); padding: 1px 5px; border-radius: 3px; margin-top: 1px; }

/* ========== CALENDAR PICKER ========== */
.date-hint { font-size: 0.85rem; color: var(--text2); margin-bottom: 1.25rem; }
.cal-picker { max-width: 360px; }

.cal-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.cal-tab {
    flex: 1; padding: 0.7rem 1rem;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer; text-align: left;
    transition: .2s;
    font-family: var(--font);
}
.cal-tab:hover { border-color: var(--border2); }
.cal-tab.active { border-color: var(--accent); background: var(--accentDim); }
.cal-tab-label {
    display: block; font-size: 0.65rem; font-weight: 600;
    color: var(--text3); text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 2px;
}
.cal-tab-date { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.cal-tab.active .cal-tab-date { color: var(--accent); }

.cal-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.75rem;
}
.cal-month-title { font-size: 0.95rem; font-weight: 700; }
.cal-arrow {
    width: 34px; height: 34px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 8px; color: var(--text);
    font-size: 0.9rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: .2s; font-family: var(--font);
}
.cal-arrow:hover { background: var(--surface2); border-color: var(--border2); }

.cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.cal-dow {
    text-align: center; font-size: 0.65rem; font-weight: 600;
    color: var(--text3); padding: 0.4rem 0;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.cal-cell {
    text-align: center; padding: 0.55rem 0;
    font-size: 0.85rem; font-weight: 500;
    border-radius: 6px; cursor: pointer;
    transition: .12s; color: var(--text);
    position: relative;
}
.cal-cell:hover:not(.disabled):not(.empty) { background: var(--surface2); }
.cal-cell.empty { cursor: default; }
.cal-cell.disabled { color: var(--text3); opacity: 0.4; cursor: default; }
.cal-cell.sel-start, .cal-cell.sel-end, .cal-cell.sel-both {
    background: var(--accent); color: #fff; font-weight: 700;
    border-radius: 6px;
}
.cal-cell.sel-start { border-radius: 6px 3px 3px 6px; }
.cal-cell.sel-end { border-radius: 3px 6px 6px 3px; }
.cal-cell.sel-both { border-radius: 6px; }
.cal-cell.in-range {
    background: var(--accentDim); color: var(--accent);
    border-radius: 3px;
}

/* ========== FORM ========== */
.field label { display: block; font-weight: 600; font-size: 0.78rem; color: var(--text2); margin-bottom: 4px; }
.field input, form input[type="tel"] {
    width: 100%; padding: 0.75rem;
    background: var(--bg); border: 1px solid var(--border2);
    border-radius: 8px; font-size: 0.92rem;
    font-family: var(--font); color: var(--text); transition: .2s;
}
.field input:focus, form input[type="tel"]:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accentDim);
}
.consent { font-size: 0.65rem; color: var(--text3); margin: 0.6rem 0; line-height: 1.55; }

/* ========== BUTTONS ========== */
.outline-btn {
    padding: 10px 22px;
    background: transparent; color: var(--accent);
    border: 1px solid var(--border2);
    border-radius: 8px; font-size: 0.84rem; font-weight: 600;
    font-family: var(--font); cursor: pointer; transition: .2s;
}
.outline-btn:hover { background: var(--accentDim); border-color: var(--accent); }
.btn-spin {
    width: 15px; height: 15px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin .5s linear infinite; margin-right: 6px;
}

/* ========== SUCCESS ========== */
.success-card { text-align: center; padding: 3rem 2rem; }
.success-check {
    width: 48px; height: 48px; background: var(--accent); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    animation: pop .35s cubic-bezier(.16,1,.3,1);
}
@keyframes pop { from{transform:scale(0)} 60%{transform:scale(1.08)} to{transform:scale(1)} }
.success-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.4rem; }
.success-card p { color: var(--text2); font-size: 0.88rem; }
.muted { font-size: 0.8rem; color: var(--text3); margin-bottom: 1.5rem !important; }

/* ========== TOAST ========== */
.toast {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    background: #fff; color: #c0392b;
    border: 1px solid rgba(192,57,43,0.2);
    padding: 10px 24px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999; animation: toast .25s ease;
}
@keyframes toast { from{opacity:0;transform:translate(-50%,8px)} to{opacity:1;transform:translate(-50%,0)} }

/* ========== ABOUT ========== */
.about-section {
    padding: 6rem 2rem;
    border-top: 1px solid var(--border);
}
.about-wrap {
    max-width: 880px; margin: 0 auto 4rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: start;
}
.about-col h2 {
    font-size: 1.6rem; font-weight: 800; letter-spacing: -0.025em;
    line-height: 1.25;
}
.about-col p {
    font-size: 0.92rem; color: var(--text2); line-height: 1.7;
    margin-bottom: 1rem;
}
.about-col p:last-child { margin-bottom: 0; }
.about-details {
    max-width: 880px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.detail-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 1.5rem;
}
.detail-item strong {
    display: block; font-size: 1.4rem; font-weight: 800;
    color: var(--accent); margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.detail-item span { font-size: 0.8rem; color: var(--text3); }

/* ========== FAQ ========== */
.faq-section {
    padding: 6rem 2rem;
}
.faq-wrap {
    max-width: 640px; margin: 0 auto;
}
.faq-wrap h2 {
    font-size: 1.6rem; font-weight: 800; letter-spacing: -0.025em;
    margin-bottom: 2rem;
}
.faq-list {
    display: flex; flex-direction: column;
}
.faq-item {
    border-top: 1px solid var(--border);
}
.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.15rem 0;
    font-size: 0.92rem; font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--text);
    transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.2rem; font-weight: 400;
    color: var(--text3);
    transition: transform .2s;
    flex-shrink: 0; margin-left: 1rem;
}
.faq-item[open] summary::after {
    content: '\2212';
}
.faq-item summary:hover { color: var(--accent); }
.faq-body {
    padding: 0 0 1.25rem;
}
.faq-body p {
    font-size: 0.88rem; color: var(--text2);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-details { grid-template-columns: repeat(2, 1fr); }
}

/* ========== FOOTER ========== */
footer {
    padding: 4rem 2rem 2.5rem;
    border-top: 1px solid var(--border);
}
.footer-wrap {
    max-width: 880px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 2rem;
}
.footer-brand { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.footer-sub { font-size: 0.78rem; color: var(--text3); }
.footer-right { display: flex; gap: 1.5rem; }
.footer-right a { color: var(--text3); text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: .2s; }
.footer-right a:hover { color: var(--text); }
.footer-bottom { max-width: 880px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.65rem; color: var(--text3); }
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero-left { max-width: none; }
    .hero-left h1 { font-size: 2.4rem; }
    .hero-p { max-width: 400px; margin-left: auto; margin-right: auto; }
    .hero-section .cta-btn { justify-content: center; }
    .phone { width: 230px; }
    .how-grid { grid-template-columns: 1fr; }
    .results-area { grid-template-columns: 1fr; max-height: none; }
    .results-list { max-height: 200px; }
    .map-wrap, #map { min-height: 200px; }
    .detail-hero { height: 170px; }
    .detail-body { grid-template-columns: 1fr; }
    .nb-col { border-left: none; border-top: 1px solid var(--border); }
    .cal-picker { max-width: 100%; }
    .footer-wrap { flex-direction: column; gap: 1rem; }
}
