/* ================================================================
   STARLINK ULTRANET — bold multicolor
   Masculine palette: navy, cyan, teal, gold, orange, crimson
   ================================================================ */

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

:root {
    /* Masculine palette */
    --c-navy: #0f172a;
    --c-navy-2: #1e293b;
    --c-navy-3: #334155;
    --c-cyan: #22d3ee;
    --c-sky: #0ea5e9;
    --c-blue: #2563eb;
    --c-indigo: #4f46e5;
    --c-teal: #14b8a6;
    --c-emerald: #10b981;
    --c-green: #22c55e;
    --c-gold: #fbbf24;
    --c-amber: #f59e0b;
    --c-orange: #f97316;
    --c-red: #ef4444;
    --c-crimson: #dc2626;
    --c-slate: #64748b;
    --grad-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #0369a1 70%, #0891b2 100%);
    --grad-ocean: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 100%);
    --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    --grad-fire: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --grad-forest: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --grad-royal: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    --grad-sunrise: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ef4444 100%);
    --radius: 20px;
    --radius-sm: 14px;
    --radius-lg: 28px;
    --shadow-card: 0 20px 60px -20px rgba(15, 23, 42, 0.4);
    --shadow-soft: 0 8px 30px -8px rgba(15, 23, 42, 0.2);
    --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.4);
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
}

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


/* ================================================================
   BACKGROUND
   ================================================================ */

.bg-layer {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}


/* ================================================================
   TOP BAR
   ================================================================ */

.top-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 60%, #0369a1 100%);
    color: #fff;
    font-size: 0.82rem;
    padding: 10px 0;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(34, 211, 238, 0.25);
}

.top-bar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
}

.top-item i {
    color: #22d3ee;
    font-size: 0.75rem;
}

.top-social {
    display: flex;
    gap: 14px;
}

.top-social a {
    color: #94a3b8;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-social a:hover {
    color: #22d3ee;
    transform: translateY(-2px);
}


/* ================================================================
   HEADER
   ================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.15);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 14px;
    border: 1px solid rgba(14, 165, 233, 0.25);
    position: relative;
    transition: var(--transition);
}

.logo:hover .logo-mark {
    transform: rotate(6deg) scale(1.05);
    box-shadow: 0 0 24px rgba(14, 165, 233, 0.4);
}

.logo-mark.small {
    width: 38px;
    height: 38px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.orbit-sat {
    transform-origin: 32px 32px;
    animation: satOrbit 6s linear infinite;
}

.orbit-ring,
.orbit-ring-2 {
    transform-origin: 32px 32px;
    animation: ringSpin 12s linear infinite;
}

.orbit-ring-2 {
    animation-duration: 16s;
    animation-direction: reverse;
}

.sig-wave {
    animation: sigPulse 2.4s ease-in-out infinite;
}

.sig-wave-2 {
    animation: sigPulse 2.4s ease-in-out infinite 0.4s;
}

@keyframes satOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes sigPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text small {
    font-size: 0.6rem;
    font-weight: 700;
    color: #f59e0b;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 6px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    transition: var(--transition);
}

.nav-link i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.nav-link:hover i {
    color: #2563eb;
    opacity: 1;
}

.nav-link.active {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: #fff;
    box-shadow: 0 6px 20px -4px rgba(37, 99, 235, 0.5);
}

.nav-link.active i {
    color: #fff;
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: #fff;
    box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -6px rgba(37, 99, 235, 0.6);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 32px;
    font-size: 1rem;
}


/* Glow-pulse animation for buttons */

.glow-pulse {
    animation: glowPulseBtn 2.4s ease-in-out infinite;
    position: relative;
}

.glow-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, #22d3ee, #fbbf24, #ef4444, #22d3ee);
    background-size: 300% 300%;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
    animation: gradientShift 3s ease infinite;
}

@keyframes glowPulseBtn {
    0%,
    100% {
        box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.5), 0 0 0 0 rgba(34, 211, 238, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.5), 0 0 0 12px rgba(34, 211, 238, 0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-staff-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #047857;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-staff-login:hover {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.4);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
}

.mobile-toggle span {
    display: block;
    height: 2.5px;
    background: #0f172a;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle span:nth-child(1) {
    width: 100%;
}

.mobile-toggle span:nth-child(2) {
    width: 70%;
}

.mobile-toggle span:nth-child(3) {
    width: 100%;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 100%;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 100%;
}


/* ================================================================
   HERO — deep navy → blue → teal
   ================================================================ */

.hero {
    position: relative;
    padding: 70px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #0369a1 75%, #0891b2 100%);
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.22) 0%, transparent 45%), radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.28) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: #fde68a;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 12px #22d3ee;
    animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 12px rgba(34, 211, 238, 0);
    }
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #fff;
}

.grad-text {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 36px;
    font-weight: 500;
}

.hero-trust i {
    color: #22d3ee;
    margin-right: 6px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}

.hero-stat em {
    font-style: normal;
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
}

.hero-stat span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-router {
    position: relative;
    width: 280px;
    height: 220px;
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

.router-body {
    position: absolute;
    inset: 40px 0 0 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    padding: 20px;
    overflow: hidden;
}

.router-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(34, 211, 238, 0.3), transparent 60%);
    pointer-events: none;
}

.router-leds {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.router-leds span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 8px #22d3ee;
    animation: ledBlink 1.4s ease-in-out infinite;
}

.router-leds span:nth-child(1) {
    animation-delay: 0s;
}

.router-leds span:nth-child(2) {
    animation-delay: 0.2s;
}

.router-leds span:nth-child(3) {
    animation-delay: 0.4s;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.router-leds span:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes ledBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.router-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    font-weight: 600;
}

.router-antennas {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
}

.router-antennas span {
    width: 4px;
    height: 26px;
    background: linear-gradient(180deg, #22d3ee, transparent);
    border-radius: 2px;
    position: relative;
}

.router-antennas span::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 12px #22d3ee;
    animation: ledBlink 1.2s ease-in-out infinite;
}

.router-antennas span:nth-child(2)::before {
    animation-delay: 0.3s;
    background: #fbbf24;
    box-shadow: 0 0 12px #fbbf24;
}

.wifi-waves {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    pointer-events: none;
}

.wifi-waves span {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    border: 2px solid #22d3ee;
    border-radius: 50%;
    opacity: 0;
    animation: wifiExpand 3s ease-out infinite;
}

.wifi-waves span:nth-child(1) {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.wifi-waves span:nth-child(2) {
    width: 40px;
    height: 40px;
    animation-delay: 0.6s;
}

.wifi-waves span:nth-child(3) {
    width: 40px;
    height: 40px;
    animation-delay: 1.2s;
}

.wifi-waves span:nth-child(4) {
    width: 40px;
    height: 40px;
    animation-delay: 1.8s;
}

@keyframes wifiExpand {
    0% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(0.4);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.4);
    }
}

.float-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
    color: #fff;
}

.float-card i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.95rem;
}

.float-card-1 {
    top: 30px;
    left: 0;
    animation: floatCard 5s ease-in-out infinite;
}

.float-card-1 i {
    background: rgba(34, 211, 238, 0.25);
    color: #22d3ee;
}

.float-card-2 {
    top: 180px;
    right: -10px;
    animation: floatCard 6s ease-in-out infinite 0.8s;
}

.float-card-2 i {
    background: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}

.float-card-3 {
    bottom: 40px;
    left: 20px;
    animation: floatCard 7s ease-in-out infinite 0.4s;
}

.float-card-3 i {
    background: rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.float-card strong {
    display: block;
    font-size: 0.92rem;
    color: #fff;
}

.float-card small {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.data-stream {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -40px;
    width: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.data-stream span {
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, #22d3ee, transparent);
    border-radius: 2px;
    animation: dataFlow 2.4s linear infinite;
}

.data-stream span:nth-child(1) {
    animation-delay: 0s;
}

.data-stream span:nth-child(2) {
    animation-delay: 0.4s;
}

.data-stream span:nth-child(3) {
    animation-delay: 0.8s;
}

.data-stream span:nth-child(4) {
    animation-delay: 1.2s;
}

.data-stream span:nth-child(5) {
    animation-delay: 1.6s;
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(500px);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-cue span {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-cue span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #22d3ee;
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 22px;
        opacity: 0;
    }
}

.scroll-cue em {
    font-style: normal;
}


/* ================================================================
   LIVE STRIP — bright teal
   ================================================================ */

.live-strip {
    background: linear-gradient(90deg, #0d9488 0%, #0891b2 100%);
    color: #fff;
    padding: 16px 0;
    position: relative;
    overflow: hidden;
}

.live-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.18), transparent 40%);
    pointer-events: none;
}

.live-strip-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.live-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
}

.live-item i {
    color: #fde68a;
}

.live-item strong {
    color: #fde68a;
    font-weight: 700;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #fde68a;
    border-radius: 50%;
    box-shadow: 0 0 10px #fde68a;
    animation: pulseDot 1.6s ease-in-out infinite;
}


/* ================================================================
   PROMO — warm amber/gold
   ================================================================ */

.promo-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(249, 115, 22, 0.18), transparent 50%);
    pointer-events: none;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.promo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 18px;
    color: #fff;
    font-size: 1.5rem;
    animation: floatCard 4s ease-in-out infinite;
    box-shadow: 0 12px 30px -8px rgba(249, 115, 22, 0.5);
}

.promo-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 4px;
}

.promo-text h3 span {
    color: #c2410c;
}

.promo-text p {
    color: #78350f;
    font-size: 0.92rem;
}

.promo-text strong {
    color: #7c2d12;
}

.promo-text small {
    display: block;
    color: #92400e;
    font-size: 0.8rem;
    margin-top: 4px;
}

.promo-text small i {
    color: #c2410c;
}

.inline-link {
    color: #c2410c;
    font-weight: 700;
    border-bottom: 2px dashed #c2410c;
}


/* ================================================================
   SECTIONS
   ================================================================ */

section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2563eb;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(34, 211, 238, 0.12) 100%);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.section-header h2 span {
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: #64748b;
    font-size: 1.02rem;
}

.section-sub strong {
    color: #0f172a;
    font-weight: 700;
}


/* ================================================================
   PACKAGES — 3D FLIP CARDS with glowing animated borders
   ================================================================ */

.packages {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    perspective: 1400px;
}

.flip-card {
    position: relative;
    height: 480px;
    perspective: 1400px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.flip-back {
    transform: rotateY(180deg);
    padding: 28px 24px 22px;
}


/* FRONT — dark navy base with colored tint */

.flip-front {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    border: 1px solid rgba(34, 211, 238, 0.25);
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.6);
    text-align: center;
    align-items: center;
}

.flip-front.plan-student {
    background: linear-gradient(160deg, #1e3a8a 0%, #0f172a 100%);
}

.flip-front.plan-basic {
    background: linear-gradient(160deg, #0c4a6e 0%, #0f172a 100%);
}

.flip-front.plan-pro {
    background: linear-gradient(160deg, #7c2d12 0%, #0f172a 100%);
}

.flip-front.plan-business {
    background: linear-gradient(160deg, #064e3b 0%, #0f172a 100%);
}


/* Rotating glow ring around the card */

.glow-ring {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: conic-gradient(from 0deg, #22d3ee, #fbbf24, #ef4444, #22d3ee);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    animation: rotateGlow 4s linear infinite;
    pointer-events: none;
    transition: opacity 0.4s;
}

.flip-front:hover .glow-ring,
.flip-card.popular .glow-ring {
    opacity: 1;
}

.flip-card.popular .glow-ring {
    animation-duration: 3s;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Popular glows continuously */

.flip-card.popular .flip-front {
    animation: cardPulse 2.4s ease-in-out infinite;
}

@keyframes cardPulse {
    0%,
    100% {
        box-shadow: 0 20px 50px -20px rgba(249, 115, 22, 0.5), 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 20px 50px -20px rgba(249, 115, 22, 0.5), 0 0 0 8px rgba(249, 115, 22, 0);
    }
}

.package-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(251, 191, 36, 0.4);
    align-self: center;
}

.popular-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #0f172a;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 20px -4px rgba(249, 115, 22, 0.6);
    z-index: 2;
    animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.package-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    font-size: 1.7rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 211, 238, 0.35);
    color: #22d3ee;
}

.flip-front.plan-pro .package-icon {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
}

.flip-front.plan-business .package-icon {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.4);
}

.flip-front h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.package-speed {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.speed-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.speed-unit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
}

.package-price {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #22d3ee;
}

.flip-front.plan-student .package-price {
    color: #93c5fd;
}

.flip-front.plan-basic .package-price {
    color: #22d3ee;
}

.flip-front.plan-pro .package-price {
    color: #fbbf24;
}

.flip-front.plan-business .package-price {
    color: #34d399;
}

.package-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.package-features {
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
    flex: 1;
}

.package-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    font-weight: 500;
}

.package-features i {
    color: #22d3ee;
    margin-top: 4px;
    font-size: 0.75rem;
}

.flip-front.plan-pro .package-features i {
    color: #fbbf24;
}

.flip-front.plan-business .package-features i {
    color: #34d399;
}

.flip-btn {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.82rem;
    margin-top: auto;
}

.flip-btn:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: #22d3ee;
    color: #fff;
}


/* BACK — bright, high contrast */

.flip-back {
    color: #fff;
    text-align: left;
    justify-content: space-between;
}

.flip-back.plan-student-back {
    background: linear-gradient(160deg, #2563eb, #1e3a8a);
}

.flip-back.plan-basic-back {
    background: linear-gradient(160deg, #0ea5e9, #0369a1);
}

.flip-back.plan-pro-back {
    background: linear-gradient(160deg, #ea580c, #9a3412);
}

.flip-back.plan-business-back {
    background: linear-gradient(160deg, #059669, #065f46);
}

.flip-back h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.spec-row span {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.spec-row strong {
    color: #fff;
    font-weight: 700;
}

.flip-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 8px 0 14px;
    text-align: center;
}

.flip-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.flip-cta {
    width: 100%;
    justify-content: center;
    background: #fff;
    color: #0f172a;
    font-weight: 800;
    padding: 11px 20px;
    margin-bottom: 6px;
}

.flip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.flip-back-btn {
    width: 100%;
    justify-content: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 7px 16px;
}

.flip-back-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* ================================================================
   COMPARE TABLE
   ================================================================ */

.compare-block {
    margin-top: 60px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.compare-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-block h3 i {
    color: #2563eb;
}

.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.compare-table th {
    background: #f1f5f9;
    font-weight: 800;
    color: #0f172a;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #475569;
}

.compare-table th.hl,
.compare-table td.hl {
    background: linear-gradient(180deg, #fef3c7, #fde68a);
    color: #0f172a;
    font-weight: 800;
}

.compare-table tr:hover td {
    background: #f8fafc;
}

.compare-table tr:hover td.hl {
    background: linear-gradient(180deg, #fde68a, #fcd34d);
}

.c-yes {
    color: #10b981;
    font-size: 1.1rem;
}

.c-no {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.row-price td {
    font-weight: 800;
    font-size: 1rem;
    color: #0f172a;
    padding-top: 20px;
    border-top: 2px solid #0f172a;
}

.row-price td.hl {
    color: #7c2d12;
}


/* ================================================================
   SPEED TEST
   ================================================================ */

.speedtest {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.speedtest::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.15), transparent 50%);
    pointer-events: none;
}

.speedtest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.speedtest-text .section-label {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.3);
}

.speedtest-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #fff;
}

.speedtest-text h2 span {
    background: linear-gradient(135deg, #22d3ee 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speedtest-text p {
    color: #94a3b8;
    font-size: 1.02rem;
    margin-bottom: 28px;
}

.speed-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.speed-stat {
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.speed-stat i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    font-size: 1rem;
}

.speed-stat strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.speed-stat span {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speedtest-visual {
    display: flex;
    justify-content: center;
}

.gauge-wrap {
    position: relative;
    width: 300px;
    height: 300px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

#gaugeArc {
    transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.6));
}

.gauge-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gauge-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

.gauge-unit {
    color: #22d3ee;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}


/* ================================================================
   COVERAGE
   ================================================================ */

.coverage {
    background: linear-gradient(180deg, #ecfeff 0%, #e0f2fe 100%);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-visual {
    display: flex;
    justify-content: center;
}

.map-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}

.kenya-map {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(20, 184, 166, 0.3));
}

.map-path {
    animation: mapPulse 4s ease-in-out infinite;
}

@keyframes mapPulse {
    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(20, 184, 166, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.7));
    }
}

.city-dot {
    animation: cityPulse 2s ease-in-out infinite;
}

.city-ring {
    animation: cityRing 2s ease-out infinite;
    transform-origin: 200px 180px;
}

@keyframes cityPulse {
    0%,
    100% {
        r: 5;
    }
    50% {
        r: 6;
    }
}

@keyframes cityRing {
    0% {
        r: 10;
        opacity: 0.8;
    }
    100% {
        r: 30;
        opacity: 0;
    }
}

.map-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid #14b8a6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mapRing 3s ease-out infinite;
    pointer-events: none;
}

.map-pulse-ring.ring-2 {
    animation-delay: 1s;
    border-color: #22d3ee;
}

.map-pulse-ring.ring-3 {
    animation-delay: 2s;
    border-color: #0ea5e9;
}

@keyframes mapRing {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.9;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

.coverage-text .section-label {
    color: #0d9488;
    background: rgba(20, 184, 166, 0.12);
    border-color: rgba(20, 184, 166, 0.25);
}

.coverage-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.coverage-text h2 span {
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-text p {
    color: #475569;
    margin-bottom: 24px;
    font-size: 1.02rem;
}

.coverage-text strong {
    color: #0f172a;
    font-weight: 700;
}

.checker-box {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.checker-box input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border-radius: 50px;
    border: 2px solid #bae6fd;
    background: #fff;
    color: #0f172a;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    font-weight: 500;
}

.checker-box input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.coverage-result {
    padding: 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    transition: var(--transition);
}

.coverage-result.success {
    color: #047857;
}

.coverage-result.error {
    color: #dc2626;
}

.coverage-result.info {
    color: #0369a1;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cov-stat {
    background: #fff;
    border: 2px solid #a7f3d0;
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 20px -8px rgba(16, 185, 129, 0.25);
}

.cov-stat:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -8px rgba(16, 185, 129, 0.4);
}

.cov-stat i {
    color: #10b981;
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: block;
}

.cov-stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #064e3b;
}

.cov-stat span {
    font-size: 0.7rem;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}


/* ================================================================
   HOW IT WORKS
   ================================================================ */

.how-it-works {
    background: #fff;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.hiw-step {
    background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.hiw-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.25);
}

.hiw-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.15);
    position: absolute;
    top: 12px;
    right: 18px;
    line-height: 1;
}

.hiw-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 12px 26px -10px rgba(37, 99, 235, 0.6);
}

.hiw-step:nth-child(2) .hiw-icon {
    background: linear-gradient(135deg, #0ea5e9, #0891b2);
    box-shadow: 0 12px 26px -10px rgba(14, 165, 233, 0.6);
}

.hiw-step:nth-child(3) .hiw-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 12px 26px -10px rgba(245, 158, 11, 0.6);
}

.hiw-step:nth-child(4) .hiw-icon {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    box-shadow: 0 12px 26px -10px rgba(16, 185, 129, 0.6);
}

.hiw-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.hiw-step p {
    color: #64748b;
    font-size: 0.9rem;
}


/* ================================================================
   FEATURES
   ================================================================ */

.features {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px -12px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px -12px rgba(37, 99, 235, 0.3);
}

.feature-card:hover::after {
    height: 8px;
}

.feature-card.c-violet::after {
    background: linear-gradient(90deg, #4f46e5, #2563eb);
}

.feature-card.c-blue::after {
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
}

.feature-card.c-red::after {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.feature-card.c-orange::after {
    background: linear-gradient(90deg, #f97316, #f59e0b);
}

.feature-card.c-teal::after {
    background: linear-gradient(90deg, #14b8a6, #0891b2);
}

.feature-card.c-gold::after {
    background: linear-gradient(90deg, #fbbf24, #f97316);
}

.feature-card .icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    transition: var(--transition);
}

.feature-card.c-violet .icon {
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    box-shadow: 0 10px 24px -8px rgba(79, 70, 229, 0.6);
}

.feature-card.c-blue .icon {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.6);
}

.feature-card.c-red .icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 10px 24px -8px rgba(239, 68, 68, 0.6);
}

.feature-card.c-orange .icon {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    box-shadow: 0 10px 24px -8px rgba(249, 115, 22, 0.6);
}

.feature-card.c-teal .icon {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    box-shadow: 0 10px 24px -8px rgba(20, 184, 166, 0.6);
}

.feature-card.c-gold .icon {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 10px 24px -8px rgba(245, 158, 11, 0.6);
}

.feature-card:hover .icon {
    transform: scale(1.1) rotate(-6deg);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    font-size: 0.92rem;
}


/* ================================================================
   TESTIMONIALS
   ================================================================ */

.testimonials {
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    box-shadow: 0 12px 30px -12px rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 6rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(245, 158, 11, 0.15);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px -12px rgba(245, 158, 11, 0.35);
}

.stars {
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.stars i {
    margin-right: 2px;
}

.testimonial-card>p {
    color: #78350f;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 22px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-author .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
}

.testimonial-card:nth-child(1) .avatar {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.testimonial-card:nth-child(2) .avatar {
    background: linear-gradient(135deg, #0ea5e9, #0891b2);
}

.testimonial-card:nth-child(3) .avatar {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.testimonial-author strong {
    display: block;
    font-size: 0.94rem;
    color: #78350f;
    font-weight: 700;
}

.testimonial-author span {
    color: #a16207;
    font-size: 0.8rem;
}


/* ================================================================
   FAQ
   ================================================================ */

.faq {
    background: #fff;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.faq-item[open] {
    background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #93c5fd;
    box-shadow: 0 12px 30px -12px rgba(37, 99, 235, 0.2);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.98rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2563eb;
    transition: transform 0.3s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '\f068';
}

.faq-item p {
    margin-top: 14px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
}


/* ================================================================
   CTA — bold fire gradient
   ================================================================ */

.cta-banner {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
    text-align: center;
    padding: 90px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(253, 230, 138, 0.35), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15), transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: #fff;
}

.cta-content h2 span {
    color: #fef9c3;
    text-shadow: 0 2px 20px rgba(254, 249, 195, 0.5);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    font-size: 1.08rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #b91c1c;
}

.cta-banner .btn-primary:hover {
    background: #fef9c3;
    color: #7c2d12;
}


/* ================================================================
   CONTACT
   ================================================================ */

.contact {
    background: linear-gradient(180deg, #eff6ff 0%, #e0f2fe 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 700;
    margin: 12px 0;
    letter-spacing: -0.02em;
    color: #0c4a6e;
}

.contact-info h2 span {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info>p {
    color: #075985;
    margin-bottom: 28px;
    font-size: 1.02rem;
}

.contact-info .section-label {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 8px 20px -10px rgba(37, 99, 235, 0.25);
}

.channel-item:hover {
    transform: translateX(8px);
    border-color: #2563eb;
    box-shadow: 0 14px 30px -10px rgba(37, 99, 235, 0.4);
}

.channel-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #fff;
}

.channel-item:nth-child(1) .channel-icon {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.channel-item:nth-child(2) .channel-icon {
    background: linear-gradient(135deg, #10b981, #25D366);
}

.channel-item:nth-child(3) .channel-icon {
    background: linear-gradient(135deg, #0ea5e9, #0891b2);
}

.channel-item:nth-child(4) .channel-icon {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.channel-item strong {
    display: block;
    color: #0c4a6e;
    font-size: 0.94rem;
    font-weight: 700;
}

.channel-item span {
    color: #075985;
    font-size: 0.85rem;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 20px 50px -20px rgba(37, 99, 235, 0.35);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #dbeafe;
    color: #0c4a6e;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #075985;
    margin-bottom: 6px;
}

.form-group label span {
    color: #2563eb;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #dbeafe;
    background: #eff6ff;
    color: #0c4a6e;
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #93c5fd;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}


/* ================================================================
   FOOTER — dark navy
   ================================================================ */

.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 70px 0 24px;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 14px 0 18px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-social a:nth-child(1):hover {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px);
}

.footer-social a:nth-child(2):hover {
    background: #1da1f2;
    color: #fff;
    transform: translateY(-3px);
}

.footer-social a:nth-child(3):hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
    transform: translateY(-3px);
}

.footer-social a:nth-child(4):hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #22d3ee;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #94a3b8;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.made-by {
    color: #cbd5e1;
    transition: var(--transition);
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.made-by::before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    color: #25D366;
    font-size: 0.9rem;
}

.made-by strong {
    color: #25D366;
    font-weight: 700;
}

.made-by:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #22d3ee;
}


/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */

.wa-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 500;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.wa-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.7);
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* ================================================================
   BACK TO TOP
   ================================================================ */

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px -6px rgba(37, 99, 235, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px -6px rgba(37, 99, 235, 0.7);
}


/* ================================================================
   SCROLL REVEAL
   ================================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .main-nav ul {
        gap: 2px;
    }
    .nav-link {
        padding: 8px 12px;
        font-size: 0.82rem;
    }
    .nav-link span {
        display: none;
    }
    .nav-link i {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        height: 420px;
    }
    .speedtest-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.72rem;
        padding: 8px 0;
    }
    .top-bar-flex {
        justify-content: center;
        gap: 8px;
    }
    .hide-sm {
        display: none !important;
    }
    .top-social {
        display: none;
    }
    .site-header {
        padding: 10px 0;
    }
    .logo-mark {
        width: 40px;
        height: 40px;
    }
    .logo-text span {
        font-size: 1rem;
    }
    .logo-text small {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        padding: 90px 24px 40px;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 200;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }
    .main-nav.open {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 6px;
    }
    .nav-link {
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 0.95rem;
        color: #0f172a;
    }
    .nav-link span {
        display: inline;
    }
    .nav-link i {
        font-size: 1rem;
    }
    .nav-link:hover {
        background: rgba(37, 99, 235, 0.08);
    }
    .nav-link.active {
        color: #fff;
    }
    .mobile-toggle {
        display: flex;
        z-index: 210;
    }
    .btn-staff-login .btn-text {
        display: none;
    }
    .btn-staff-login {
        padding: 10px 12px;
    }
    .btn-get-started .btn-text {
        display: none;
    }
    .btn-get-started {
        padding: 10px 14px;
    }
    .hero {
        padding: 40px 0 70px;
    }
    .hero-visual {
        height: 380px;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero-stat strong {
        font-size: 1.5rem;
    }
    .visual-router {
        width: 230px;
        height: 180px;
    }
    .router-body {
        inset: 30px 0 0 0;
        border-radius: 18px;
    }
    .float-card {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .float-card-2 {
        right: 0;
    }
    .data-stream {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    section {
        padding: 70px 0;
    }
    .scroll-cue {
        display: none;
    }
    .live-strip-flex {
        justify-content: center;
        font-size: 0.78rem;
    }
    .speed-stats {
        grid-template-columns: 1fr;
    }
    .gauge-wrap {
        width: 240px;
        height: 240px;
    }
    .gauge-value {
        font-size: 2.4rem;
    }
}

@media (max-width: 560px) {
    .packages-grid,
    .features-grid,
    .testimonials-grid,
    .hiw-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 1.9rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }
    .coverage-stats {
        grid-template-columns: 1fr;
    }
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-buttons .btn {
        justify-content: center;
    }
    .wa-float {
        bottom: 18px;
        left: 18px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    .back-to-top {
        bottom: 18px;
        right: 18px;
        width: 46px;
        height: 46px;
    }
    .flip-card {
        height: 470px;
    }
    .checker-box input {
        min-width: 100%;
    }
    .checker-box button {
        width: 100%;
        justify-content: center;
    }
}
