/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #FFFFFF;
    /* Pure White */
    --primary-dim: rgba(255, 255, 255, 0.15);
    --secondary: #E0E0E0;
    /* Silver */
    --bg-dark: #000000;
    /* Pitch Black */
    --bg-card: #0A0A0A;
    /* Almost Black */
    --text-white: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);

    --font-main: 'Outfit', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.highlight {
    color: var(--primary);
}

/* =========================================
   3. COMPONENTS
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 52px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-white);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    background: #E0E0E0;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

/* Play Store Button (Ported from Next.js) */
.btn-playstore {
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.btn-playstore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.btn-playstore svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.btn-playstore .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.btn-playstore .btn-text span:first-child {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2px;
}

.btn-playstore .btn-text .brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Feature Card */
.feature-card {
    background: rgba(22, 25, 37, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: 0.3s;
}

.feature-card:hover .icon {
    background: var(--primary);
    color: #000;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   4. LAYOUT SECTIONS
   ========================================= */

/* Header */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 17, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* New Header Styles */
#main-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 22px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.main-nav a:hover {
    color: #fff;
}

/* Header Download Button */
.btn-header-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #00FF88;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-header-download:hover {
    background: #33FF99;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-header-download i {
    font-size: 16px;
}

/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-toggle .fa-globe {
    color: #00FF88;
}

.lang-toggle .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-selector.open .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #fff;
}

.lang-option.active {
    background: rgba(0, 255, 136, 0.15);
    color: #00FF88;
}

.lang-flag {
    font-size: 18px;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .btn-header-download span {
        display: none;
    }

    .btn-header-download {
        padding: 12px;
        border-radius: 50%;
    }

    .lang-toggle span {
        display: none;
    }

    .lang-toggle {
        padding: 8px 10px;
    }
}


/* =========================================
   HERO SECTION V7 - Digital Fortress
   ========================================= */

.hero-v7 {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* 3D Container */
#hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content Layer */
.hero-v7-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

/* Main Headline */
.hero-v7-content h1 {
    font-size: clamp(60px, 14vw, 140px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 0 80px rgba(0, 255, 136, 0.3);
}

/* Accent Text (PRIVACY.) */
.text-accent {
    color: #00FF88;
    text-shadow:
        0 0 20px rgba(0, 255, 136, 0.6),
        0 0 40px rgba(0, 255, 136, 0.4),
        0 0 80px rgba(0, 255, 136, 0.2);
}

/* Tagline */
.hero-tagline {
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

/* CTA Wrapper */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Primary CTA Button */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #00FF88;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 40px rgba(0, 255, 136, 0.6),
        0 8px 30px rgba(0, 0, 0, 0.4);
    background: #33FF99;
}

/* CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* iOS Secondary Button */
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cta-secondary i {
    font-size: 24px;
}

.btn-cta-secondary .btn-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-cta-secondary .coming-soon-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-secondary span:last-child {
    font-size: 16px;
    font-weight: 700;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Link */
.hero-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-scroll-link:hover {
    color: #00FF88;
}

.hero-scroll-link i {
    font-size: 12px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

/* Gradient Overlay */
.hero-v7-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 50% 50%,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-v7-content h1 {
        font-size: clamp(48px, 16vw, 80px);
    }

    .hero-tagline {
        font-size: 16px;
    }

    .btn-cta-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    /* Blend with 3D globe */
}

/* Spotlight Effect */
/* 1. Border Glow */
.bento-card::before,
.pricing-card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    /* changed from -2px to 0 to fit inside overflow:hidden */
    border-radius: inherit;
    padding: 1px;
    /* Thinner border */
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.4),
            transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

/* 2. Inner Glow */
.bento-card::after,
.pricing-card-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.05),
            transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

/* Hover State */
.bento-card:hover::before,
.pricing-card-3d:hover::before,
.bento-card:hover::after,
.pricing-card-3d:hover::after {
    opacity: 1;
}

/* Content Z-Index ensure text is above glow */
.bento-content,
.pricing-header,
.pricing-features,
.btn-connect-container,
.pricing-price {
    position: relative;
    z-index: 10;
}

.hero-badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 30px;
    letter-spacing: 2px;
    box-shadow: none;
    text-transform: uppercase;
}

.hero-badge-glass i {
    color: var(--primary);
}

.hero-container-global h1 {
    font-size: 80px;
    /* Massive Title */
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    /* Brighter Glow */
}

.highlight-cyan {
    background: linear-gradient(to right, #ffffff, #00FF88);
    /* Silver to Neon */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.hero-container-global p {
    font-size: 22px;
    color: #FFFFFF;
    /* Pure White */
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    font-weight: 500;
}

/* Glass CTA */
.hero-cta-group {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-playstore-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 30px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-playstore-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00FF88;
    /* Neon Green Border */
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    /* Neon Glow */
}

.btn-playstore-glass svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.btn-playstore-glass:hover svg,
.btn-playstore-glass:hover .brand {
    fill: var(--primary);
    color: var(--primary);
}

.btn-playstore-glass .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.btn-playstore-glass .brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 4px;
    transition: 0.3s;
}

/* Stats Pill */
.live-stats {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px;
    gap: 10px;
}

.stat-pill {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.dot-green {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00FF88;
}

@media (max-width: 768px) {
    .hero-container-global h1 {
        font-size: 48px;
    }

    .hero-container-global p {
        font-size: 18px;
    }

    .live-stats {
        flex-direction: column;
        border-radius: 20px;
    }
}

/* =========================================
   5. BENTO GRID SYSTEM
   ========================================= */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
}

.bento-card {
    background: rgba(22, 25, 37, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bento-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Grid Spans */
.col-span-2 {
    grid-column: span 2;
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-6 {
    grid-column: span 6;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }

    .col-span-2 {
        grid-column: span 1;
    }

    /* Cards become 1 unit wide */
    .col-span-3 {
        grid-column: span 2;
    }

    /* Full width on tablet */
    .col-span-6 {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .col-span-2,
    .col-span-3,
    .col-span-6 {
        grid-column: span 1;
    }
}

/* Bento Content Helpers */
.bento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-text h3 {
    font-size: 18px;
    /* Slightly smaller for density */
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-white);
}

.bento-text p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.4;
}

.bento-viz {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    /* Taller visual area */
    position: relative;
    width: 100%;
}

/* Viz Circles & SVGs */
.viz-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
}

.viz-circle svg {
    width: 64px;
    height: 64px;
}

.viz-full-svg {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100px;
}

/* Avatars */
.viz-avatars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
    padding-right: 10px;
}

.avatar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    font-weight: 500;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    object-fit: cover;
}

.avatar-tag {
    color: var(--text-white);
}

/* =========================================
   6. 3D PRICING & CONNECT
   ========================================= */

/* Pricing Grid - 2 Column Centered */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 400px));
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

.pricing-perspective {
    perspective: 1000px;
}

.pricing-card-3d {
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.95), rgba(10, 10, 12, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 40px 36px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card-3d:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card-3d.popular {
    border: 1px solid rgba(0, 255, 136, 0.4);
    box-shadow:
        0 0 40px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(0, 255, 136, 0.1);
}

.pricing-card-3d.popular:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 255, 136, 0.15);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #00FF88, #00CC6A);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Pricing Billed Text */
.pricing-billed {
    color: var(--text-dim);
    font-size: 14px;
    margin-top: -12px;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.pricing-price span {
    font-size: 16px;
    color: var(--text-dim);
    font-weight: 400;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dim);
}

.pricing-features i {
    color: var(--primary);
}

/* Connect Button (3D Effect) */
.btn-connect-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.btn-connect {
    width: 250px;
    height: 60px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-connect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 100%;
    background: var(--primary);
    transform: translate(-50%, -50%) skewX(-20deg);
    transition: width 0.4s ease;
    z-index: -1;
    opacity: 0.1;
}

.pricing-card-3d:hover .btn-connect {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.pricing-card-3d:hover .btn-connect::before {
    width: 120%;
    opacity: 0.2;
}

/* Primary Connect Button (for Popular Plan) */
.btn-connect-primary {
    background: #00FF88;
    color: #000;
    border-color: #00FF88;
}

.btn-connect-primary:hover {
    background: #33FF99;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

/* Power Icon Pulse */
.power-icon {
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.power-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 2px;
    height: 8px;
    background: var(--bg-card);
    /* Matches bg to cut the circle */
}

.power-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    width: 2px;
    height: 8px;
    background: currentColor;
    z-index: 1;
}

.pricing-card-3d:hover .power-icon {
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    nav {
        display: none;
    }
}

/* =========================================
   7. HOW IT WORKS (Steps)
   ========================================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #00FF88;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00FF88;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.step-card p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   8. APP MOCKUP SHOWCASE
   ========================================= */

.app-mockup-showcase {
    text-align: center;
    margin-bottom: 48px;
}

.app-mockup-showcase img {
    max-width: 100%;
    width: 900px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    margin: 0 auto;
    display: block;
}

.app-features-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 16px;
    font-weight: 500;
}

.app-feature-item i {
    width: 44px;
    height: 44px;
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.app-feature-item:nth-child(2) {
    transition-delay: 0.1s;
}

.app-feature-item:nth-child(3) {
    transition-delay: 0.2s;
}

/* =========================================
   SECTION DIVIDERS
   ========================================= */

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 136, 0.3) 20%,
            rgba(0, 255, 136, 0.5) 50%,
            rgba(0, 255, 136, 0.3) 80%,
            transparent 100%);
    margin: 0;
    border: none;
}

/* Alternative: Glow Line Divider */
.section-divider-glow {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.section-divider-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00FF88, transparent);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.section-divider-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

/* =========================================
   9. TESTIMONIALS
   ========================================= */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00FF88, #00CC6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #fff;
    font-size: 15px;
}

.author-info span {
    color: var(--text-dim);
    font-size: 13px;
}

/* =========================================
   10. FAQ ACCORDION
   ========================================= */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
    transition: transform 0.3s;
    color: #00FF88;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* =========================================
   11. FOOTER
   ========================================= */

footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

.footer-brand .logo {
    font-size: 22px;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .footer-brand p {
        margin: 0 auto 20px;
    }
}

.footer-social {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00FF88;
    border-color: #00FF88;
    color: #000;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00FF88;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* =========================================
   12. COOKIE BANNER
   ========================================= */

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-dim);
    font-size: 14px;
}

.cookie-content p i {
    color: #FFD700;
    margin-right: 8px;
}

.cookie-content a {
    color: #00FF88;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background: #00FF88;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-accept:hover {
    background: #33FF99;
}

.btn-cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-dim);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* =========================================
   13. MOBILE MENU
   ========================================= */

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }

    header .btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.close-menu {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.mobile-nav a:hover {
    color: #00FF88;
}

/* =========================================
   14. SCROLL ANIMATIONS
   ========================================= */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.steps-grid .step-card:nth-child(2) {
    transition-delay: 0.1s;
}

.steps-grid .step-card:nth-child(3) {
    transition-delay: 0.2s;
}

.screenshots-carousel .screenshot-item:nth-child(2) {
    transition-delay: 0.15s;
}

.screenshots-carousel .screenshot-item:nth-child(3) {
    transition-delay: 0.3s;
}

.testimonials-grid .testimonial-card:nth-child(2) {
    transition-delay: 0.1s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    transition-delay: 0.2s;
}

.faq-container .faq-item:nth-child(2) {
    transition-delay: 0.05s;
}

.faq-container .faq-item:nth-child(3) {
    transition-delay: 0.1s;
}

.faq-container .faq-item:nth-child(4) {
    transition-delay: 0.15s;
}

.faq-container .faq-item:nth-child(5) {
    transition-delay: 0.2s;
}

/* =========================================
   15. BACK TO TOP BUTTON
   ========================================= */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00FF88;
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #33FF99;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}