/* ================================
   BG Loans — Global Styles
   ================================ */

/* CSS Variables */
:root {
    --color-bg: #111111;
    --color-bg-elevated: #171717;
    --color-bg-card: #1A1A1A;
    --color-white: #FFFFFF;
    --color-accent: #89FEFE;
    --color-accent-hover: #76dada;
    --gradient-accent: linear-gradient(45deg, #89FEFE 0%, #827FE2 100%);
    --gradient-accent-hover: linear-gradient(45deg, #89FEFE 0%, #76dada 100%);
    --gradient-accent-vertical: linear-gradient(180deg, #89FEFE 0%, #827FE2 100%);
    --gradient-accent-glow: linear-gradient(45deg, rgba(137, 254, 254, 0.2) 0%, rgba(130, 127, 226, 0.15) 100%);
    --color-text: #FFFFFF;
    --color-text-muted: #999999;
    --color-text-subtle: #666666;
    --color-border: #3a3a3a;
    
    --font-family: "Golos Text", sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 800;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(137, 254, 254, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Utility Classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-bg);
    padding: 8px 16px;
    background: var(--color-accent);
    border-radius: 99px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-white);
}

/* ================================
   Navigation
   ================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(33, 33, 33, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.nav.scrolled {
    border-bottom-color: var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--color-bg);
    font-weight: var(--font-weight-black);
    font-size: 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(137, 254, 254, 0.3);
}

.logo-text {
    font-weight: var(--font-weight-bold);
    font-size: 20px;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-cta {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-bg);
    background: var(--gradient-accent);
    background-size: 200% 200%;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--gradient-accent-hover);
    background-size: 200% 200%;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(137, 254, 254, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-links a {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-cta {
    display: inline-block;
    text-align: center;
    background: var(--gradient-accent);
    color: var(--color-bg) !important;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    margin-top: 8px;
    border: none !important;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(137, 254, 254, 0.08) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent);
    padding: 8px 16px;
    background: var(--gradient-accent-glow);
    border: 1px solid rgba(137, 254, 254, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: var(--font-weight-black);
    line-height: 1;
    color: var(--color-white);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-line.highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-tagline {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-bg);
    background: var(--gradient-accent);
    background-size: 200% 200%;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-cta:hover {
    background: var(--gradient-accent-hover);
    background-size: 200% 200%;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(137, 254, 254, 0.4);
}

.hero-cta svg {
    transition: transform var(--transition-fast);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: var(--color-bg);
    border-radius: 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 57px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-placeholder {
    text-align: center;
    padding: 40px;
}

.app-placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--color-bg);
    font-size: 36px;
    font-weight: var(--font-weight-black);
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(137, 254, 254, 0.3);
}

.app-placeholder-text {
    margin-bottom: 32px;
}

.placeholder-line {
    height: 12px;
    background: var(--color-bg-card);
    border-radius: 6px;
    margin-bottom: 8px;
}

.placeholder-line.short {
    width: 60%;
    margin: 0 auto;
}

.app-placeholder-btn {
    width: 140px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(137, 254, 254, 0.3);
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(137, 254, 254, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -60px;
    animation-delay: 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent-glow);
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-md);
}

.card-amount {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
}

.floating-card span:last-child {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-accent-vertical);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.5; height: 30px; }
}

/* ================================
   How It Works Section
   ================================ */
.how-section {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.how-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

/* Left side decorations */
.decor-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    border: 1px solid rgba(137, 254, 254, 0.2);
    animation: floatSlow 8s ease-in-out infinite;
}

.decor-2 {
    width: 8px;
    height: 8px;
    top: 35%;
    left: 15%;
    background: var(--color-accent);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite;
}

.decor-3 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 10%;
    border: 1px dashed rgba(137, 254, 254, 0.15);
    animation: rotateSlow 20s linear infinite;
}

/* Right side decorations */
.decor-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    border: 1px solid rgba(137, 254, 254, 0.15);
    animation: floatSlow 7s ease-in-out infinite reverse;
}

.decor-5 {
    width: 6px;
    height: 6px;
    top: 55%;
    right: 15%;
    background: var(--color-accent);
    opacity: 0.3;
    animation: pulse 5s ease-in-out infinite 1s;
}

.decor-6 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 8%;
    border: 1px dashed rgba(137, 254, 254, 0.12);
    animation: rotateSlow 25s linear infinite reverse;
}

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

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Line decorations */
.decor-line {
    width: 1px;
    height: 80px;
    border-radius: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(137, 254, 254, 0.3) 50%, transparent 100%);
}

.decor-line-1 {
    top: 40%;
    left: 18%;
    transform: rotate(-20deg);
}

.decor-line-2 {
    top: 45%;
    right: 18%;
    transform: rotate(20deg);
}

/* Plus decorations */
.decor-plus {
    font-size: 24px;
    font-weight: 300;
    color: rgba(137, 254, 254, 0.25);
    line-height: 1;
}

.decor-plus-1 {
    top: 70%;
    left: 12%;
    animation: pulse 6s ease-in-out infinite 0.5s;
}

.decor-plus-2 {
    top: 30%;
    right: 12%;
    animation: pulse 6s ease-in-out infinite 2s;
}

/* Hide decorations on smaller screens */
@media (max-width: 1200px) {
    .how-decorations {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .how-decorations {
        display: none;
    }
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-size: 64px;
    font-weight: var(--font-weight-black);
    color: #3d3d3d;
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.step-visual {
    display: none;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80px;
    padding: 24px 0;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent) 0%, rgba(137, 254, 254, 0.3) 100%);
    border-radius: 2px;
}

.connector-dot {
    position: absolute;
    bottom: 20px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(137, 254, 254, 0.6);
}

/* ================================
   Features Section
   ================================ */
.features-section {
    padding: 120px 0;
    background: var(--color-bg-elevated);
}

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

.feature-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(137, 254, 254, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent-glow);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ================================
   About Section
   ================================ */
.about-section {
    padding: 120px 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.about-text {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text.highlight {
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    padding-left: 20px;
    border-left: 3px solid transparent;
    border-image: var(--gradient-accent-vertical) 1;
}

.about-visual {
    position: relative;
}

.about-visual img {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin: 0 0 60px 50px;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    display: flex;
    gap: 16px;
}

.stat {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: var(--font-weight-black);
    color: var(--color-accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   Eligibility Section
   ================================ */
.eligibility-section {
    padding: 120px 0;
    background: var(--color-bg-card);
}

.eligibility-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 60px;
}

.eligibility-content .section-tag {
    margin-bottom: 16px;
}

.eligibility-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.eligibility-intro {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.eligibility-list {
    list-style: none;
    margin-bottom: 24px;
}

.eligibility-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
    color: var(--color-white);
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent-glow);
    color: var(--color-accent);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-sm);
}

.eligibility-note {
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
}

.eligibility-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eligibility-graphic {
    position: relative;
    width: 200px;
    height: 200px;
}

.graphic-circle {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
                var(--gradient-accent) border-box;
    border-radius: 50%;
    opacity: 0.6;
    animation: circleGrow 3s ease-in-out infinite;
}

@keyframes circleGrow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.graphic-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-accent);
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(137, 254, 254, 0.15) 0%, transparent 50%);
}

.cta-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 10s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; width: 12px; height: 12px; }
.particle:nth-child(3) { top: 30%; right: 15%; animation-delay: 2s; width: 6px; height: 6px; }
.particle:nth-child(4) { top: 70%; right: 25%; animation-delay: 3s; }
.particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; width: 10px; height: 10px; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.6; }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-bg);
    background: var(--gradient-accent);
    background-size: 200% 200%;
    padding: 20px 48px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--gradient-accent-hover);
    background-size: 200% 200%;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(137, 254, 254, 0.4);
}

.cta-button svg {
    transition: transform var(--transition-fast);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.trust-icon {
    font-size: 16px;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

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

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 280px;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-accent);
}

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

.footer-disclaimer p {
    font-size: 12px;
    color: var(--color-text-subtle);
    line-height: 1.3;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-subtle);
}

/* ================================
   Responsive Styles
   ================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 12px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .floating-card.card-1 {
        left: 0;
    }
    
    .floating-card.card-2 {
        right: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-tag {
        display: block;
        text-align: center;
    }
    
    .about-stats {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 24px;
    }
    
    .eligibility-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .eligibility-visual {
        order: -1;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .step {
        width: 100%;
    }
    
    .step-number {
        font-size: 48px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-connector {
        height: 60px;
        padding: 16px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .phone-screen {
        border-radius: 36px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .title-line {
        font-size: 40px;
    }
    
    .hero-cta {
        width: auto;
        padding: 14px 28px;
    }

    .hero-subtitle,
    .hero-tagline {
        font-size: 15px;
    }
    
    .hero-content {
        padding: 0 8px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .eligibility-card {
        padding: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .about-visual img {
        margin: 0;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
}