:root {
    --blue: #1B88D4;
    --blue-dark: #0D5A8F;
    --gold: #FDB927;
    --bg: #F5F9FC;
    --text: #1e2d3d;
    --muted: #5a7184;
    --border: #dce8f0;
    --white: #ffffff;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed; top:0; width:100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    z-index: 1000; padding: 0.85rem 0;
}
.nav-inner {
    max-width:1200px; margin:0 auto;
    padding:0 2rem;
    display:flex; justify-content:space-between; align-items:center;
}
.logo-row { display:flex; align-items:center; gap:0.75rem; }
.logo-img { width:42px; height:42px; border-radius:10px; }
.logo-name { font-size:1.4rem; font-weight:800; color:var(--blue); letter-spacing:-0.02em; }
.lang-btn {
    background:var(--blue); color:#fff; border:none;
    padding:0.45rem 1.1rem; border-radius:20px;
    font-weight:600; font-size:0.88rem; cursor:pointer;
    transition:background 0.2s, transform 0.2s;
}
.lang-btn:hover { background:var(--blue-dark); transform:translateY(-1px); }
.interest-btn {
    background:var(--gold); color:#1e2d3d; border:none;
    padding:0.45rem 1.1rem; border-radius:20px;
    font-weight:700; font-size:0.88rem; cursor:pointer;
    transition:background 0.2s, transform 0.2s;
}
.interest-btn:hover { background:#e5a820; transform:translateY(-1px); }

.hero-cta {
    display: inline-block;
    background: var(--gold);
    color: #1e2d3d;
    border: none;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    margin-bottom: 2rem;
    box-shadow: 0 6px 28px rgba(249,185,38,0.45);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}
.hero-cta:hover { background:#e5a820; transform:translateY(-2px); box-shadow:0 10px 36px rgba(249,185,38,0.55); }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #0d1f30 100%);
    padding: 80px 2rem;
    text-align: center;
    color: #fff;
}
.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.75;
    margin-bottom: 2rem;
}

/* ── INTEREST MODAL ── */
.interest-overlay {
    display:none; position:fixed; inset:0;
    background:rgba(0,0,0,0.55); backdrop-filter:blur(4px);
    z-index:2000; align-items:center; justify-content:center; padding:1rem;
}
.interest-overlay.open { display:flex; }
.interest-modal {
    background:#fff; border-radius:20px;
    width:100%; max-width:480px; max-height:90vh; overflow-y:auto;
    box-shadow:0 24px 80px rgba(0,0,0,0.25);
}
.interest-head {
    padding:1.5rem 1.5rem 1rem;
    display:flex; justify-content:space-between; align-items:flex-start;
    border-bottom:1px solid var(--border);
}
.interest-head h2 { font-size:1.15rem; font-weight:800; color:var(--text); letter-spacing:-0.02em; }
.interest-close {
    background:none; border:none; font-size:1.3rem;
    cursor:pointer; color:var(--muted); line-height:1; padding:0;
}
.interest-tabs { display:flex; gap:0.5rem; padding:1.1rem 1.5rem; border-bottom:1px solid var(--border); }
.itab {
    flex:1; padding:0.55rem 1rem; border-radius:10px;
    border:1.5px solid var(--border); background:none;
    font-size:0.88rem; font-weight:600; color:var(--muted);
    cursor:pointer; transition:all 0.2s; font-family:inherit;
}
.itab.active { background:var(--blue); border-color:var(--blue); color:#fff; }
.interest-form {
    padding:1.25rem 1.5rem 1.5rem;
    display:flex; flex-direction:column; gap:0.9rem;
}
.ifield { display:flex; flex-direction:column; gap:0.3rem; }
.ifield label { font-size:0.8rem; font-weight:600; color:var(--text); }
.phone-row { display:flex; gap:0.5rem; }
.phone-row .phone-code { width:110px; flex-shrink:0; }
.phone-row .phone-number { flex:1; }
.ifield input, .ifield select, .ifield textarea {
    padding:0.6rem 0.85rem;
    border:1.5px solid var(--border); border-radius:10px;
    font-size:0.92rem; font-family:inherit; color:var(--text);
    background:var(--bg); transition:border-color 0.2s; outline:none;
}
.ifield input:focus, .ifield select:focus, .ifield textarea:focus {
    border-color:var(--blue); background:#fff;
}
.ifield textarea { resize:vertical; min-height:75px; }
.mun-wrap { position:relative; }
.mun-suggestions {
    display:none; position:absolute; top:100%; left:0; right:0; z-index:100;
    background:#fff; border:1.5px solid var(--blue); border-top:none;
    border-radius:0 0 10px 10px; max-height:200px; overflow-y:auto;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.mun-suggestion-item {
    padding:0.55rem 0.85rem; font-size:0.88rem; cursor:pointer;
    border-bottom:1px solid var(--border); color:var(--text);
}
.mun-suggestion-item:last-child { border-bottom:none; }
.mun-suggestion-item:hover { background:var(--blue); color:#fff; }
.geo-autofill { color:#888; font-size:0.78rem; margin-top:0.15rem; }
.isubmit {
    background:var(--blue); color:#fff; border:none;
    padding:0.75rem; border-radius:10px;
    font-size:0.95rem; font-weight:700; font-family:inherit;
    cursor:pointer; transition:background 0.2s; margin-top:0.25rem;
}
.isubmit:hover { background:var(--blue-dark); }
.isubmit:disabled { opacity:0.6; cursor:not-allowed; }
.form-error { color:#c0392b; font-size:0.82rem; margin-top:0.25rem; }
.geo-load-error { color:#c0392b; font-size:0.78rem; margin-top:0.25rem; }
.interest-success {
    padding:2.5rem 1.5rem; text-align:center; display:none;
}
.interest-success .s-icon { font-size:3rem; display:block; margin-bottom:1rem; }
.interest-success h3 { font-size:1.2rem; font-weight:800; color:var(--text); margin-bottom:0.5rem; }
.interest-success p { color:var(--muted); font-size:0.95rem; line-height:1.65; }

/* ── HERO ── */
.hero {
    background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 60%, #071f33 100%);
    color:#fff; padding: 150px 2rem 90px;
    text-align:center; position:relative; overflow:hidden;
}
.hero::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at 70% 30%, rgba(253,185,39,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.hero-logo {
    width:90px; height:90px; border-radius:22px;
    box-shadow:0 12px 40px rgba(0,0,0,0.3);
    margin:0 auto 1.5rem; display:block;
}
.hero h1 {
    font-size:clamp(1.8rem,4vw,3.2rem); font-weight:800;
    line-height:1.15; max-width:820px; margin:0 auto 1.2rem;
    letter-spacing:-0.02em;
}
.hero-sub {
    font-size:1.1rem; opacity:0.85; margin-bottom:0.5rem; font-weight:500;
}
.hero-tag {
    font-size:0.95rem; opacity:0.7; font-style:italic; margin-bottom:2.5rem;
}

/* Store badges */
.store-badges {
    display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2rem;
}
.store-badge {
    display:flex; align-items:center; gap:0.6rem;
    background:rgba(255,255,255,0.12);
    border:1.5px solid rgba(255,255,255,0.25);
    border-radius:12px; padding:0.65rem 1.4rem;
    color:#fff; text-decoration:none;
    transition:background 0.2s, transform 0.2s;
    backdrop-filter:blur(8px);
}
.store-badge:hover { background:rgba(255,255,255,0.2); transform:translateY(-2px); }
.store-badge svg { width:24px; height:24px; flex-shrink:0; }
.store-badge-text { text-align:left; }
.store-badge-text small { display:block; font-size:0.68rem; opacity:0.75; text-transform:uppercase; letter-spacing:0.05em; }
.store-badge-text strong { display:block; font-size:1rem; font-weight:700; }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.stat-item {
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-label {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── SECTIONS ── */
section { padding:80px 2rem; }
.container { max-width:1200px; margin:0 auto; }
.section-label {
    font-size:0.78rem; font-weight:700; letter-spacing:0.1em;
    text-transform:uppercase; color:var(--blue);
    margin-bottom:0.75rem; display:block;
}
.section-title {
    font-size:clamp(1.8rem,3vw,2.6rem); font-weight:800;
    color:var(--text); letter-spacing:-0.02em; margin-bottom:1rem;
}
.section-sub {
    font-size:1.05rem; color:var(--muted); max-width:580px;
}
.alt-bg { background:var(--bg); }

/* ── PROBLEM + SOLUTION SPLIT ── */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}
.split-col {
    border-radius: 16px;
    padding: 2rem;
}
.split-col.problems {
    background: #fff8f2;
    border: 1px solid #f0d9c4;
}
.split-col.solutions {
    background: #f0f7ff;
    border: 1px solid #c4dcf0;
}
.split-col-label {
    display: block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.problems .split-col-label { color: #b85c2a; }
.solutions .split-col-label { color: var(--blue); }
.split-item {
    display: flex; gap: 0.9rem; align-items: flex-start;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.split-item:last-child { border-bottom: none; padding-bottom: 0; }
.split-marker {
    width: 26px; height: 26px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 800; flex-shrink: 0;
    margin-top: 0.1rem;
}
.problems .split-marker { background: rgba(184,92,42,0.12); color: #b85c2a; }
.solutions .split-marker { background: rgba(27,136,212,0.12); color: var(--blue); }
.split-item h3 { font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.split-item p { font-size: 0.87rem; color: var(--muted); line-height: 1.55; }

/* ── FEATURES ── */
.features-grid {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:1.5rem; margin-top:3rem;
}
.feature-card {
    background:#fff; padding:1.75rem;
    border-radius:16px; border:1px solid var(--border);
    display:flex; gap:1rem; align-items:flex-start;
    transition:transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.08); }
.feature-icon-box {
    width:44px; height:44px; border-radius:11px;
    background:linear-gradient(135deg,var(--blue),var(--blue-dark));
    display:flex; align-items:center; justify-content:center;
    font-size:1.3rem; flex-shrink:0;
}
.feature-card h3 { font-size:1rem; font-weight:700; color:var(--text); margin-bottom:0.3rem; }
.feature-card p { font-size:0.88rem; color:var(--muted); line-height:1.55; }
.bridge-text {
    text-align:center; margin-top:2.5rem;
    font-size:1.1rem; color:var(--blue); font-weight:700;
    padding:1.2rem 2rem; background:rgba(27,136,212,0.07);
    border-radius:12px; border:1px solid rgba(27,136,212,0.15);
}

/* ── FEATURE SHOWCASES ── */
.showcase-section { padding: 80px 2rem; }
.showcase-row {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.showcase-text h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}
.showcase-text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
}
.showcase-shot {
    display: flex;
    justify-content: center;
}
.showcase-phone {
    height: 500px;
    width: auto;
    max-width: 100%;
    display: block;
}
.showcase-row.reverse .showcase-shot { order: -1; }

/* ── 3 STEPS ── */
.steps-section { padding: 80px 2rem; text-align: center; }
.steps-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 0.9rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.step-phone {
    width: 240px;
    max-width: 100%;
    display: block;
}
.step-label {
    font-size: 1rem; font-weight: 700;
    color: var(--text);
}
@media (max-width: 640px) {
    .steps-grid { gap: 2rem; }
    .step-phone { width: 180px; }
}

/* ── ADMIN PANEL ── */
.admin-section {
    background: linear-gradient(135deg, #071f33 0%, var(--blue-dark) 60%, #0a2744 100%);
    padding: 80px 2rem;
}
.admin-section .section-label { color: var(--gold); }
.admin-section .section-title { color: #fff; }
.admin-section .section-sub { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }
.admin-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}
.admin-feature {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
}
.admin-feature span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.admin-feature span:last-child { min-width: 0; flex: 1; }
.admin-shots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.admin-shot-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.08);
}
.admin-shot-bar {
    background: #1a2a3a;
    padding: 0.55rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.admin-shot-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.admin-shot-wrap img { width: 100%; display: block; }

/* ── TIMETABLE SECTION ── */
.timetable-section {
    background: linear-gradient(160deg, #f0f7ff 0%, #e6f2ff 40%, #fafcff 100%);
    padding: 90px 2rem;
    position: relative;
    overflow: hidden;
}
.timetable-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(27,136,212,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.timetable-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.timetable-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-size: 0.78rem; font-weight: 700;
    padding: 0.38rem 1.1rem;
    border-radius: 20px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.timetable-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin-bottom: 1rem;
}
.timetable-headline em {
    color: var(--blue);
    font-style: normal;
}
.timetable-subtext {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}
.timetable-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tt-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(27,136,212,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.tt-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(27,136,212,0.13);
}
.tt-card-icon {
    font-size: 1.3rem;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(27,136,212,0.12), rgba(27,136,212,0.05));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tt-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.tt-card span {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
}
.timetable-shot {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    gap: 0;
}
.timetable-shot::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, rgba(27,136,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.timetable-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 480px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(27,136,212,0.22), 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(27,136,212,0.15);
}
.timetable-phone {
    position: relative;
    z-index: 2;
    height: 420px;
    width: auto;
    max-width: 100%;
    display: block;
    margin-left: -40px;
    align-self: flex-end;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}

/* ── BENEFITS ── */
.benefits-section {
    background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);
    color:#fff;
}
.benefits-section .section-title { color:#fff; }
.benefits-section .section-label { color:var(--gold); }
.benefits-grid {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:1.5rem; margin-top:3rem;
}
.benefit-card {
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:16px; padding:2rem;
    backdrop-filter:blur(8px);
}
.benefit-card h3 { font-size:1.1rem; font-weight:700; color:var(--gold); margin-bottom:0.6rem; }
.benefit-card p { font-size:0.93rem; opacity:0.88; line-height:1.65; }

/* ── CONTACT ── */
.contact-section { text-align:center; }
.contact-email {
    display:inline-block; margin-top:1.5rem;
    font-size:1.15rem; font-weight:600;
    color:var(--blue); text-decoration:none;
}
.contact-email:hover { text-decoration:underline; }

/* ── FOOTER ── */
footer {
    background:var(--text); color:#fff;
    padding:2rem; text-align:center;
}
footer p { opacity:0.65; font-size:0.88rem; line-height:1.8; }
footer a { color:var(--gold); text-decoration:none; }

/* ── RESPONSIVE ── */
@media(max-width:768px){
    .hero { padding:130px 1.5rem 70px; }
    section { padding:60px 1.5rem; }
    .split-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .showcase-row { grid-template-columns: 1fr; gap: 2rem; }
    .showcase-row.reverse .showcase-shot { order: 0; }
    .showcase-phone { height: 380px; width: auto; }
    .timetable-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .timetable-shot { order: -1; }
    .timetable-shot::before { display: none; }
    .timetable-subtext { max-width: 100%; }
    .timetable-img { max-height: 320px; }
    .timetable-phone { height: 280px; margin-left: -28px; }
    .admin-features { grid-template-columns: 1fr; }
    .admin-shots { grid-template-columns: 1fr; }
    /* Stats bar: tighter padding, smaller text */
    .stat-item { padding: 1.25rem 0.5rem; }
    .stat-label { font-size: 0.72rem; }
    /* Nav logo smaller on mobile */
    .logo-name { font-size: 1.1rem; }
}
