:root {
    /* Cyber Tech Neon Green Theme */
    --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;

    --primary-50: #ecfdf5;
    --primary-100: #d1fae5;
    --primary-200: #a7f3d0;
    --primary-500: #10b981;
    --primary-600: #059669;
    --primary-700: #047857;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow: 0 8px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.1);

    --max-width: 1200px;
    
    /* Immersive Gradients */
    --bg-gradient-dark: linear-gradient(180deg, #09090b 0%, #18181b 100%);
    --bg-gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --bg-gradient-alt: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

*, *::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;
}

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

.container {
    width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}

/* Header Navbar */
header {
    position: fixed; top: 0; left: 0; right: 0; height: 80px;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex; align-items: center;
}

.header-inner {
    width: 100%; max-width: var(--max-width); margin: 0 auto;
    padding: 0 24px; display: flex; justify-content: space-between; align-items: center;
}

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

.logo-img {
    height: 34px; width: auto; transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

nav {
    display: flex; gap: 8px; position: absolute; left: 50%; transform: translateX(-50%);
}

nav a {
    font-size: 14px; font-weight: 700; color: var(--gray-400); padding: 10px 20px;
    border-radius: 100px; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 6px;
}

nav a .nav-icon, .footer-links a .nav-icon {
    width: 15px; height: 15px; flex-shrink: 0;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

nav a:hover {
    color: var(--primary-500); background: rgba(255, 255, 255, 0.05);
}

.header-buttons {
    display: flex; gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 44px; padding: 0 22px; font-size: 14px; font-weight: 700;
    border-radius: var(--radius); 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-primary {
    background: var(--primary-500); color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--primary-600); transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05); color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent; color: var(--gray-300);
}

.btn-ghost:hover {
    color: var(--white); background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent; color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn-outline:hover {
    background: var(--primary-500); color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-lg {
    height: 54px; padding: 0 28px; font-size: 15px; border-radius: var(--radius);
}

.btn-block {
    width: 100%;
}

.hero {
    position: relative; padding: 180px 0 140px; text-align: left;
    background: url('images/hero-bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden; color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.85) 0%, rgba(9, 9, 11, 0.7) 100%);
    z-index: 1;
}

.hero-background-mesh {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2; pointer-events: none; overflow: hidden; opacity: 0.25;
}

.mesh-sphere {
    position: absolute; border-radius: 50%; filter: blur(120px);
    animation: floatMesh 25s infinite alternate-reverse ease-in-out;
}

.sphere-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    top: -200px; left: -100px;
}

.sphere-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
    top: 20%; right: -150px; animation-delay: -5s;
}

.sphere-3 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    bottom: -300px; left: 25%; animation-delay: -10s;
}

@keyframes floatMesh {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -60px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-light-beam {
    position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
    transform: rotate(-20deg); animation: beamSweep 12s infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
}

@keyframes beamSweep {
    0%, 100% { transform: translate(-3%, -3%) rotate(-20deg); }
    50% { transform: translate(3%, 3%) rotate(-20deg); }
}

.hero-grain-overlay {
    position: absolute; inset: 0; opacity: 0.015; 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 4;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px; font-size: 13px; font-weight: 700; color: var(--primary-100);
    margin-bottom: 24px; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.badge-dot {
    width: 6px; height: 6px; background: var(--primary-500); border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-500);
}

.hero h1 {
    font-family: var(--font-heading); font-size: 58px; font-weight: 800;
    line-height: 1.15; letter-spacing: -2px; margin-bottom: 32px;
    text-align: left;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-500) 0%, #34d399 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 20px; color: var(--gray-200); max-width: 100%; margin: 0 0 40px 0;
    line-height: 1.6; letter-spacing: -0.1px;
    text-align: left;
}

.hero-actions {
    display: flex; gap: 16px; justify-content: flex-start;
}

.hero-micro-copy {
    font-size: 12px; color: var(--gray-500); font-weight: 500; margin-top: 14px;
}

.hero-trust-badges {
    display: flex; justify-content: flex-start; gap: 16px; flex-wrap: wrap; align-items: center;
}

.trust-badge {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 8px 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-badge:hover {
    background: #ffffff;
    border-color: var(--primary-500);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.25);
}

.badge-img {
    height: 28px; width: auto; display: block;
}

.badge-stars {
    display: flex; gap: 2px; color: #fbbf24; font-size: 11px;
}

@media (max-width: 1024px) {
    .hero { padding: 140px 0 80px; text-align: center; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-left, .hero-right {
        align-items: center;
        text-align: center;
    }
    .hero h1 { text-align: center; font-size: 48px; }
    .hero-sub { text-align: center; margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-trust-badges { justify-content: center; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 38px; }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; width: 100%; }
}
/* Compact Ribbon Stats Bar */
.stats-bar {
    padding: 0; margin-top: -36px; position: relative; z-index: 20;
}

.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.12); border-radius: 14px;
    padding: 18px 24px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 1px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-grid:hover {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 24px 48px rgba(16, 185, 129, 0.08), 0 0 2px rgba(16, 185, 129, 0.3);
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 6px 16px;
    border: none;
    background: transparent;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: default;
}

/* Vertical divider lines between stats */
.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.15) 50%, transparent 100%);
    transition: all 0.4s ease;
}

.stat:hover:not(:last-child)::after {
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
}

.stat-icon {
    width: 36px; height: 36px; display: flex;
    align-items: center; justify-content: center;
    background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 8px; color: var(--primary-600); flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-icon svg {
    width: 16px; height: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat:hover .stat-icon {
    background: var(--primary-500); 
    border-color: var(--primary-500);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.stat:hover .stat-icon svg {
    transform: rotate(6deg);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading); font-size: 24px; font-weight: 800;
    line-height: 1.1; margin-bottom: 2px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-700) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.stat:hover .stat-value {
    background: linear-gradient(135deg, var(--primary-600) 0%, #34d399 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--gray-500);
    transition: color 0.4s ease;
}

.stat:hover .stat-label {
    color: var(--gray-700);
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat:nth-child(2)::after { display: none; }
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .stat::after { display: none !important; }
    .stat { border-bottom: 1px solid rgba(0, 0, 0, 0.05); padding-bottom: 12px; }
    .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Trusted Section */
.trusted-section {
    padding: 54px 0; text-align: center; background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trusted-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--gray-400); margin-bottom: 28px;
}

.logo-marquee-container {
    overflow: hidden; width: 100%; position: relative;
    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: max-content; animation: marquee 45s linear infinite; gap: 72px;
}

.marquee-item {
    display: flex; align-items: center; justify-content: center;
    filter: grayscale(100%) opacity(30%); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover {
    filter: grayscale(100%) opacity(75%) brightness(0.4);
    transform: scale(1.05);
}

.marquee-item img {
    height: 28px; width: auto; max-width: 130px; display: block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* General Sections */
.section {
    padding: 100px 0; background: var(--bg-gradient-light);
}

.section-alt {
    background: var(--bg-gradient-alt);
}

.section h2 {
    font-family: var(--font-heading); font-size: 40px; font-weight: 800;
    text-align: center; color: var(--gray-950); margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-sub {
    font-size: 17px; color: var(--gray-500); text-align: center;
    max-width: 520px; margin: 0 auto 64px;
}
/* Asymmetric Features Layout */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.features-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.features-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-600);
    margin-bottom: 16px;
}

.features-sidebar h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-950);
    margin-bottom: 16px;
    text-align: left;
    letter-spacing: -1px;
}

.features-desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-500);
    color: var(--white);
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-950);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--primary-600);
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .features-sidebar {
        position: static;
        align-items: center;
        text-align: center;
    }
    .features-sidebar h2 {
        text-align: center;
    }
    .features-desc {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .features-list-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/* Steps Section DNA */
.steps-header {
    text-align: center;
    margin-bottom: 54px;
}

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

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-600);
    background: linear-gradient(135deg, var(--primary-500) 0%, #34d399 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.step-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-950);
    margin-bottom: 8px;
}

.step-info p {
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Pricing Search & Grid */
.global-pricing-wrapper {
    max-width: 900px; margin: 0 auto;
}

.pricing-search-container {
    position: relative; margin-bottom: 32px;
}

.search-icon-overlay {
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    width: 20px; height: 20px; color: var(--gray-400); pointer-events: none;
}

.pricing-search-input {
    width: 100%; height: 56px; border-radius: var(--radius);
    border: 1.5px solid var(--gray-200); padding: 0 24px 0 54px;
    font-size: 15px; font-weight: 600; font-family: inherit; outline: none;
    transition: all 0.3s; background: var(--white);
}

.pricing-search-input:focus {
    border-color: var(--primary-500); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
.popular-rates {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px;
}

.rate-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.2s ease;
}

.rate-card:hover {
    border-color: var(--primary-500);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.rate-card__flag-img {
    width: 20px; height: auto; border-radius: 2px; margin-bottom: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rate-card__name {
    font-size: 13px; font-weight: 700; color: var(--gray-700); margin-left: 8px; margin-right: auto;
    margin-bottom: 0;
}

.rate-card__price {
    font-family: var(--font-heading); font-size: 15px; font-weight: 800; color: var(--primary-600);
}
.full-country-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    max-height: 480px; overflow-y: auto; padding: 4px; border-radius: var(--radius);
    border: 1px solid var(--gray-200); background: #ffffff;
}

.country-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; background: var(--gray-50); border-radius: var(--radius-sm);
}

.country-info {
    display: flex; align-items: center;
}

.country-item__name {
    font-size: 13px; font-weight: 600; color: var(--gray-800);
}

.country-item__price {
    font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--primary-600);
}

.pricing-footer-note {
    font-size: 12px; color: var(--gray-400); font-weight: 500;
}

.pricing-footer-note a {
    color: var(--primary-600); font-weight: 700;
}

@media (max-width: 768px) {
    .popular-rates { grid-template-columns: repeat(2, 1fr); }
    .full-country-grid { grid-template-columns: 1fr; }
}

/* Testimonial */
.testimonial-section {
    background: var(--white);
}

.testimonial-card {
    max-width: 760px; margin: 0 auto; text-align: center;
}

.testimonial-stars {
    color: #fbbf24; font-size: 20px; margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-family: var(--font-heading); font-size: 24px; font-weight: 700;
    line-height: 1.5; color: var(--gray-900); letter-spacing: -0.5px; margin-bottom: 28px;
}

.testimonial-author {
    display: flex; align-items: center; justify-content: center; gap: 16px;
}

.author-avatar {
    width: 48px; height: 48px; background: var(--primary-500); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block; font-size: 15px; color: var(--gray-900);
}

.author-info span {
    font-size: 13px; color: var(--gray-400); font-weight: 500;
}

/* Security & Trust */
.security-section {
    background: var(--gray-950); color: var(--white); padding: 64px 0;
}

.security-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}

.security-item {
    display: flex; gap: 16px; align-items: flex-start;
}

.security-item svg {
    width: 32px; height: 32px; color: var(--primary-500); flex-shrink: 0;
}

.security-item strong {
    display: block; font-size: 14px; font-weight: 800; margin-bottom: 4px;
    letter-spacing: 0.5px; text-transform: uppercase;
}

.security-item span {
    font-size: 13px; color: var(--gray-400); line-height: 1.5;
}

@media (max-width: 1024px) {
    .security-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .security-grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px;
}

.faq-item {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s;
}

.faq-header {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 24px; background: none; border: none; text-align: left; cursor: pointer;
    font-family: inherit; outline: none;
}

.faq-header h3 {
    font-family: var(--font-heading); font-size: 17px; font-weight: 800; color: var(--gray-900);
}

.faq-icon {
    color: var(--gray-400); transition: transform 0.3s;
}

.faq-body {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 24px 24px; font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

.faq-item--active .faq-icon {
    transform: rotate(180deg); color: var(--primary-500);
}

.faq-item--active .faq-body {
    max-height: 200px;
}

/* CTA Section DNA */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: transparent;
}

.cta-card {
    background: rgba(9, 9, 11, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    padding: 60px 40px;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-card h2 span {
    background: linear-gradient(135deg, var(--primary-500) 0%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-card p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* Footer */
footer {
    background: var(--gray-950); color: var(--white); padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-partners-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 40px;
    margin-bottom: 40px; text-align: center;
}

.footer-trust-label {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--gray-500); margin-bottom: 20px; display: block;
}

.footer-trust-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center;
}

.footer-trust-item img {
    height: 24px; width: auto; opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-trust-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-grid {
    display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px;
}

.footer-brand .logo-img {
    height: 32px; margin-bottom: 20px;
}

.footer-legal-info {
    font-size: 12px; color: var(--gray-500); line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-heading); font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 20px;
}

.footer-links a {
    display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--gray-500); margin-bottom: 12px;
    transition: color 0.2s; width: fit-content;
}

.footer-links a:hover {
    color: var(--primary-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}

.footer-status {
    font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 8px;
}

.footer-status-dot {
    width: 8px; height: 8px; background: var(--primary-500); border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-500);
}

.footer-copyright {
    font-size: 12px; color: var(--gray-500);
}

.footer-crypto-row {
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: flex-end;
}

.footer-crypto-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-crypto-item img {
    height: 22px;
    width: auto;
    opacity: 0.85;
    filter: grayscale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-crypto-item:hover {
    transform: translateY(-2px);
}

.footer-crypto-item:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
