@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0f0e17;
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --accent: #06b6d4;
    --accent2: #a855f7;
    --success: #10b981;
    --warning: #f59e0b;
    --light: #ffffff;
    --gray: #6b7280;
    --gray-light: #f8fafc;
    --gray-mid: #e2e8f0;
    --text-dark: #0f0e17;
    --text-mid: #374151;
    --gradient-main: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --shadow-sm: 0 4px 6px -1px rgba(99,102,241,0.1);
    --shadow-md: 0 10px 25px -5px rgba(99,102,241,0.15);
    --shadow-lg: 0 25px 50px -12px rgba(99,102,241,0.2);
    --shadow-xl: 0 35px 70px -15px rgba(99,102,241,0.25);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
    background: var(--gradient-main);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #0891b2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99,102,241,0.45);
    color: white !important;
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}
.btn-light {
    background: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.btn-light:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    color: var(--primary-dark);
}

/* ── SECTION TITLES ── */
.section-title { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(168,85,247,0.12));
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(99,102,241,0.2);
}
.section-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-title h2 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ── HERO ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15,14,23,0.94) 0%, rgba(26,26,46,0.9) 100%), url('https://images.unsplash.com/photo-1593784991095-a205069470b6?w=1920') center/cover no-repeat;
    position: relative;
}
.hero-section .container { position: relative; z-index: 2; padding: 140px 0 100px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 26px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}
.hero-badge .badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-section h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease forwards;
}
.hero-section h1 .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section p {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 38px;
    max-width: 560px;
    line-height: 1.75;
    animation: slideUp 0.8s ease 0.2s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: slideUp 0.8s ease 0.4s both; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 55px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.6s both;
}
.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 16px 22px;
    backdrop-filter: blur(10px);
}
.hero-stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: white; font-family: 'Space Grotesk', sans-serif; }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; }

.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease 0.3s both;
}
.hero-device-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}
.hero-device-card::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0.15;
    top: -60px; right: -60px;
    filter: blur(40px);
}
.speed-ring {
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 10px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary-light);
    border-right-color: var(--accent2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.speed-ring-inner {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: spin-reverse 8s linear infinite;
}
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
.speed-ring-inner strong { font-size: 1.6rem; font-weight: 800; color: white; display: block; line-height: 1; }
.speed-ring-inner span { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ── TICKER / TRUST BAR ── */
.ticker-bar {
    background: var(--gradient-main);
    padding: 0;
    overflow: hidden;
    position: relative;
}
.ticker-track {
    display: flex;
    animation: ticker-scroll 28s linear infinite;
    width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 14px 32px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.ticker-item i { font-size: 1rem; opacity: 0.85; }
.ticker-sep { color: rgba(255,255,255,0.4); padding: 0 10px; }

/* ── STATS COUNTER SECTION ── */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    top: -200px; left: -200px;
}
.stats-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
    bottom: -150px; right: -100px;
}
.stat-box {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}
.stat-box .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.stat-box .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    margin: auto;
    height: 80px;
    align-self: center;
}

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--gray-light); }
.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 42px 32px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--gray-mid);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--border-radius-lg);
    z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::after { opacity: 1; }
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover h4,
.service-card:hover p { color: white; }
.service-icon-wrap {
    width: 80px; height: 80px;
    margin: 0 auto 26px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    color: var(--primary);
    transition: all 0.4s ease;
    border: 1px solid rgba(99,102,241,0.15);
}
.service-card:hover .service-icon-wrap {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: rgba(255,255,255,0.3);
}
.service-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); transition: color 0.4s; }
.service-card p { color: var(--gray); margin: 0; font-size: 0.92rem; transition: color 0.4s; }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 100px 0; background: white; }
.step-card {
    text-align: center;
    padding: 42px 28px;
    border-radius: var(--border-radius-lg);
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
    transition: all 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.35s;
    border-radius: 3px 3px 0 0;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.2); background: white; }
.step-number {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: var(--gradient-main);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-family: 'Space Grotesk', sans-serif;
}
.step-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-card p { color: var(--gray); font-size: 0.92rem; margin: 0; }
.step-card a { color: var(--primary); font-weight: 600; }

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--gray-light); }
.about-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-mid);
}
.about h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.about h2 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about .sub-heading { color: var(--primary); font-weight: 600; font-size: 1rem; margin-bottom: 18px; }
.about p { color: var(--gray); line-height: 1.85; margin-bottom: 18px; }
.about-stats { display: flex; gap: 16px; margin: 30px 0; flex-wrap: wrap; }
.about-stat {
    text-align: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(168,85,247,0.06));
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: 16px;
    padding: 22px 20px;
    flex: 1; min-width: 90px;
}
.about-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-stat span { font-size: 0.78rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.about-img-wrap {
    position: relative; border-radius: var(--border-radius-xl); overflow: hidden; height: 440px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
    position: absolute; bottom: 25px; left: 25px;
    background: white;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 12px;
}
.about-img-badge i { font-size: 1.8rem; color: var(--primary); }
.about-img-badge strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.about-img-badge span { font-size: 0.75rem; color: var(--gray); }

/* ── FEATURES ── */
.features { padding: 100px 0; background: white; }
.feature-card {
    padding: 36px 28px;
    border-radius: var(--border-radius-lg);
    background: var(--gray-light);
    transition: all 0.35s;
    height: 100%;
    border: 1px solid var(--gray-mid);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.35s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(99,102,241,0.2); background: white; box-shadow: var(--shadow-lg); }
.feature-icon-wrap {
    width: 65px; height: 65px;
    border-radius: 18px;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 1.5rem;
    color: white;
}
.feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.feature-card p { color: var(--gray); margin: 0; font-size: 0.92rem; }

/* ── PRICING ── */
.pricing { padding: 100px 0; background: var(--gray-light); }
.pricing-toggle {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 50px;
}
.toggle-label { font-weight: 600; color: var(--gray); font-size: 0.95rem; }
.toggle-label.active { color: var(--primary); }
.price-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 44px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: rgba(99,102,241,0.25); }
.price-card.popular {
    border: 2px solid var(--primary);
    background: var(--gradient-dark);
    transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-10px); }
.price-card.popular h4,
.price-card.popular .price-amount,
.price-card.popular .price-period,
.price-card.popular .price-features li { color: rgba(255,255,255,0.9); }
.price-card.popular .price-features li i { color: var(--primary-light); }
.price-card.popular .price-amount span { color: rgba(255,255,255,0.5); }
.price-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gradient-main);
    color: white; padding: 5px 14px;
    border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
}
.price-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--text-dark);
}
.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem; font-weight: 700; color: var(--text-dark); line-height: 1; margin: 18px 0 6px;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.price-period { font-size: 0.82rem; color: var(--gray); margin-bottom: 26px; }
.price-features { list-style: none; padding: 0; margin: 26px 0; text-align: left; }
.price-features li {
    padding: 10px 0; color: var(--text-mid);
    display: flex; align-items: center;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--primary); margin-right: 10px; font-size: 0.85rem; }
.price-card .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.popular-price-btn {
    background: var(--gradient-main);
    border: none; width: 100%; padding: 14px 32px;
    border-radius: 50px; font-weight: 700; font-size: 0.95rem;
    color: white !important; text-decoration: none;
    display: flex; align-items: center; justify-content: center;
    gap: 9px; transition: all 0.3s ease; margin-top: 8px;
}
.popular-price-btn:hover {
    opacity: 0.9; transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99,102,241,0.4);
    color: white !important;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: white; }
.testimonial-card {
    background: var(--gray-light);
    border-radius: var(--border-radius-lg);
    padding: 36px 30px;
    height: 100%;
    border: 1px solid var(--gray-mid);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 20px;
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
    font-family: Georgia, serif;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.2); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-text { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-location { font-size: 0.8rem; color: var(--gray); }

/* ── PROVIDERS ── */
.providers { padding: 80px 0; background: var(--gray-light); }
.provider-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.provider-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--gray-mid);
    border-radius: 12px;
    padding: 16px 24px;
    font-weight: 700;
    color: var(--text-mid);
    font-size: 0.95rem;
    transition: all 0.3s;
}
.provider-chip i { font-size: 1.3rem; color: var(--primary); }
.provider-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ── COVERAGE ── */
.coverage { padding: 100px 0; background: white; }
.coverage-box {
    background: var(--gradient-dark);
    border-radius: var(--border-radius-xl);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.coverage-box::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
    top: -150px; left: -150px;
}
.coverage-box::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
    bottom: -100px; right: -100px;
}
.coverage-icon {
    width: 90px; height: 90px;
    margin: 0 auto 28px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white;
    position: relative; z-index: 1;
}
.coverage-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: white; font-size: 2.2rem; font-weight: 700; margin-bottom: 16px;
    position: relative; z-index: 1;
}
.coverage-box p { color: rgba(255,255,255,0.7); margin-bottom: 18px; font-size: 1rem; position: relative; z-index: 1; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ── CTA ── */
.cta {
    padding: 100px 0;
    background: var(--gradient-main);
    position: relative; overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -250px; right: -150px;
}
.cta::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    bottom: -150px; left: -100px;
}
.cta .container { position: relative; z-index: 1; }
.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: white; font-weight: 700; font-size: 2.6rem; margin-bottom: 14px; line-height: 1.2;
}
.cta p { color: rgba(255,255,255,0.88); margin-bottom: 0; font-size: 1.05rem; }

/* ── FAQs ── */
.faqs { padding: 100px 0; background: var(--gray-light); }
.faqs .accordion-item {
    border: 1px solid var(--gray-mid) !important;
    border-radius: var(--border-radius) !important;
    margin-bottom: 12px; overflow: hidden;
    background: white;
}
.faqs .accordion-button {
    font-weight: 600; color: var(--text-dark); background: white; font-size: 0.98rem;
    border-radius: var(--border-radius) !important;
    padding: 20px 24px;
}
.faqs .accordion-button:not(.collapsed) {
    color: var(--primary); background: white; box-shadow: none;
}
.faqs .accordion-button:not(.collapsed)::after {
    filter: invert(40%) sepia(80%) saturate(600%) hue-rotate(220deg);
}
.faqs .accordion-body { color: var(--gray); font-size: 0.95rem; background: white; padding: 0 24px 22px; line-height: 1.75; }

/* ── FOOTER ── */
.footer {
    background: var(--gradient-dark);
    padding: 72px 0 28px;
    color: white;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    top: -200px; right: -200px;
}
.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: white; text-decoration: none;
    display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.footer-brand-icon {
    width: 44px; height: 44px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white; flex-shrink: 0;
}
.footer p.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer h5 { font-weight: 700; margin-bottom: 22px; font-size: 0.9rem; color: white; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem;
    transition: all 0.3s; display: flex; align-items: center; gap: 8px;
}
.footer ul li a:hover { color: var(--primary-light); transform: translateX(4px); }
.footer ul li a i { font-size: 0.7rem; opacity: 0.6; }
.footer-contact li {
    color: rgba(255,255,255,0.5); font-size: 0.88rem;
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
}
.footer-contact li i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 45px; padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    position: relative; z-index: 1;
}
.footer-bottom p { color: rgba(255,255,255,0.35); margin: 0; font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--primary-light); }

/* ── POPUP ── */
#cp-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15,14,23,0.75);
    backdrop-filter: blur(6px);
    z-index: 99999;
    align-items: center; justify-content: center; padding: 20px;
}
#cp-overlay.show { display: flex; }
#cp-box {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 48px 36px 38px;
    max-width: 430px; width: 100%;
    text-align: center; position: relative;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
#cp-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-main);
}
#cp-close {
    position: absolute; top: 14px; right: 16px;
    background: var(--gray-light); border: none;
    width: 34px; height: 34px; border-radius: 50%;
    font-size: 15px; cursor: pointer; line-height: 34px;
    color: var(--gray); transition: all 0.2s;
}
#cp-close:hover { background: var(--primary); color: white; }
#cp-icon {
    width: 76px; height: 76px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 2rem; color: white;
    animation: popupPulse 2.5s infinite;
}
@keyframes popupPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50% { box-shadow: 0 0 0 16px rgba(99,102,241,0); }
}
#cp-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
#cp-box p { color: var(--gray); font-size: 0.92rem; margin-bottom: 26px; line-height: 1.65; }
#cp-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--gradient-main);
    color: white; text-decoration: none;
    padding: 17px 36px; border-radius: 50px;
    font-size: 1.2rem; font-weight: 800;
    box-shadow: 0 10px 30px rgba(99,102,241,0.35);
    transition: all 0.3s;
}
#cp-btn:hover { color: white; opacity: 0.9; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(99,102,241,0.45); }
#cp-note { margin-top: 14px; font-size: 0.74rem; color: var(--gray); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: var(--gradient-dark);
    padding: 150px 0 90px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    top: -200px; right: -200px;
}
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    color: white; font-size: 3rem; font-weight: 700; margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.breadcrumb-item a { color: var(--primary-light); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.55); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-section .container { padding: 120px 0 80px; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-10px); }
    .about-card { padding: 38px; }
    .section-title h2 { font-size: 2.2rem; }
    .cta h2 { font-size: 2rem; }
}
@media (max-width: 767px) {
    .hero-section { min-height: auto; }
    .hero-section .container { padding: 110px 16px 70px; }
    .hero-badge { font-size: 0.75rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns a { justify-content: center; }
    .hero-stats { gap: 10px; }
    .hero-stat { padding: 12px 14px; }
    .hero-stat strong { font-size: 1.4rem; }
    .slider-arrow { display: none; }
    .about-card { padding: 24px; }
    .coverage-box { padding: 35px 24px; }
    .section-title h2 { font-size: 1.85rem; }
    .cta h2 { font-size: 1.75rem; }
    .page-hero { padding: 110px 0 55px; }
    .page-hero h1 { font-size: 2rem; }
    .stat-box .stat-number { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .hero-section .container { padding: 95px 14px 55px; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
    .hero-stat { text-align: center; }
    .section-title h2 { font-size: 1.6rem; }
    .cta h2 { font-size: 1.5rem; }
    .coverage-box h3 { font-size: 1.6rem; }
    .price-amount { font-size: 2.6rem; }
}
