/* ==========================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================== */
:root {
    --bg-dark: #050508;
    --bg-card: rgba(10, 10, 18, 0.6);
    --bg-card-hover: rgba(18, 18, 32, 0.8);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-color-hover: rgba(255, 255, 255, 0.12);
    
    /* Primary Colors & Accent Gradients - Brighter and Techy */
    --color-primary: #6366f1; /* Indigo */
    --color-secondary: #a855f7; /* Purple */
    --color-blue: #06b6d4; /* Vibrant Cyan */
    --color-pink: #f43f5e; /* Vibrant Pink/Coral */
    --color-green: #10b981; /* Emerald */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-white: #ffffff;
    
    /* Font Families */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Dynamic Shadows & Glass Effects */
    --shadow-main: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow-indigo: 0 0 30px rgba(99, 102, 241, 0.25);
    --shadow-glow-purple: 0 0 30px rgba(168, 85, 247, 0.25);
    --shadow-glow-blue: 0 0 30px rgba(6, 182, 212, 0.25);
    --shadow-glow-pink: 0 0 30px rgba(244, 63, 94, 0.25);
    --glass-blur: blur(20px);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   GLOWING BACKGROUND BLOBS
   ========================================== */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.22;
    z-index: -1;
    pointer-events: none;
    animation: blobFloat 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background: var(--color-primary);
}

.blob-2 {
    top: 30%;
    right: -100px;
    background: var(--color-secondary);
    animation-delay: 5s;
    width: 600px;
    height: 600px;
}

.blob-3 {
    bottom: 25%;
    left: 10%;
    background: var(--color-blue);
    animation-delay: 10s;
}

.blob-4 {
    top: 65%;
    right: 15%;
    background: var(--color-pink);
    animation-delay: 7s;
    width: 450px;
    height: 450px;
    opacity: 0.15;
}

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

/* ==========================================
   TYPOGRAPHY & HEADINGS
   ========================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
}

.btn:hover::after {
    left: 125%;
    transition: all 0.75s ease-in-out;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), 0 0 15px rgba(168, 85, 247, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(7, 7, 11, 0.75);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 30px 40px;
    border-left: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--text-white);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 160px 0 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a5b4fc;
}

#hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   TELEGRAM MOBILE SIMULATOR
   ========================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.phone-wrapper {
    position: relative;
    width: 320px;
    height: 590px;
}

.phone-glow {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-blue), var(--color-pink));
    background-size: 300% 300%;
    filter: blur(25px);
    opacity: 0.55;
    border-radius: 44px;
    z-index: 1;
    animation: flowGlow 8s ease infinite alternate;
}

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

.phone-frame {
    width: 100%;
    height: 100%;
    background: #0f1015;
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 22px;
    background: #0f1015;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0e1621; /* Telegram dark mode background */
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Mockup Telegram Header */
.telegram-header {
    background: #17212b;
    padding: 30px 15px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.telegram-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.telegram-user-info {
    flex-grow: 1;
}

.telegram-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.telegram-status {
    font-size: 0.72rem;
    color: var(--color-green);
    font-weight: 500;
}

.telegram-actions {
    color: #6c7883;
    cursor: pointer;
}

/* Mockup Chat Body */
.telegram-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 16px 16px;
    scroll-behavior: smooth;
}

.telegram-body::-webkit-scrollbar {
    width: 4px;
}
.telegram-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.telegram-date {
    align-self: center;
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #7d8b95;
    margin: 5px 0;
}

/* Chat Message Bubbles */
.msg {
    max-width: 82%;
    padding: 8px 12px 20px 12px;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.4;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: bubbleAppear 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

.msg-bot {
    align-self: flex-start;
    background: #182533;
    color: #f5f5f5;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.msg-user {
    align-self: flex-end;
    background: #2b5278;
    color: #f5f5f5;
    border-bottom-right-radius: 4px;
}

.msg-text {
    word-break: break-word;
}

.msg-meta {
    position: absolute;
    bottom: 4px;
    right: 8px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 3px;
    user-select: none;
}

.msg-ticks {
    color: #40a7e3;
    font-weight: 500;
}

@keyframes bubbleAppear {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Simulated Telegram Buttons (inline-keyboard) */
.inline-keyboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 4px;
    animation: bubbleAppear 0.3s ease-out 0.1s both;
}

.inline-btn {
    background: rgba(43, 82, 120, 0.25);
    border: 1px solid rgba(43, 82, 120, 0.45);
    color: #7fb1db;
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    outline: none;
}

.inline-btn:hover {
    background: rgba(43, 82, 120, 0.45);
    color: var(--text-white);
}

/* Typing indicator */
.typing-indicator {
    align-self: flex-start;
    background: #182533;
    padding: 10px 16px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    display: none; /* Controlled by JS */
    align-items: center;
    gap: 4px;
    height: 32px;
}

.typing-indicator.active {
    display: inline-flex;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #7d8b95;
    border-radius: 50%;
    animation: bounceTyping 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounceTyping {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Telegram Bottom Bar */
.telegram-input-bar {
    background: #17212b;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input-icon {
    background: transparent;
    border: none;
    outline: none;
    color: #6c7883;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.chat-input-icon:hover {
    color: #b2b2b2;
    background: rgba(255, 255, 255, 0.05);
}

#chat-input {
    flex-grow: 1;
    background: #24303f;
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: var(--text-white);
}

#chat-input::placeholder {
    color: #6c7883;
}

#chat-send-btn {
    background: transparent;
    border: none;
    outline: none;
    color: #5288c1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: var(--transition-fast);
}

#chat-send-btn:hover {
    color: #7fb1db;
    transform: scale(1.1);
}

/* Floating Mockup Cards */
.float-card {
    position: absolute;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: floatEffect 6s infinite alternate ease-in-out;
}

.card-top {
    top: 50px;
    left: -40px;
}

.card-bottom {
    bottom: 80px;
    right: -40px;
    animation-delay: 2s;
}

.float-icon {
    font-size: 1.5rem;
}

.float-info h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.float-info p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

@keyframes floatEffect {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    transform-style: preserve-3d;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(255,255,255,0.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.18);
}

.card-glow-indigo:hover { box-shadow: var(--shadow-glow-indigo); border-color: rgba(99, 102, 241, 0.3); }
.card-glow-purple:hover { box-shadow: var(--shadow-glow-purple); border-color: rgba(168, 85, 247, 0.3); }
.card-glow-blue:hover { box-shadow: var(--shadow-glow-blue); border-color: rgba(6, 182, 212, 0.3); }
.card-glow-pink:hover { box-shadow: var(--shadow-glow-pink); border-color: rgba(244, 63, 94, 0.3); }

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.card-glow-indigo .card-icon-wrapper { color: var(--color-primary); }
.card-glow-purple .card-icon-wrapper { color: var(--color-secondary); }
.card-glow-blue .card-icon-wrapper { color: var(--color-blue); }
.card-glow-pink .card-icon-wrapper { color: var(--color-pink); }

.card-glow-indigo:hover .card-icon-wrapper {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.card-glow-purple:hover .card-icon-wrapper {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-pink));
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.card-glow-blue:hover .card-icon-wrapper {
    background: linear-gradient(135deg, var(--color-blue), var(--color-primary));
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.card-glow-pink:hover .card-icon-wrapper {
    background: linear-gradient(135deg, var(--color-pink), var(--color-secondary));
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   HOW IT WORKS SECTION (STEPS)
   ========================================== */
.steps {
    padding: 100px 0;
    position: relative;
}

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

/* Dynamic dashed neon path connecting steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary) 20%, 
        var(--color-secondary) 50%, 
        var(--color-blue) 80%, 
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
    z-index: 2;
}

.step-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.15);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    transition: var(--transition-normal);
}

.step-card:hover .step-num {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
    background: rgba(20, 20, 35, 0.5);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.faq-icon {
    color: var(--text-muted);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
    background: rgba(13, 13, 23, 0.85);
}

.faq-item.active .faq-question span {
    color: var(--text-white);
    background: linear-gradient(90deg, #ffffff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
    filter: drop-shadow(0 0 5px var(--color-primary));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.cta-section {
    padding: 60px 0 100px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.cta-card h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 35px;
}

.btn-glow:hover {
    box-shadow: 0 0 35px rgba(99, 102, 241, 0.6), 0 0 15px rgba(168, 85, 247, 0.4);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
    background: #040407;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 0;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

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

.footer-brand p {
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links h4, .footer-social h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    color: #4b5563;
    font-size: 0.8rem;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    #hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .phone-wrapper {
        width: 290px;
        height: 540px;
    }
    
    .card-top { left: -20px; }
    .card-bottom { right: -20px; }
}

@media (max-width: 900px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .badge {
        align-self: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 500px) {
    #hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .phone-wrapper {
        width: 100%;
        max-width: 290px;
        height: 520px;
    }
    
    .float-card {
        display: none; /* Hide floating cards on small screens */
    }
    
    .cta-card {
        padding: 50px 20px;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================
   NEW ENHANCED VISUAL UTILITIES
   ========================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-pink));
    z-index: 2000;
    width: 0%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    transition: width 0.1s ease-out;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.badge-container {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    align-self: flex-start;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a7f3d0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    position: relative;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--color-green);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.gradient-text {
    background: linear-gradient(120deg, #ffffff 10%, #a5b4fc 40%, #e9d5ff 70%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

/* Scroll reveal initial and active states */
.reveal-init {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

/* Adjust steps dashed path for mobile */
@media (max-width: 900px) {
    .steps-grid::before {
        display: none;
    }
}