/* Global Premium Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --accent: #06b6d4;

    --bg-base: #020617;
    --bg-surface: rgba(30, 41, 59, 0.4);
    --bg-surface-hover: rgba(30, 41, 59, 0.7);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --border-glass: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(255, 255, 255, 0.2);

    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 40px -10px rgba(59, 130, 246, 0.4);

    --transition-snappy: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-base);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.15), transparent 25%);
    z-index: -1;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

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

/* ===================== */
/*   PARTICLE CANVAS     */
/* ===================== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    will-change: contents;
}

/* ===================== */
/*   GLASSMORPHISM       */
/* ===================== */
.glass {
    background: var(--bg-surface);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
}

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

/* ===================== */
/*       NAVBAR          */
/* ===================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(2, 6, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-main);
    border-radius: 99px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

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

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

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

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

.nav-links li a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

.nav-links li a:not(.btn-download)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-snappy);
    border-radius: 2px;
}

.nav-links li a:hover:not(.btn-download) {
    color: var(--text-main);
}

.nav-links li a:hover:not(.btn-download)::after {
    width: 100%;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 12px 28px;
    border-radius: 99px;
    font-weight: 600 !important;
    display: inline-block;
    box-shadow: 0 4px 15px -3px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-download:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.6);
}

/* ===================== */
/*      HERO SECTION     */
/* ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 15s infinite ease-in-out alternate;
    will-change: transform;
    transform: translateZ(0);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    right: 5%;
    border-radius: 50%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 20%;
    left: 5%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation-delay: -5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -20%;
    left: 20%;
    border-radius: 50%;
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(50px, 50px) rotate(20deg) scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: pulse-badge 3s infinite ease-in-out;
}

.hero-badge i {
    color: #eab308;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 540px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--bg-base);
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}

.btn-primary:hover::after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(255, 255, 255, 0.3);
    background: #f1f5f9;
}

.btn-primary i {
    font-size: 1.2rem;
}

.btn-secondary {
    background: var(--bg-surface);
    color: white;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 600;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--border-highlight);
    background: var(--bg-surface-hover);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce-soft 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 4px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@keyframes bounce-soft {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero-image {
    perspective: 1200px;
    display: flex;
    justify-content: center;
}

/* ===================== */
/*    PHONE MOCKUP       */
/* ===================== */
.iphone-mockup {
    width: 320px;
    height: 660px;
    background: #0f172a;
    border-radius: 50px;
    border: 8px solid #1e293b;
    position: relative;
    box-shadow:
        -20px 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1),
        var(--shadow-glow);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 42px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 10;
}

.iphone-mockup:hover {
    transform: rotateY(-5deg) rotateX(5deg) translateY(-10px);
    box-shadow:
        -30px 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2),
        0 0 60px -10px rgba(59, 130, 246, 0.5);
}

.screen {
    width: 100%;
    height: 100%;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.stats-container {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.stat-card i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

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

.stat-card.teal i {
    color: var(--accent);
}

.stat-card span {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.stat-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.chart-area {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    flex: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 20px 15px;
    gap: 8px;
}

.bar {
    width: 14px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: bar-grow 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes bar-grow {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--primary-light);
    border-radius: 20px;
}

.bar:nth-child(even) {
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.bar:nth-child(even)::after {
    background: #a78bfa;
}

.list-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.list-row .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.text-lines {
    flex: 1;
}

.line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.line.long {
    width: 80%;
    background: rgba(255, 255, 255, 0.2);
}

.line.short {
    width: 50%;
    margin-bottom: 0;
}

.floating-fab {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fab-pulse 3s infinite ease-in-out;
}

@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 10px 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59,130,246,0.3); }
}

/* ===================== */
/*   STATS SECTION       */
/* ===================== */
.stats-section {
    padding: 100px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

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

.stat-item {
    padding: 40px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.9);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-left: 4px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 12px;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 80px;
    font-weight: 300;
}

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

.feature-card {
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

/* Gradient border effect */
.feature-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--secondary));
    border-radius: 25px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

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

.icon-box {
    font-size: 2.2rem;
    margin-bottom: 30px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.05);
    transition: var(--transition-smooth);
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===================== */
/*   SHOWCASE SECTION    */
/* ===================== */
.showcase {
    padding: 140px 0;
    position: relative;
}

.showcase-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.showcase-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.showcase-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    margin-bottom: 24px;
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #cbd5e1;
}

.feature-list i {
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    padding: 8px;
    border-radius: 10px;
    font-size: 1.1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.btn-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--primary);
}

.btn-text:hover {
    gap: 15px;
    color: var(--primary-light);
}

/* Alt Mockup Style */
.alt-style {
    border: 8px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    transform: rotateY(15deg) rotateX(10deg);
}

.alt-style:hover {
    transform: rotateY(5deg) rotateX(5deg) translateY(-10px);
}

.alt-style .screen {
    background: rgba(15, 23, 42, 0.6);
}

.swimmer-profile-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.big-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f43f5e, #f97316);
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #1e293b;
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.3);
}

.swimmer-profile-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.swimmer-profile-header span {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    background: rgba(6, 182, 212, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* ===================== */
/*  TESTIMONIALS SECTION */
/* ===================== */
.testimonials {
    padding: 140px 0;
    position: relative;
}

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

.testimonial-card {
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #eab308;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 300;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cta-shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.15);
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.12);
    bottom: -200px;
    left: -100px;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), transparent 40%, var(--secondary), transparent 80%, var(--accent));
    border-radius: 34px;
    z-index: -1;
    opacity: 0.5;
    animation: gradient-rotate 6s linear infinite;
    background-size: 200% 200%;
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    font-size: 1.15rem;
    padding: 18px 40px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), #7c3aed);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

/* ===================== */
/*   PRIVACY PAGE        */
/* ===================== */
.page-header {
    background: transparent;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.privacy-content-section {
    padding: 0 0 100px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    box-shadow: var(--shadow-glass);
}

.policy-content h3 {
    color: white;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p,
.policy-content li {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-content strong {
    color: #e2e8f0;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.policy-content ul li {
    position: relative;
    padding-left: 28px;
}

.policy-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.policy-content a {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(96, 165, 250, 0.3);
    text-underline-offset: 4px;
}

.policy-content a:hover {
    color: white;
    text-decoration-color: var(--primary-light);
}

/* ===================== */
/*       FOOTER          */
/* ===================== */
footer {
    padding: 100px 0 40px;
    background: rgba(2, 6, 23, 0.8);
    border-top: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
}

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

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-logo p {
    color: var(--text-muted);
    max-width: 300px;
    font-size: 1.1rem;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 1rem;
}

/* ===================== */
/*     ANIMATIONS        */
/* ===================== */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* ===================== */
/*     RESPONSIVE        */
/* ===================== */
@media (max-width: 968px) {

    .hero-content,
    .showcase-content,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

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

    .hero-badge {
        margin: 0 auto 24px;
    }

    .showcase-content {
        flex-direction: column-reverse;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .iphone-mockup {
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-glass);
        z-index: 999;
    }

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

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

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content {
        padding: 50px 24px;
    }

    .policy-content {
        padding: 40px 24px;
    }

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

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

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 24px 12px;
    }

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

/* ===================== */
/*   HOW IT WORKS        */
/* ===================== */
.how-it-works {
    padding: 140px 0;
    position: relative;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 3px;
    z-index: 0;
    opacity: 0.4;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.step-card {
    text-align: center;
    padding: 40px 28px 36px;
    transition: var(--transition-smooth);
    width: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ===================== */
/*   PRICING SECTION     */
/* ===================== */
.pricing {
    padding: 140px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    padding: 50px 40px 44px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Featured card (Pro) */
.pricing-card.featured {
    border: 1px solid transparent;
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 300%;
    border-radius: 26px;
    z-index: -1;
    animation: pricing-gradient 4s ease infinite;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 22px;
    z-index: -1;
}

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

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 18px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    font-size: 1.05rem;
    font-weight: 400;
}

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

.pricing-features li i {
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.pricing-features li i.fa-check {
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.pricing-features li.disabled {
    color: #475569;
}

.pricing-features li.disabled i {
    color: #475569;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-pricing {
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===================== */
/*     FAQ SECTION       */
/* ===================== */
.faq {
    padding: 140px 0;
    position: relative;
}

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

.faq-item {
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: none;
    border: none;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: var(--transition-snappy);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 32px 28px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===================== */
/*   NEWSLETTER FORM     */
/* ===================== */
.newsletter-form {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-label {
    font-size: 0.95rem;
    color: var(--text-muted) !important;
    margin-bottom: 16px !important;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition-snappy);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: #64748b;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 16px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-snappy);
    white-space: nowrap;
}

.btn-newsletter:hover {
    filter: brightness(1.15);
}

.newsletter-status {
    margin-top: 12px !important;
    font-size: 0.9rem !important;
    min-height: 24px;
    transition: opacity 0.4s;
}

.newsletter-status.success {
    color: #22c55e !important;
}

.newsletter-status.error {
    color: #f43f5e !important;
}

/* ===================== */
/*  APP SCREENSHOTS      */
/* ===================== */
.app-screenshots {
    padding: 100px 0 60px;
    position: relative;
}

.screenshots-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.screenshots-track::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 auto;
    width: 260px;
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    scroll-snap-align: center;
    transition: var(--transition-smooth);
}

.screenshot-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(59, 130, 246, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-placeholder {
    width: 260px;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(180deg, #0f172a, #020617);
    color: var(--text-muted);
}

.screenshot-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.6;
}

.screenshot-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ===================== */
/*  NEW RESPONSIVE RULES */
/* ===================== */
@media (max-width: 968px) {
    .timeline {
        flex-direction: column;
        gap: 30px;
        max-width: 420px;
    }

    .timeline-line {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .screenshots-track {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 22px 24px;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 22px;
    }

    .pricing-card {
        padding: 40px 28px 36px;
    }

    .step-card {
        padding: 30px 20px 28px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 14px;
    }

    .btn-newsletter {
        justify-content: center;
        border-radius: 0 0 13px 13px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 32px 20px 28px;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .screenshot-item {
        width: 220px;
    }
}