/* ============================================================
   TWINMOTION — PREMIUM DARK THEME v1
   Glassmorphism · Neon Accents · Luxury Feel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────── */
:root {
    --bg:           #13131f;
    --bg-elevated:  #1a1a2e;
    --bg-card:      rgba(255,255,255,0.05);
    --glass:        rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.10);
    --glass-hover:  rgba(255,255,255,0.13);
    --text:         #eeeef5;
    --text-dim:     #9d9db5;
    --text-micro:   #6e6e88;
    --neon:         #00c77a;
    --neon-dim:     rgba(0,199,122,0.15);
    --neon-glow:    rgba(0,199,122,0.30);
    --accent2:      #818cf8;
    --accent2-dim:  rgba(129,140,248,0.15);
    --danger:       #ff6b8a;
    --danger-dim:   rgba(255,107,138,0.12);
    --radius:       16px;
    --radius-sm:    10px;
    --radius-lg:    24px;
    --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container { max-width:1200px; margin:0 auto; padding:0 32px; }

h1,h2,h3,h4 {
    color: var(--text);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ── Gradient Text ─────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--neon), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Glass Card ────────────────────────────── */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Buttons ───────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--neon); color: #0a0a0f;
    font-weight: 700; font-size: 15px;
    padding: 14px 32px; border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 0 20px rgba(0,229,160,0.25);
    text-decoration: none;
}
.btn-primary:hover {
    background: #33ffbe;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0,229,160,0.4), 0 8px 20px rgba(0,229,160,0.2);
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text);
    border: 1px solid var(--glass-border);
    font-weight: 700; font-size: 15px;
    padding: 13px 32px; border-radius: var(--radius-sm);
    transition: all 0.3s; text-decoration: none;
}
.btn-ghost:hover {
    background: var(--glass); border-color: var(--neon); color: var(--neon);
}

/* ── Ambient Orbs ──────────────────────────── */
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none; z-index: 0;
}
.orb-neon { background: radial-gradient(circle, rgba(0,229,160,0.15), transparent 70%); }
.orb-purple { background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%); }

/* ── Eyebrow Label ─────────────────────────── */
.eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--neon-dim); color: var(--neon);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 100px; border: 1px solid rgba(0,229,160,0.2);
}

.section-line {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.section-line::before {
    content: ''; width: 40px; height: 2px;
    background: var(--neon); border-radius: 2px;
}
.section-line span {
    font-size: 13px; font-weight: 700; color: var(--neon);
    text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── HEADER (sticky + compact on scroll) ──── */
.site-header {
    position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
    height: 68px; display: flex; align-items: center;
    background: rgba(19,19,31,0.88);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    transition: height 0.3s ease, background 0.3s ease;
}
.site-header.compact {
    height: 52px;
    background: rgba(19,19,31,0.95);
}
.site-header.compact .logo { font-size: 1.1rem; }
.site-header.compact .header-nav > a,
.site-header.compact .dropbtn { font-size: 12px; }
.site-header.compact .header-right { gap: 12px; }
.site-header.compact .header-geo { display: none; }
.site-header.compact .header-phone { font-size: 13px; padding: 6px 14px; }
.header-inner {
    display: flex; justify-content: space-between;
    align-items: center; width: 100%;
}
.logo { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.03em; transition: font-size 0.3s; }
.logo-dot { color: var(--neon); }
.header-nav { display: flex; align-items: center; gap: 14px; }
.header-nav > a, .header-nav .dropbtn { font-size: 14px; font-weight: 600; color: var(--text-dim); transition: color 0.2s, font-size 0.3s; }
.header-nav > a:hover { color: var(--neon); }

/* Header right: geo + phone */
.header-right {
    display: flex; align-items: center; gap: 16px;
    transition: gap 0.3s;
}
.header-geo {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-micro); font-weight: 500;
    transition: opacity 0.3s;
}
.header-geo-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--neon); box-shadow: 0 0 8px var(--neon-glow);
    animation: geoPulse 2s ease-in-out infinite;
}
@keyframes geoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.header-phone {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 100px;
    background: linear-gradient(135deg, rgba(0,199,122,0.12), rgba(129,140,248,0.08));
    border: 1px solid rgba(0,199,122,0.25);
    color: var(--neon); font-size: 14px; font-weight: 700;
    text-decoration: none; letter-spacing: 0.02em;
    transition: all 0.3s ease;
}
.header-phone:hover {
    background: linear-gradient(135deg, rgba(0,199,122,0.22), rgba(129,140,248,0.15));
    border-color: var(--neon);
    box-shadow: 0 0 20px rgba(0,199,122,0.2);
    transform: translateY(-1px);
}
.header-phone svg {
    width: 14px; height: 14px; stroke: var(--neon); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── HERO (Split: Text Left, Image Right) ──── */
.hero {
    min-height: 85vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 72px; padding-bottom: 10vh;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black, transparent);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 3; max-width: 48%; text-align: left;
}
.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    letter-spacing: -0.03em; margin-bottom: 20px; line-height: 1.08;
}
.hero-sub { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; }
.stat-big { font-size: 2rem; font-weight: 900; color: var(--neon); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-micro); font-weight: 500; margin-top: 6px; }

/* Hero image: full right panel, edge-to-edge */
.hero-image-panel {
    position: absolute; top: 0; bottom: 0; right: 0; width: 48%;
    z-index: 2;
}
.hero-image-panel img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-image-panel::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, var(--bg) 0%, rgba(19,19,31,0.4) 30%, transparent 100%),
        linear-gradient(to top, var(--bg) 0%, transparent 40%);
}

/* ── HERO EXTERIOR variant ──── */
.hero-ext { min-height: auto; padding-top: 40px; padding-bottom: 40px; }

/* ── HERO FLOATING CARDS (Problem/Solution) ──── */
.hero-floating-cards {
    display: flex; flex-direction: row; gap: 16px;
    margin-top: 30px; width: 100%; max-width: 600px;
}

/* ══════════════════════════════════════════════
   MOBILE / ZOOM (≤900px) — Compact hero overlay
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero {
        min-height: auto; padding: 24px 0 16px;
    }
    .hero-content {
        max-width: 100%; text-align: left;
    }
    /* Image → faded background */
    .hero-image-panel {
        position: absolute; inset: 0; width: 100%; height: 100%;
        opacity: 0.3; z-index: 0;
    }
    .hero-image-panel::before {
        background: linear-gradient(to right, var(--bg) 0%, rgba(19,19,31,0.5) 40%, transparent 100%),
                    linear-gradient(to top, var(--bg) 0%, transparent 50%);
    }
    /* Tiny fonts */
    .hero h1 { font-size: clamp(0.9rem, 4.5vw, 1.4rem); margin-bottom: 8px; line-height: 1.15; }
    .hero-sub { font-size: clamp(0.6rem, 3vw, 0.78rem); margin-bottom: 12px; line-height: 1.4; }
    .eyebrow { font-size: 8px !important; padding: 3px 8px !important; margin-bottom: 8px !important; letter-spacing: 0.5px; }
    /* Buttons in row, smaller */
    .hero-actions { gap: 8px; margin-bottom: 12px; flex-wrap: nowrap; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        padding: 8px 16px !important; font-size: 0.7rem !important; white-space: nowrap;
    }
    /* Stats bar: ONE row, tiny */
    .stats-bar { grid-template-columns: repeat(4, 1fr) !important; gap: 8px !important; }
    .stat-card { padding: 8px 4px !important; }
    .stat-big { font-size: 0.9rem !important; }
    .stat-label { font-size: 7px !important; }
    /* Floating cards stack */
    .hero-floating-cards { flex-direction: column; max-width: 100%; }
    /* Ext hero compact */
    .hero-ext { padding: 20px 0 16px; }
}

/* ── HERO FULLWIDTH (Landing pages like furniture-ar, interior-apartment, etc.) ── */
.hero-fullwidth-section {
    position: relative; min-height: 70vh; display: flex; align-items: center;
    overflow: hidden; padding: 100px 0 60px;
}
.hero-fw-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    z-index: 0;
}
.hero-fw-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(10,10,15,0.88) 0%, rgba(10,10,15,0.5) 50%, rgba(10,10,15,0.75) 100%);
}
.hero-fw-container { position: relative; z-index: 3; max-width: 720px; }
.hero-fw-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1;
    letter-spacing: -0.03em; margin-bottom: 16px;
}
.hero-fw-subtitle {
    font-size: 1.05rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 32px;
    max-width: 600px;
}
.hero-fw-actions {
    display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
}
.hero-fw-badges {
    display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-fw-badge {
    padding: 16px 24px; min-width: 100px; text-align: center;
}
.hero-fw-badge-val {
    font-size: 1.8rem; font-weight: 900; color: var(--neon); line-height: 1;
}
.hero-fw-badge-label {
    font-size: 12px; color: var(--text-micro); margin-top: 6px; font-weight: 500;
}

/* ── INDUSTRY CARD with BG ────────────────── */
.ind-card {
    position: relative; overflow: hidden; border-radius: var(--radius);
    padding: 32px 20px; text-align: center;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ind-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.ind-card-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.25; transition: opacity 0.4s ease;
}
.ind-card:hover .ind-card-bg { opacity: 0.4; }
.ind-card-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg) 20%, transparent 100%);
}
.ind-card .icon-box { position: relative; z-index: 2; }
.ind-card .card-title { position: relative; z-index: 2; }

/* ── SPLIT LAYOUT (Text + Image) ───────────── */
.split-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.section-img {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px var(--glass-border);
}
.section-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-img-sticky {
    position: sticky; top: 100px;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px var(--glass-border);
}
.section-img-sticky img { width: 100%; object-fit: cover; border-radius: 20px; }

/* ── PAIN/BENEFIT ICONS ────────────────────── */
.icon-box {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px; flex-shrink: 0;
}
.icon-neon { background: var(--neon-dim); }
.icon-purple { background: var(--accent2-dim); }

/* ── PROCESS CONNECTOR ─────────────────────── */
.process-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-dim), var(--accent2-dim));
    border: 2px solid var(--neon);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900; color: var(--neon);
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0,229,160,0.25);
}

/* ── TECH CARD (with background image) ─────── */
.tech-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius); padding: 0;
    background: var(--glass); border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    min-height: 200px;
}
.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.12);
}
.tech-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.tech-card:hover .tech-card-bg { transform: scale(1.05); }
.tech-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.95) 20%, rgba(10,10,15,0.4) 100%);
}
.tech-card-content {
    position: relative; z-index: 2;
    padding: 24px; display: flex; flex-direction: column;
    justify-content: flex-end; min-height: 200px;
}
.tech-card-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
.tech-card-role { font-size: 0.85rem; color: var(--text-dim); }

/* ── LEAD MAGNET ───────────────────────────── */
.lead-magnet {
    background: linear-gradient(135deg, rgba(0,229,160,0.08), rgba(99,102,241,0.08));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 60px;
    text-align: center;
}

/* ── FAQ SECTION with blueprint decoration ──── */
.faq-section {
    position: relative; overflow: hidden;
}
.faq-section::before, .faq-section::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 300px;
    opacity: 0.04; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px),
        linear-gradient(45deg, transparent 48%, rgba(0,229,160,0.3) 49%, rgba(0,229,160,0.3) 51%, transparent 52%);
    background-size: 30px 30px, 30px 30px, 60px 60px;
}
.faq-section::before { left: 0; }
.faq-section::after { right: 0; }

/* ── FAQ ACCORDION ─────────────────────────── */
.faq-details {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: all 0.2s;
}
.faq-details[open] { border-color: rgba(0,229,160,0.2); background: var(--glass); }
.faq-details summary {
    padding: 20px 24px; font-weight: 700; font-size: 1rem;
    cursor: pointer; list-style: none; color: var(--text);
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 24px 20px; color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; }

/* ── FOOTER ────────────────────────────────── */
.site-footer {
    padding: 0; border-top: 1px solid var(--glass-border);
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: var(--text-micro); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-micro); transition: color 0.2s; }
.footer-links a:hover { color: var(--neon); }

/* ── SECTION LAYOUT ────────────────────────── */
.section-block { padding: 100px 0; position: relative; }
.section-elevated {
    background: var(--bg-elevated);
    border-radius: 32px; margin: 0 16px;
    padding: 100px 0;
}
.section-title-lg {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.05rem; color: var(--text-dim);
    max-width: 600px; line-height: 1.7; margin-bottom: 48px;
}

/* ── GRIDS ─────────────────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.grid-6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ── CARD INNER TEXT ───────────────────────── */
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.card-text { font-size: 0.92rem; color: var(--text-dim); line-height: 1.65; }

.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; text-align: center; }
.step-text { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; text-align: center; }

/* ── LEAD MAGNET TITLE ─────────────────────── */
.lm-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.lm-desc { font-size: 1rem; color: var(--text-dim); max-width: 500px; margin: 0 auto 32px; }

/* ── CTA SECTION ───────────────────────────── */
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 16px; }
.cta-desc { font-size: 1rem; color: var(--text-dim); max-width: 500px; margin: 0 auto 32px; }
.cta-micro { margin-top: 16px; font-size: 13px; color: var(--text-micro); }

/* ── FAQ SECTION ───────────────────────────── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
/* ── ANIMATIONS ────────────────────────────── */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 20px rgba(0,199,122,0.2); }
    50%     { box-shadow: 0 0 40px rgba(0,199,122,0.35); }
}
.pulse-cta { animation: pulse-glow 3s ease-in-out infinite; }

/* top-bar removed — info integrated into header-right */

/* ── MEGA MENU ────────────────────────────── */
.dropdown { position: static; }
.dropbtn {
    font-size: 14px; font-weight: 600; color: var(--text-dim);
    text-decoration: none; transition: color 0.2s; cursor: pointer;
    padding: 8px 0; /* extends hover zone vertically */
}
.dropbtn:hover, .dropdown:hover .dropbtn { color: var(--neon); }
.dropbtn::after {
    content: ' ▾'; font-size: 10px; opacity: 0.5;
    transition: transform 0.2s;
}
.dropdown:hover .dropbtn::after { transform: rotate(180deg); }
.nav-dot { color: var(--glass-border); margin: 0 8px; font-size: 12px; }

/* Mega panel — full-width under header */
.mega-panel {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    padding: 28px 0 32px;
    background: rgba(19,19,31,0.97); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
    z-index: 999;
    animation: megaFadeIn 0.2s ease;
}
/* Invisible bridge between button and panel to prevent hover loss */
.mega-panel::before {
    content: ''; position: absolute; top: -20px; left: 0; right: 0;
    height: 20px;
}
@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown:hover .mega-panel { display: block; }
.mega-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px;
}
.mega-col h4 {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--neon); font-weight: 700; margin-bottom: 14px;
    padding-bottom: 8px; border-bottom: 1px solid var(--glass-border);
}
.mega-col a {
    display: block; padding: 6px 0; color: var(--text-dim);
    font-size: 13px; font-weight: 500; text-decoration: none;
    transition: all 0.15s; line-height: 1.4;
}
.mega-col a:hover {
    color: var(--text); padding-left: 6px;
}
/* Legacy dropdown-content — hide old, keep for sub-pages compat */
.dropdown-content {
    display: none; position: absolute; top: 100%; left: 0;
    min-width: 280px; padding: 12px;
    background: rgba(19,19,31,0.95); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    z-index: 1000;
}
.dropdown-content a {
    display: block; padding: 10px 16px; color: var(--text-dim);
    font-size: 13px; text-decoration: none; border-radius: var(--radius-sm);
    transition: all 0.15s;
}
.dropdown-content a:hover {
    background: var(--glass-hover); color: var(--text);
}

/* ── STATS BAR ────────────────────────────── */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--glass); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.stat-card {
    padding: 28px 20px; text-align: center;
    background: var(--bg-elevated);
}
.stat-card .stat-big { font-size: 2rem; font-weight: 900; color: var(--neon); margin-bottom: 6px; }
.stat-card .stat-label { font-size: 13px; color: var(--text-dim); font-weight: 500; }

/* ── SERVICE CHECKERBOARD ─────────────────── */
.services-checkerboard { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; }
.service-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-text h3 {
    font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: var(--text);
}
.service-text p { color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.feature-list {
    list-style: none; padding: 0; margin: 0 0 20px;
}
.feature-list li {
    padding: 6px 0; color: var(--text-dim); font-size: 0.9rem;
    padding-left: 20px; position: relative;
}
.feature-list li::before {
    content: '✓'; position: absolute; left: 0; color: var(--neon); font-weight: 700;
}
.service-action {
    display: flex; align-items: center; gap: 16px;
}
.service-price {
    font-size: 1.1rem; font-weight: 800; color: var(--neon);
}
.service-visual {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3;
}
.service-img {
    width: 100%; height: 100%; background-size: cover; background-position: center;
    border-radius: var(--radius); transition: transform 0.5s ease;
}
.service-row:hover .service-img { transform: scale(1.03); }
.float-badge {
    position: absolute; top: 16px; right: 16px;
    padding: 6px 14px; background: var(--neon); color: #0a0a0f;
    font-size: 12px; font-weight: 800; border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,199,122,0.3);
}

/* ── FOOTER GRID ──────────────────────────── */
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
    padding: 32px 0 20px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-heading { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.footer-link { color: var(--text-dim); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--neon); }
.footer-desc { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.footer-address { color: var(--text-micro); font-size: 13px; margin-top: 4px; }
.footer-bottom {
    border-top: 1px solid var(--glass-border); padding: 20px 0;
}
.site-footer { background: var(--bg-elevated); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .service-row { grid-template-columns: 1fr; }
    .service-row.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    /* ── GLOBAL MOBILE RESET ── */
    * { min-width: 0; box-sizing: border-box; }
    html, body { overflow-x: hidden !important; max-width: 100%; }

    .container { padding: 0 16px !important; }
    .section-block { padding: 48px 0 !important; }
    .section-elevated { padding: 40px 0 !important; margin: 0 !important; border-radius: 0 !important; }

    /* ── HEADER ── */
    .site-header { padding: 8px 0; height: auto !important; }
    .header-inner { flex-wrap: wrap !important; gap: 8px !important; }
    .header-nav { display: none; }
    .header-geo { display: none !important; }
    .header-phone { font-size: 12px !important; }

    /* ── GRIDS ── */
    .split-layout { grid-template-columns: 1fr; gap: 32px; }
    .split-layout.reverse { direction: ltr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-5 { grid-template-columns: 1fr; }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .service-row, .service-row.reverse { grid-template-columns: 1fr; direction: ltr; }

    /* ── FOOTER ── */
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .lead-magnet { padding: 40px 24px; }
    .top-bar { display: none; }

    /* ── HERO FULLWIDTH variant ── */
    .hero-fullwidth-section { padding: 30px 0 24px; min-height: auto; }
    .hero-fw-title { font-size: clamp(1rem, 5vw, 1.6rem) !important; margin-bottom: 10px; }
    .hero-fw-subtitle { font-size: clamp(0.7rem, 3.5vw, 0.9rem); margin-bottom: 16px; }
    .hero-fw-actions { flex-direction: row; gap: 10px; flex-wrap: wrap; }
    .hero-fw-actions .btn-primary, .hero-fw-actions .btn-ghost { padding: 10px 18px; font-size: 0.8rem; }
    .hero-fw-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-fw-badge { padding: 10px; min-width: 0; }
    .hero-fw-badge-val { font-size: clamp(1rem, 5vw, 1.3rem); }
    .hero-fw-badge-label { font-size: 9px; line-height: 1.2; }
}