:root {
    /* Premium 2026 Palette */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #0F172A;
    --gray-950: #09090b;

    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;

    --green-500: #22c55e;
    --green-600: #16a34a;
    --yellow-500: #f59e0b;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 24px;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.1), 0 12px 24px rgba(0, 0, 0, 0.06);

    --max-width: 1200px;

    /* Immersive Gradients */
    --bg-gradient-light: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
    --bg-gradient-alt: linear-gradient(180deg, #F8FAFC 0%, #f1f5f9 100%);
    --bg-gradient-vibrant: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    --bg-glass-light: rgba(255, 255, 255, 0.7);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER - Precision Glass 2026 ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 38px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

nav {
    display: flex;
    gap: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-600);
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* ========== BUTTONS - Premium ========== */
/* ========== BUTTONS - Premium G2 Elite ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: var(--font);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-icon-left {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.btn-icon-right {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    flex-shrink: 0;
}

.btn-lg .btn-icon-left,
.btn-lg .btn-icon-right {
    width: 22px;
    height: 22px;
}

.btn-primary {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-900);
}

.btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    height: 56px;
    padding: 0 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

.hero {
    position: relative;
    padding: 160px 0 60px;
    text-align: center;
    background: url('images/hero-bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.hero-background-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.4;
}

.mesh-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatMesh 20s infinite alternate-reverse ease-in-out;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-duration: 25s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    top: 10%;
    right: -100px;
    animation-duration: 18s;
    animation-delay: -5s;
}

.sphere-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: 30%;
    animation-duration: 30s;
    animation-delay: -10s;
}

/* Ethereal Light Beam */
.hero-light-beam {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 150%;
    height: 150%;
    background: linear-gradient(135deg,
            transparent 0%,
            transparent 35%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 65%,
            transparent 100%);
    transform: rotate(-15deg);
    animation: beamSweep 15s infinite ease-in-out;
    pointer-events: none;
}

/* Digital Dust Particles */
.hero-digital-dust {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 400px 400px;
    opacity: 0.4;
    animation: dustPulse 8s infinite alternate ease-in-out;
}

/* Grain / Noise Overlay */
.hero-grain-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

@keyframes beamSweep {

    0%,
    100% {
        transform: translate(-5%, -5%) rotate(-15deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(5%, 5%) rotate(-15deg);
        opacity: 1;
    }
}

@keyframes dustPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes floatMesh {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 40px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-700);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
    animation: fadeInUp 0.8s ease-out both;
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--blue-600);
    width: 0;
    animation:
        typewriter 1.5s steps(31, end) forwards,
        blink-caret 0.8s step-end infinite;
    animation-delay: 0.4s;
    /* Faster start */
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--blue-600)
    }
}


.hero h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    color: var(--gray-950);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--blue-600) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-sub {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.6;
    letter-spacing: -0.2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========== HERO TRUST BADGES ========== */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05)) grayscale(10%);
}

.trust-badge:hover {
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12)) grayscale(0);
}

.badge-img {
    height: 44px;
    width: auto;
    display: block;
}

.badge-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    /* Golden yellow */
    font-size: 14px;
    line-height: 1;
}

.badge-stars span {
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-micro-copy {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 16px;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto 60px;
    }

    .hero-trust-badges {
        flex-wrap: wrap;
        gap: 24px 40px;
    }
}

/* ========== STATS BAR - G2 Elite 2026 ========== */
/* ========== STATS BAR - Elite Glass Dock ========== */
.stats-bar {
    padding: 0;
    margin-top: -60px; /* Precise overlap for floating effect */
    position: relative;
    z-index: 20;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.85); /* Slightly more solid for readability */
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08); /* Softer, deeper shadow */
}

.stat {
    padding: 32px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04),
        0 0 20px rgba(37, 99, 235, 0.1);
}

.stat:hover::after {
    opacity: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.05));
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.stat:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: #2563eb;
    color: white;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.4s ease;
}

.stat:hover .stat-value {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    transition: color 0.4s ease;
}

.stat:hover .stat-label {
    color: #1e1b4b;
    /* Deep Indigo for high contrast */
    opacity: 0.9;
}

/* ========== SECTIONS - Premium ========== */
.section {
    padding: 120px 0;
    background: var(--bg-gradient-light);
}

.section-alt {
    background: var(--bg-gradient-alt);
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 18px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 72px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FEATURES - Premium Cards ========== */
/* ========== FEATURES - Modern Elite Grid ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue-600);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--blue-100);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
    color: var(--gray-800);
}

.feature-card:hover .feature-icon {
    background: var(--blue-600);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-950);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== STEPS - Elite 2026 Flow ========== */
.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-950);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

.step:hover .step-icon {
    background: var(--blue-600);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--white);
    color: var(--gray-950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.step p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 48px;
    }
    .step-icon {
        margin-bottom: 24px;
    }
}

/* ========== GLOBAL PRICING LOOKUP ========== */
.global-pricing-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-search-container {
    margin-bottom: 40px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-search-input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    font-size: 16px;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    outline: none;
}

.pricing-search-input:focus {
    border-color: var(--gray-900);
    box-shadow: var(--shadow-lg);
}

.search-icon-overlay {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    width: 20px;
    height: 20px;
}

.popular-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.rate-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 28px;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.rate-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-200);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.rate-card__flag-img {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.rate-card__name {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.rate-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.full-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar */
.full-country-grid::-webkit-scrollbar {
    width: 6px;
}

.full-country-grid::-webkit-scrollbar-track {
    background: var(--gray-50);
}

.full-country-grid::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 10px;
}

.country-item {
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.country-info {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.country-item:hover {
    background: var(--gray-100);
}

.country-item__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-item__price {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
}

@media (max-width: 992px) {
    .full-country-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .full-country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .full-country-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TRUSTED BY ========== */
.trusted-section {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-gradient-alt);
    border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.trusted-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-400);
    font-family: var(--font-mono);
}

/* ========== TESTIMONIAL ========== */
.testimonial-section {
    padding: 100px 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 200px;
    font-family: serif;
    color: var(--blue-50);
    line-height: 1;
    z-index: 0;
    opacity: 0.8;
}

.testimonial-stars {
    color: var(--yellow-500);
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.logo-img {
    height: 38px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-600);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 100px;
}

nav a:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

blockquote {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.5;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gray-900);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    font-size: 16px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========== SECURITY - Deep Obsidian ========== */
.security-section {
    padding: 120px 0;
    background: #09090b; 
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08), transparent 50%);
    pointer-events: none;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.security-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.security-item svg {
    width: 32px;
    height: 32px;
    color: var(--green-500);
}

.security-item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.security-item span {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== CTA - Immersive Elite 2026 ========== */
.cta-section {
    padding: 160px 0;
    background: #09090b; /* Deep Obsidian */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 80%);
    z-index: 1;
}

/* Floating Mesh Spheres for CTA */
.cta-glow-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.8;
}

.cta-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cta-section h2 {
    font-size: 48px;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.cta-section h2 span {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    color: var(--gray-400);
    font-size: 20px;
    margin-bottom: 48px;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Updated Button for CTA */
.btn-cta {
    background: var(--white);
    color: #000;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    background: var(--blue-50);
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.stat:last-child {
    border-right: none;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover .stat-icon {
    transform: scale(1.15) rotate(8deg);
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--gray-950);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1.5px;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-bar {
        margin-top: -20px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
        padding: 40px 20px;
    }
    .stat:nth-child(2n) {
        border-right: none;
    }
}

/* ========== FOOTER - G2 Elite 2026 (Light) ========== */
footer {
    padding: 120px 0 60px;
    background: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-100);
}

.footer-partners-bar {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-50);
    text-align: center;
}

.footer-trust-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.footer-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    opacity: 1;
}

.footer-trust-item img {
    height: 24px;
    width: auto;
    filter: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-trust-item:hover img {
    transform: scale(1.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-legal-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--blue-600);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-status {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green-500);
    display: inline-block;
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}

.footer-crypto-row {
    display: flex;
    gap: 16px;
}

.footer-crypto-item img {
    height: 20px;
    filter: none;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-crypto-item:hover img {
    transform: translateY(-3px) scale(1.1);
}

@media (max-width: 1024px) {

    .header-links,
    .header-buttons {
        gap: 12px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section h2 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        order: 3;
        /* Move copyright to bottom on mobile */
    }

    .footer-status {
        order: 1;
    }

    .footer-bottom-right {
        order: 2;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .header-buttons .btn-ghost {
        display: none;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-sub {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .code-preview {
        margin: 0 -24px;
        border-radius: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section h2 {
        font-size: 32px;
    }

    .section-sub {
        margin-bottom: 48px;
    }

    .stat-value {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        display: none;
    }

    .step {
        max-width: 100%;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .logo-marquee-track {
        gap: 40px;
    }

    .marquee-item {
        width: 80px;
    }

    blockquote {
        font-size: 18px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== LOGO MARQUEE - Infinite Scroll ========== */
.trusted-section {
    padding: 80px 0;
    background: var(--bg-gradient-alt);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.logo-marquee-container {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
    gap: 100px;
    align-items: center;
}

.marquee-item {
    width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item:hover {
    opacity: 1;
    transform: scale(1.15);
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Pricing Footer Note */
.pricing-footer-note {
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-footer-note p {
    margin: 0;
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.pricing-footer-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-left: 2px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease;
}

.pricing-footer-note a:hover {
    color: #000;
    border-bottom-color: var(--primary-color);
}

/* FAQ - Modern Elite 2-Column Grid */
.faq-accordion {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: start;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--blue-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-lg);
    background: #fff;
}

.faq-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--gray-900);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    color: var(--gray-800);
    transition: color 0.3s ease;
    line-height: 1.4;
}

.faq-item.active .faq-header h3 {
    color: var(--blue-600);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--blue-600);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-body {
    max-height: 300px;
    opacity: 1;
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 14px;
}

.faq-content p {
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}