/*
Theme Name: BLIYUK
Theme URI: http://example.com/bliyuk/
Author: Web Admin
Description: Custom WordPress Theme for BLIYUK
Version: 1.0
Text Domain: bliyuk
*/
/* style.css - Blue & Yellow Aurora Theme */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Colors - Dark Purple Neon Theme */
    --bg-color: #130B1E;
    --bg-surface: #1D102F;
    --bg-surface-elevated: #2A1744;
    --bg-surface-hover: #3A1F5D;

    /* Primary: Vibrant Purple */
    --primary-color: #9F33F6;
    --primary-hover: #B85CF8;
    --primary-glow: rgba(159, 51, 246, 0.4);

    /* Accent: Neon Magenta/Pink */
    --accent-color: #F83A85;
    --accent-glow: rgba(248, 58, 133, 0.4);

    /* Secondary: Cyan */
    --secondary-color: #06B6D4;

    /* Text Colors */
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --text-light: #64748B;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --max-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(159, 51, 246, 0.3);
    color: #fff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-surface); }
.overflow-hidden { overflow: hidden; }

.section-header {
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #fff;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
    letter-spacing: 0.01em;
}

.btn-lg {
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #F83A85 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(159, 51, 246, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(159, 51, 246, 0.6);
    transform: translateY(-2px);
}

.btn-secondary, .btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover, .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 75px;
    width: auto;
    max-width: 100%;
}

.logo span { color: var(--text-muted); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover { color: #fff; }

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero {
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0A0512 0%, #130B1E 40%, #1D102F 70%, #0A0512 100%);
}

/* Animated starfield */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 60% 50%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 50% 10%, rgba(159,51,246,0.8), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(248,58,133,0.7), transparent);
    background-size: 200px 200px;
    z-index: 0;
}

/* Aurora glow orbs */
.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(159, 51, 246, 0.25) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 58, 133, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(159, 51, 246, 0.15);
    border: 1px solid rgba(159, 51, 246, 0.3);
    color: var(--primary-hover);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subheadline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

/* Hero illustration */
.hero-illustration {
    position: relative;
    z-index: 1;
}

.hero-illustration img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    margin: 0 auto;
    filter: drop-shadow(0 0 40px rgba(159, 51, 246, 0.3));
}

/* Hero stats bar */
.hero-stats-bar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(8px);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(159, 51, 246, 0.3);
}

.hero-stat-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.hero-stat-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Wave separator */
.wave-separator {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ==========================================================================
   2. TRUSTED BY SECTION
   ========================================================================== */
.trusted-by {
    padding: 3rem 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.4;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.company-logo:hover {
    opacity: 1;
    color: #fff;
}

/* ==========================================================================
   3. HOW IT WORKS
   ========================================================================== */
.how-it-works {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-color) 100%);
}

.hw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.hw-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.hw-column:hover {
    border-color: rgba(159, 51, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.hw-column::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.8;
}

.hw-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hw-header i {
    font-size: 2rem;
    color: var(--primary-hover);
}

.hw-header h3 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
}

.hw-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.hw-steps::before {
    content: '';
    position: absolute;
    top: 20px; bottom: 20px;
    left: 15px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
    z-index: 0;
}

.hw-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #F83A85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 0 0 5px var(--bg-surface), 0 0 15px rgba(159, 51, 246, 0.3);
}

.step-content { padding-top: 0.25rem; }

.step-content h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   4. FEATURED PARTNERSHIP PROGRAMS
   ========================================================================== */
.programs {
    position: relative;
    background: var(--bg-color);
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), #F83A85);
    color: #fff;
    border-color: transparent;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    box-shadow: inset 0 0 0 1px rgba(159,51,246,0.2);
    border-radius: 16px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(159, 51, 246, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(159, 51, 246, 0.1);
}

.program-card:hover::after { opacity: 1; }

.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.pc-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(159,51,246,0.15), rgba(248,58,133,0.15));
    border: 1px solid rgba(159, 51, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-hover);
}

.pc-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    background: rgba(159, 51, 246, 0.1);
    border: 1px solid rgba(159, 51, 246, 0.2);
    color: var(--primary-hover);
    border-radius: 100px;
    font-weight: 600;
}

.program-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.pc-company {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pc-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    flex-grow: 1;
}

.pc-stat {
    display: flex;
    flex-direction: column;
}

.pc-stat span {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.pc-stat strong {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* ==========================================================================
   5. WHY CHOOSE (Feature Cards with Illustrations)
   ========================================================================== */
.features {
    background: linear-gradient(180deg, var(--bg-color) 0%, #1D102F 50%, var(--bg-color) 100%);
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(159, 51, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(159, 51, 246, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.feature-card .feature-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

.fc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(159,51,246,0.2), rgba(248,58,133,0.2));
    border: 1px solid rgba(159, 51, 246, 0.3);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   6. PLATFORM DASHBOARD PREVIEW
   ========================================================================== */
.dashboard-preview {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.dashboard-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(159, 51, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.dashboard-showcase {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 8px;
    border: 1px solid rgba(159, 51, 246, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(159, 51, 246, 0.1);
}

.browser-top {
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 8px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dots span:nth-child(1) { background: #EF4444; }
.dots span:nth-child(2) { background: #FBBF24; }
.dots span:nth-child(3) { background: #22C55E; }

.dashboard-img {
    width: 100%;
    border-radius: 12px;
}

.widget {
    position: absolute;
    background: rgba(26, 26, 62, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(159, 51, 246, 0.25);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(159, 51, 246, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-align: left;
}

.widget i { font-size: 1.5rem; color: var(--primary-hover); }
.widget small { display: block; color: var(--text-muted); font-size: 0.75rem; margin-bottom: 0.1rem; }
.widget strong { display: block; font-size: 1rem; color: #fff; font-weight: 600; }

.w-1 { top: 15%; left: -6%; }
.w-2 { bottom: 15%; left: -4%; }
.w-3 { top: 40%; right: -6%; }

/* ==========================================================================
   7. SUCCESS STORIES
   ========================================================================== */
.testimonials {
    background: var(--bg-surface);
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(159, 51, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.tc-stars {
    color: #FBBF24;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: flex;
    gap: 0.2rem;
}

.tc-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tc-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(159, 51, 246, 0.3);
}

.tc-info strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.tc-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================================================
   8. FAQ SECTION
   ========================================================================== */
.faq {
    background: var(--bg-color);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover { color: var(--primary-hover); }

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-hover);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   9. FINAL CTA SECTION
   ========================================================================== */
.final-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(160deg, #132448 0%, #0B1120 50%, #132448 100%);
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(159, 51, 246, 0.25), transparent),
        radial-gradient(ellipse 30% 30% at 20% 80%, rgba(248, 58, 133, 0.2), transparent),
        radial-gradient(ellipse 30% 30% at 80% 80%, rgba(159, 51, 246, 0.2), transparent);
    pointer-events: none;
}

/* Aurora wave at bottom */
.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0; left: -5%;
    width: 110%; height: 120px;
    background: linear-gradient(90deg,
        rgba(159,51,246,0.5),
        rgba(248,58,133,0.5),
        rgba(159,51,246,0.5),
        rgba(248,58,133,0.5),
        rgba(159,51,246,0.5));
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
}

.cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(159, 51, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer {
    background: #10192e;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand .logo-img {
    height: 150px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-color), #F83A85);
    color: #fff;
    border-color: transparent;
}

.footer-links h3 {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-links ul li { margin-bottom: 0.75rem; }

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover { color: var(--primary-hover); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ==========================================================================
   Bounce Animations
   ========================================================================== */
.bounce { animation: bounceUp 3s ease-in-out infinite; }
.bounce-delayed { animation: bounceUp 3s ease-in-out 1.5s infinite; }

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-illustration { order: -1; }
    .hero-illustration img { max-width: 400px; }
    .hero h1 { font-size: 3rem; }
    .hero-cta { justify-content: center; }
    .badge { margin-left: auto; margin-right: auto; }
    .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .widget.w-1, .widget.w-2, .widget.w-3 { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons { display: none; }
    .mobile-menu-btn { display: block; }

    .logo-img { height: 55px; }
    .nav-container { min-height: 70px; }

    .hero { padding: 8rem 0 3rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
    .hero-cta .btn { width: auto; min-width: 240px; }
    
    .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .btn-lg { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
    .btn-block { width: auto; min-width: 240px; }
    .hero-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .hero-illustration img { max-width: 300px; }

    .hw-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .section-header h2 { font-size: 2rem; }

    .cta-buttons { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}




/* ==========================================================================
   Forms
   ========================================================================== */
.form-section {
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-family);
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-hover);
    box-shadow: 0 0 0 3px rgba(159, 51, 246, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
