/* ===== CSS Variables ===== */
:root {
    --primary: #7C3AED;
    --primary-light: #A855F7;
    --primary-dark: #6D28D9;
    --primary-glow: rgba(124, 58, 237, 0.4);
    --accent: #8B5CF6;
    --bg-dark: #0A0A0F;
    --bg-card: #13131A;
    --bg-card-hover: #1A1A24;
    --bg-surface: #16161F;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1B5;
    --text-muted: #6B6B80;
    --border: rgba(124, 58, 237, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    --gold: #F59E0B;
    --success: #10B981;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Splash Screen ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7C3AED, #A855F7, #6D28D9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

/* Floating particles on splash */
.splash-screen::before,
.splash-screen::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: splashParticle 3s ease-in-out 0.5s forwards;
}

.splash-screen::before {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    top: 30%;
    left: 20%;
    animation: splashParticleFloat1 3s ease-in-out 0.8s forwards;
}

.splash-screen::after {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    bottom: 25%;
    right: 22%;
    animation: splashParticleFloat2 3s ease-in-out 1s forwards;
}

.splash-glow-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(168, 85, 247, 0.4) 25%, rgba(124, 58, 237, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: splashGlowBg 3s ease-in-out forwards;
    filter: blur(50px);
    z-index: 0;
}

.splash-logo-wrapper {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0) rotate(-15deg);
    animation: splashLogoEntry 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.splash-logo-box {
    background: #000;
    border-radius: 32px;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.05;
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.4), 0 0 120px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
    animation: splashBoxPulse 2s ease-in-out 1.6s infinite;
}

/* Shimmer effect across the logo box */
.splash-logo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 70%
    );
    animation: splashShimmer 2.5s ease-in-out 1s forwards;
    transform: translateX(-100%);
}

/* Glowing border ring */
.splash-logo-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), transparent, rgba(124, 58, 237, 0.6), transparent);
    z-index: -1;
    opacity: 0;
    animation: splashBorderGlow 2s ease-in-out 1.2s forwards;
}

.splash-text-line {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    opacity: 0;
}

.splash-text-line:first-child {
    animation: splashTextReveal 0.8s ease-out 0.8s forwards;
}

.splash-text-line:last-child {
    animation: splashTextReveal 0.8s ease-out 1.1s forwards;
}

@keyframes splashLogoEntry {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
    }
    40% {
        opacity: 1;
        transform: scale(1.12) rotate(2deg);
    }
    60% {
        transform: scale(0.95) rotate(-1deg);
    }
    80% {
        transform: scale(1.03) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes splashTextReveal {
    0% {
        opacity: 0;
        transform: translateY(15px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes splashBoxPulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.4), 0 0 120px rgba(124, 58, 237, 0.2);
    }
    50% {
        box-shadow: 0 0 80px rgba(168, 85, 247, 0.6), 0 0 160px rgba(124, 58, 237, 0.3), 0 0 200px rgba(168, 85, 247, 0.1);
    }
}

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

@keyframes splashBorderGlow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes splashGlowBg {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }
    30% {
        opacity: 0.8;
        transform: scale(0.8);
    }
    60% {
        opacity: 1;
        transform: scale(1.2);
    }
    80% {
        opacity: 0.9;
        transform: scale(1.4);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.6);
    }
}

@keyframes splashParticleFloat1 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    30% {
        opacity: 0.8;
        transform: translate(40px, -30px) scale(1);
    }
    70% {
        opacity: 0.6;
        transform: translate(80px, -60px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(120px, -90px) scale(0);
    }
}

@keyframes splashParticleFloat2 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    30% {
        opacity: 0.7;
        transform: translate(-35px, 25px) scale(1);
    }
    70% {
        opacity: 0.5;
        transform: translate(-70px, 50px) scale(1.3);
    }
    100% {
        opacity: 0;
        transform: translate(-100px, 80px) scale(0);
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ===== Particles Canvas ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--primary), #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Section Styling ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn:disabled,
.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: linear-gradient(135deg, #4a4a55, #35353f);
    box-shadow: none;
    pointer-events: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    padding: 12px 28px;
    font-size: 1rem;
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-nav:hover {
    background: #f5f3ff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.97), rgba(109, 40, 217, 0.97));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 20px rgba(124, 58, 237, 0.25), 0 1px 4px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.98), rgba(91, 33, 182, 0.98));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #000;
    border-radius: 14px;
    line-height: 1;
    padding: 6px 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(124, 58, 237, 0.25);
    transition: var(--transition);
}

.nav-logo:hover .logo-mark {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35), 0 0 0 1px rgba(124, 58, 237, 0.5);
}

.logo-line {
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.footer-logo .logo-mark {
    background: #0a0a0f;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(124, 58, 237, 0.3);
}

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

.nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-links a i {
    font-size: 0.9rem;
    opacity: 0.85;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-tagline {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-feature i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.hero-secondary-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.play-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: white;
    transition: var(--transition);
    text-decoration: none;
    min-height: 56px;
    box-shadow: 0 4px 18px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.play-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: 0.6s;
}

.play-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 32px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.play-badge:hover::before {
    left: 100%;
}

.play-badge-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.play-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.play-badge-small {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
}

.play-badge-large {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: white;
    margin-top: 2px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
}

.trust-avatar:first-child { margin-left: 0; }

/* ===== Phone Mockups ===== */
.hero-phones {
    position: relative;
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper {
    position: absolute;
    transition: var(--transition);
}

.phone-1 {
    left: 10%;
    z-index: 2;
    animation: floatPhone 6s ease-in-out infinite, phoneEntrance 1.2s ease-out both;
}

.phone-2 {
    right: 5%;
    top: 40px;
    z-index: 1;
    animation: floatPhone 6s ease-in-out infinite 1.5s, phoneEntrance 1.2s ease-out 0.3s both;
}

.phone-frame {
    width: 260px;
    height: 530px;
    background: #1A1A2E;
    border-radius: 36px;
    border: 3px solid rgba(124, 58, 237, 0.3);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(124, 58, 237, 0.15),
        inset 0 0 30px rgba(124, 58, 237, 0.05);
    animation: borderGlow 4s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1A1A2E;
    border-radius: 0 0 18px 18px;
    z-index: 3;
}

.phone-screen-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 33px;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 33px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.phone-screen.active {
    opacity: 1;
    transform: scale(1);
}

/* Phone glow effect */
.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 550px;
    border-radius: 40px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.2), transparent 70%);
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

/* Carousel dots */
.phone-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.phone-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.phone-dots .dot.active {
    background: var(--primary-light);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    transform: scale(1.3);
}

/* Floating Cards around phones */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(19, 19, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    color: var(--primary-light);
}

.card-1 {
    top: 15%;
    right: 5%;
    animation: floatCard 4s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    left: 0;
    animation: floatCard 4s ease-in-out infinite 1s;
}

.card-2 i { color: var(--gold); }

.card-3 {
    bottom: 10%;
    right: 15%;
    animation: floatCard 4s ease-in-out infinite 2s;
}

.card-3 i { color: #EF4444; }

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== Stats Section ===== */
.stats {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

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

.stat-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    font-size: 1.3rem;
    color: var(--primary-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2), 0 0 60px rgba(124, 58, 237, 0.1);
}

.feature-card:hover::before {
    width: 300px;
    height: 300px;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:active {
    transform: translateY(-4px) scale(0.98);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.35), 0 0 80px rgba(124, 58, 237, 0.15), inset 0 0 20px rgba(124, 58, 237, 0.1);
    transition: all 0.15s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(168, 85, 247, 0.15));
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    transform: scale(1.1);
    transition: all 0.4s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    border-radius: 16px;
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), var(--bg-card));
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.pricing-card.popular .pricing-header {
    margin-top: 20px;
}

.pricing-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-validity {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-price {
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

/* ===== Signup Section ===== */
.signup-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.signup-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.signup-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.signup-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.highlight-item i {
    color: var(--success);
}

.signup-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.signup-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.phone-input {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.phone-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: var(--bg-dark);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-right: 1px solid var(--border-light);
}

.phone-input input {
    border: none !important;
    box-shadow: none !important;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-hint i {
    font-size: 0.7rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-check a {
    color: var(--primary-light);
}

.form-check a:hover {
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-surface);
}

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

.about-image-grid {
    display: grid;
    gap: 16px;
}

.about-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.about-card:hover {
    transform: translateX(8px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.3), 0 0 70px rgba(124, 58, 237, 0.12);
}

.about-card:hover::before {
    width: 350px;
    height: 350px;
}

.about-card:active {
    transform: translateX(4px) scale(0.98);
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.45), 0 0 90px rgba(124, 58, 237, 0.2), inset 0 0 25px rgba(124, 58, 237, 0.12);
    transition: all 0.15s ease;
}

.about-card i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.about-card:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.about-card h4,
.about-card p {
    position: relative;
    z-index: 1;
}

.about-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.about-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-list {
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-list li i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--primary-light);
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.consent-group {
    margin: 20px 0 24px;
    padding: 18px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.consent-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.consent-group .form-check {
    margin-bottom: 12px;
    align-items: flex-start;
}

.consent-group .form-check:last-child {
    margin-bottom: 0;
}

.consent-group .form-check label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.consent-group .form-check a {
    color: var(--primary-light);
    text-decoration: underline;
    font-weight: 600;
}

.consent-group .form-check a:hover {
    color: var(--primary);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -2px 30px rgba(124, 58, 237, 0.3), 0 -1px 4px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: #ffffff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.85rem;
    opacity: 0.85;
    width: 16px;
    text-align: center;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.footer-newsletter p {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    border: 1.5px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6);
}

.newsletter-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 13px 16px;
    background: transparent;
    border: none;
    color: var(--primary-dark);
    font-size: 0.98rem;
    outline: none;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(124, 58, 237, 0.5);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-bottom a {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* ===== Animations ===== */
@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes phoneEntrance {
    from {
        opacity: 0;
        transform: translateY(80px) rotateY(-15deg) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateY(0deg) scale(1);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(124, 58, 237, 0.3);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(124, 58, 237, 0.15),
            inset 0 0 30px rgba(124, 58, 237, 0.05);
    }
    50% {
        border-color: rgba(168, 85, 247, 0.5);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(124, 58, 237, 0.25),
            0 0 100px rgba(168, 85, 247, 0.1),
            inset 0 0 30px rgba(124, 58, 237, 0.08);
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

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

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

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

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-phones {
        height: 450px;
        margin-top: 40px;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .signup-wrapper,
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-light);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-phones {
        height: 380px;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
    }

    .phone-1 {
        left: 5%;
    }

    .phone-2 {
        right: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-phones {
        height: 320px;
    }

    .phone-frame {
        width: 155px;
        height: 310px;
        border-radius: 28px;
    }

    .phone-screen {
        border-radius: 25px;
    }

    .phone-notch {
        width: 90px;
        height: 22px;
    }

    .floating-card {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .signup-form-wrapper,
    .contact-form-wrapper {
        padding: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
