/* ============================================================
   CABISOL — Main Stylesheet
   Colors: Gold #E8A010 | Navy #2A2F42 | Dark #1E2235
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', 'Nunito Sans', sans-serif;
    background: #F8F7F4;
    color: #2C2C2A;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --gold:        #E8A010;
    --gold-hover:  #C9830A;
    --navy:        #2A2F42;
    --dark:        #1E2235;
    --off-white:   #F8F7F4;
    --light-grey:  #F1EFE8;
    --white:       #FFFFFF;
    --body-text:   #2C2C2A;
    --muted:       #6C7487;
    --border:      #D3D1C7;
    --radius:      12px;
    --transition:  0.22s ease;
    --shadow:      0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--body-text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0; font-family: 'DM Sans', sans-serif; }

p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
    height: 3px;
    width: 60px;
    background: var(--gold);
    border-radius: 2px;
    margin: 16px 0 28px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    padding: 14px 32px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), transform var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

.btn-primary {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-2px);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
    background: #fff;
    border: 1px solid #E8E6DF;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), border-left var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--gold);
}

/* ── Feature Icons ────────────────────────────────────────── */
.feature-icon {
    width: 48px;
    height: 48px;
    background: #FEF3DC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-bottom: 16px;
}

/* ── Pills / Tags ─────────────────────────────────────────── */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FEF3DC;
    color: var(--body-text);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ── Checkmark List ───────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--body-text);
}
.check-list li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body {
    padding-top: 72px;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    white-space: nowrap;
}
.site-logo .logo-mark { color: var(--gold); }
.site-logo .logo-text { color: #fff; }

/* Nav list */
.primary-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
.nav-arrow { transition: transform var(--transition); }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Mega dropdown */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 560px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateX(-50%) translateY(-8px);
    border-top: 3px solid var(--gold);
}
.has-dropdown:hover .mega-dropdown,
.has-dropdown:focus-within .mega-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-inner { display: flex; flex-direction: column; gap: 4px; }
.mega-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    transition: background var(--transition);
    color: var(--body-text);
}
.mega-card:hover { background: var(--off-white); }
.mega-card .mega-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: #FEF3DC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mega-card strong { display: block; font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.mega-card p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.4; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}
.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 600px; }
.hero-content .section-label { color: var(--gold); }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 36px; max-width: 540px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-image {
    display: flex;
    justify-content: flex-end;
}
.hero-image img {
    border-radius: 16px;
    transform: rotate(1.5deg);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    max-width: 540px;
    width: 100%;
}

/* Trust bar */
.trust-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 64px;
    padding-top: 32px;
}
.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 500;
}
.trust-item span:first-child { font-size: 1.2rem; }

/* ══════════════════════════════════════════════════════════
   PRODUCT OVERVIEW — 3 Cards
   ══════════════════════════════════════════════════════════ */
.products-overview { background: var(--white); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.1rem; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card { border-radius: var(--radius); overflow: hidden; }
.product-card img { width: 100%; height: 220px; object-fit: cover; }
.product-card-body { padding: 28px; }
.product-card-body h3 { margin-bottom: 10px; }
.product-card-body p { font-size: 0.95rem; }
.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--transition);
}
.product-card-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════════════ */
.features-section { background: var(--off-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card { padding: 28px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   VIDEO DEMO BLOCK (Dark)
   ══════════════════════════════════════════════════════════ */
.video-demo { background: var(--dark); }
.video-demo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.video-demo h2,
.video-demo h3 { color: #fff; }
.video-demo p { color: rgba(255,255,255,0.72); }
.video-demo .check-list li { color: rgba(255,255,255,0.85); }

.video-thumb-wrap {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
}
.video-thumb-wrap img { width: 100%; border-radius: var(--radius); }
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
    box-shadow: 0 0 0 12px rgba(232,160,16,0.2);
}
.play-btn:hover { background: var(--gold-hover); transform: translate(-50%, -50%) scale(1.08); }
.play-btn svg { margin-left: 4px; }

/* ══════════════════════════════════════════════════════════
   SPLIT SECTIONS (Feature splits)
   ══════════════════════════════════════════════════════════ */
.split-section { padding: 96px 0; }
.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }

.split-content h2 { margin-bottom: 14px; }
.split-content p { margin-bottom: 28px; }
.split-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}
.split-image-phone img {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}

.pills-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }

/* ══════════════════════════════════════════════════════════
   WHATSAPP BANNER (Dark)
   ══════════════════════════════════════════════════════════ */
.whatsapp-banner { background: var(--dark); text-align: center; }
.whatsapp-banner h2 { color: #fff; }
.whatsapp-banner p { color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 40px; }
.wa-icon { margin: 0 auto 24px; }
.wa-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0 40px;
}
.wa-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
}
.wa-stat span:first-child { font-size: 1.4rem; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 32px;
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }
.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.author-info strong { display: block; font-size: 0.95rem; color: var(--body-text); }
.author-info span { font-size: 0.85rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════ */
.pricing { background: var(--light-grey); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card { padding: 36px 32px; position: relative; }
.pricing-card.featured {
    background: var(--dark);
    border-color: var(--gold);
    border-width: 2px;
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li { color: #fff !important; }
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    white-space: nowrap;
}
.price {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--body-text);
    margin: 14px 0 4px;
}
.price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.price sub { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-card ul { display: flex; flex-direction: column; gap: 10px; }
.pricing-card li {
    font-size: 0.92rem;
    color: var(--body-text);
    padding-left: 22px;
    position: relative;
}
.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.pricing-card.featured li::before { color: var(--gold); }
.pricing-card .btn { margin-top: 28px; width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-banner { background: var(--navy); text-align: center; padding: 80px 0; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 36px; font-size: 1.1rem; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--dark);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}
.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.9); }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 32px; }
.page-hero-image img {
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    width: 100%;
}

/* ══════════════════════════════════════════════════════════
   ICON GRID (Dispatch page features)
   ══════════════════════════════════════════════════════════ */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.icon-grid-item { display: flex; gap: 20px; align-items: flex-start; }
.icon-grid-item .feature-icon { flex-shrink: 0; }
.icon-grid-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.icon-grid-item p { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS — Steps
   ══════════════════════════════════════════════════════════ */
.steps-section { background: var(--white); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--border) 100%);
    z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(232,160,16,0.35);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; }

/* ══════════════════════════════════════════════════════════
   WHATSAPP CHAT MOCKUP
   ══════════════════════════════════════════════════════════ */
.wa-chat-box {
    background: #E5DDD5;
    border-radius: 16px;
    padding: 20px;
    max-width: 380px;
    font-size: 0.9rem;
}
.wa-chat-header {
    background: #075E54;
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px 12px 0 0;
    margin: -20px -20px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-message {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.wa-message.incoming .wa-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    align-self: flex-start;
    color: #111;
}
.wa-message.outgoing .wa-bubble {
    background: #DCF8C6;
    border-radius: 12px 0 12px 12px;
    align-self: flex-end;
    color: #111;
}
.wa-bubble { padding: 10px 14px; max-width: 80%; line-height: 1.5; font-size: 0.88rem; }
.wa-message.confirmed .wa-bubble { background: #25D366; color: #fff; border-radius: 12px; align-self: flex-start; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer { background: var(--dark); padding: 72px 0 0; }
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand .site-logo--footer { margin-bottom: 14px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #fff; }

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); text-align: center; }

/* ══════════════════════════════════════════════════════════
   VIDEO LIGHTBOX MODAL
   ══════════════════════════════════════════════════════════ */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
.lightbox-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   APP STORE BADGES
   ══════════════════════════════════════════════════════════ */
.app-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background var(--transition);
}
.app-badge:hover { background: var(--gold); border-color: var(--gold); }
.app-badge .badge-icon { font-size: 1.6rem; }

/* ══════════════════════════════════════════════════════════
   BACKGROUND VARIANTS
   ══════════════════════════════════════════════════════════ */
.bg-white    { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-light    { background: var(--light-grey); }
.bg-dark     { background: var(--dark); }
.card.bg-dark { background: var(--dark); border-color: rgba(255,255,255,0.1); }
.card.bg-dark:hover { border-left-color: var(--gold); }
.bg-navy     { background: var(--navy); }

.text-white h2, .text-white h3, .text-white h4 { color: #fff; }
.text-white p { color: rgba(255,255,255,0.72); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Tablet — 768px */
@media (max-width: 1024px) {
    .products-grid,
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
    .hero-inner,
    .page-hero-inner,
    .split-inner,
    .video-demo-inner { grid-template-columns: 1fr; gap: 40px; }
    .split-inner.reverse { direction: ltr; }
    .hero-image { justify-content: center; }
    .page-hero-image { display: none; }
    .icon-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
    section { padding: 64px 0; }

    .primary-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 20px 24px 32px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        z-index: 999;
    }
    .primary-nav.is-open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .mega-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.04);
        padding: 8px 0;
        margin: 8px 0;
        border-radius: 8px;
        display: none;
    }
    .has-dropdown.is-open .mega-dropdown { display: block; }
    .mega-card strong { color: rgba(255,255,255,0.9); }
    .mega-card p { color: rgba(255,255,255,0.5); }
    .mega-card:hover { background: rgba(255,255,255,0.06); }

    .hamburger { display: flex; }

    .products-grid,
    .features-grid,
    .icon-grid,
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .trust-bar-inner { gap: 20px; justify-content: flex-start; }
    .wa-stats { gap: 24px; }
    .hero-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
    .split-image-phone img { max-width: 240px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
