/* ===== APPETITE FYNDR - STUNNING MULTI-COLOR ELEGANT DESIGN ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    /* Primary Brand */
    --brand-primary: #0019ff;
    --brand-dark: #000d99;
    
    /* Multi-Color Palette */
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --fuchsia-500: #d946ef;
    --pink-500: #ec4899;
    --rose-500: #f43f5e;
    --red-500: #ef4444;
    --orange-500: #f97316;
    --amber-500: #f59e0b;
    --yellow-500: #eab308;
    --lime-500: #84cc16;
    --green-500: #22c55e;
    --emerald-500: #10b981;
    --teal-500: #14b8a6;
    --cyan-500: #06b6d4;
    --sky-500: #0ea5e9;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    
    /* Text */
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Stunning Gradients */
    --grad-hero: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    --grad-vibrant: linear-gradient(135deg, #0019ff 0%, #6366f1 25%, #a855f7 50%, #ec4899 75%, #f97316 100%);
    --grad-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --grad-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --grad-aurora: linear-gradient(135deg, #00c6fb 0%, #005bea 50%, #6366f1 100%);
    --grad-fire: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --grad-forest: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --grad-royal: linear-gradient(135deg, #0019ff 0%, #8b5cf6 100%);
    --grad-candy: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
    --grad-cosmic: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --grad-rainbow: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    /*--grad-mesh: radial-gradient(at 40% 20%, #a855f7 0px, transparent 50%), */
    /*             radial-gradient(at 80% 0%, #06b6d4 0px, transparent 50%),*/
    /*             radial-gradient(at 0% 50%, #3b82f6 0px, transparent 50%),*/
    /*             radial-gradient(at 80% 50%, #f97316 0px, transparent 50%),*/
    /*             radial-gradient(at 0% 100%, #ec4899 0px, transparent 50%),*/
    /*             radial-gradient(at 80% 100%, #10b981 0px, transparent 50%);*/
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow-blue: 0 0 60px rgba(0, 25, 255, 0.3);
    --shadow-glow-purple: 0 0 60px rgba(139, 92, 246, 0.3);
    --shadow-glow-pink: 0 0 60px rgba(236, 72, 153, 0.3);
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--grad-mesh);
    opacity: 0.4;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0%, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img { height: 44px; }

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

.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--brand-primary);
    background: rgba(0, 25, 255, 0.05);
}

.nav-link.active {
    color: var(--brand-primary);
    background: rgba(0, 25, 255, 0.08);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--grad-royal);
    color: white;
    box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 25, 255, 0.4);
}

.btn-gradient {
    background: var(--grad-vibrant);
    background-size: 200% 200%;
    color: white;
    animation: gradientShift 5s ease infinite;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

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

.btn-outline {
    background: white;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-gray);
}

.btn-ghost:hover {
    color: var(--brand-primary);
    background: rgba(0, 25, 255, 0.05);
}

.btn-white {
    background: white;
    color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

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

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    opacity: 0.5;
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 25, 255, 0.2);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.2);
    bottom: -20%;
    left: -10%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.15);
    top: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 8px 8px 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

.hero-badge-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

.hero-badge-tag {
    background: var(--grad-vibrant);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: var(--grad-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat { text-align: center; }

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    background: var(--grad-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-card {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.hero-card-body { padding: 28px; }

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hero-stat-box {
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.hero-stat-box:nth-child(1) { background: linear-gradient(135deg, rgba(0, 25, 255, 0.08), rgba(99, 102, 241, 0.05)); }
.hero-stat-box:nth-child(2) { background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05)); }
.hero-stat-box:nth-child(3) { background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.05)); }

.hero-stat-box-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-stat-box:nth-child(1) .hero-stat-box-value { color: var(--brand-primary); }
.hero-stat-box:nth-child(2) .hero-stat-box-value { color: var(--violet-500); }
.hero-stat-box:nth-child(3) .hero-stat-box-value { color: var(--emerald-500); }

.hero-stat-box-label { font-size: 13px; color: var(--text-gray); }

.hero-chart {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 180px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.chart-bar {
    flex: 1;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: var(--transition-base);
    cursor: pointer;
}

.chart-bar:nth-child(1) { height: 40%; background: var(--grad-royal); }
.chart-bar:nth-child(2) { height: 65%; background: var(--grad-ocean); }
.chart-bar:nth-child(3) { height: 50%; background: var(--grad-cosmic); }
.chart-bar:nth-child(4) { height: 80%; background: var(--grad-candy); }
.chart-bar:nth-child(5) { height: 70%; background: var(--grad-fire); }
.chart-bar:nth-child(6) { height: 55%; background: var(--grad-sunset); }
.chart-bar:nth-child(7) { height: 90%; background: var(--grad-forest); }

.chart-bar:hover { transform: scaleY(1.08); filter: brightness(1.1); }

/* Floating Cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-xl);
    padding: 18px 22px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatCard 6s ease-in-out infinite;
}

.float-card-1 { top: 5%; left: -80px; animation-delay: 0s; }
.float-card-2 { bottom: 15%; right: -60px; animation-delay: 3s; }

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

.float-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.float-icon.blue { background: linear-gradient(135deg, rgba(0, 25, 255, 0.1), rgba(99, 102, 241, 0.05)); color: var(--brand-primary); }
.float-icon.green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05)); color: var(--emerald-500); }
.float-icon.purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05)); color: var(--violet-500); }
.float-icon.orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.05)); color: var(--orange-500); }

.float-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.float-text span { font-size: 12px; color: var(--text-light); }

/* ===== LOGOS SECTION ===== */
.logos-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logos-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logos-row img {
    height: 32px;
    /*opacity: 0.4;*/
    /*filter: grayscale(100%);*/
    /*transition: var(--transition-base);*/
}

.logos-row img:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* ===== SECTIONS ===== */
.section { padding: 120px 0; position: relative; }

.section-light { background: var(--bg-light); }
.section-gradient { background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%); }

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 10px 24px;
    border-radius: var(--radius-full);
}

.section-badge.blue { background: rgba(0, 25, 255, 0.08); color: var(--brand-primary); }
.section-badge.purple { background: rgba(139, 92, 246, 0.08); color: var(--violet-500); }
.section-badge.green { background: rgba(16, 185, 129, 0.08); color: var(--emerald-500); }
.section-badge.orange { background: rgba(249, 115, 22, 0.08); color: var(--orange-500); }
.section-badge.pink { background: rgba(236, 72, 153, 0.08); color: var(--pink-500); }

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title .gradient-text {
    background: var(--grad-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-2xl);
    padding: 40px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:nth-child(1)::before { background: var(--grad-royal); }
.feature-card:nth-child(2)::before { background: var(--grad-ocean); }
.feature-card:nth-child(3)::before { background: var(--grad-cosmic); }
.feature-card:nth-child(4)::before { background: var(--grad-candy); }
.feature-card:nth-child(5)::before { background: var(--grad-fire); }
.feature-card:nth-child(6)::before { background: var(--grad-sunset); }
.feature-card:nth-child(7)::before { background: var(--grad-forest); }
.feature-card:nth-child(8)::before { background: var(--grad-aurora); }
.feature-card:nth-child(9)::before { background: var(--grad-vibrant); }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
}

.feature-icon.blue { background: linear-gradient(135deg, rgba(0, 25, 255, 0.1), rgba(99, 102, 241, 0.05)); color: var(--brand-primary); }
.feature-icon.purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05)); color: var(--violet-500); }
.feature-icon.green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05)); color: var(--emerald-500); }
.feature-icon.orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.05)); color: var(--orange-500); }
.feature-icon.pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 63, 94, 0.05)); color: var(--pink-500); }
.feature-icon.cyan { background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(14, 165, 233, 0.05)); color: var(--cyan-500); }

.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.feature-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--grad-vibrant);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 48px 28px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

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

.step-num {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.step-card:nth-child(1) .step-num { background: var(--grad-royal); box-shadow: var(--shadow-glow-blue); }
.step-card:nth-child(2) .step-num { background: var(--grad-ocean); box-shadow: var(--shadow-glow-purple); }
.step-card:nth-child(3) .step-num { background: var(--grad-candy); box-shadow: var(--shadow-glow-pink); }
.step-card:nth-child(4) .step-num { background: var(--grad-forest); box-shadow: 0 0 60px rgba(16, 185, 129, 0.3); }

.step-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== SHOWCASE ===== */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.showcase-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.showcase-title .gradient-text {
    background: var(--grad-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-text {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 16px;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.showcase-list li i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05));
    color: var(--emerald-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.showcase-image {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-slow);
}

.showcase-image:hover {
    transform: scale(1.02);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-2xl);
    padding: 40px;
    transition: var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    opacity: 0.05;
    line-height: 1;
}

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

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

.testimonial-stars i { color: var(--amber-500); font-size: 18px; }

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-light);
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-2xl);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

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

.pricing-card.featured {
    border: 2px solid var(--brand-primary);
    box-shadow: var(--shadow-glow-blue);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-vibrant);
    color: white;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.pricing-card:nth-child(1) .pricing-icon { background: linear-gradient(135deg, rgba(0, 25, 255, 0.1), rgba(99, 102, 241, 0.05)); color: var(--brand-primary); }
.pricing-card:nth-child(2) .pricing-icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05)); color: var(--violet-500); }
.pricing-card:nth-child(3) .pricing-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05)); color: var(--emerald-500); }

.pricing-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.pricing-price {
    margin-bottom: 12px;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
    vertical-align: top;
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing-price .period {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--emerald-500); font-size: 16px; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: var(--grad-vibrant);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    padding: 100px 0 40px;
    color: white;
}

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img { height: 44px;  }

.footer-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--brand-primary);
    transform: translateY(-4px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

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

.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition-base);
}

.footer-links a:hover { color: white; }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom a { color: var(--cyan-500); }

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
}

.auth-left {
    flex: 1;
    background: var(--grad-vibrant);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.auth-left::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.auth-logo { margin-bottom: 60px; }
.auth-logo img { height: 52px; filter: brightness(0) invert(1); }

.auth-left h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.auth-left p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.auth-features {
    margin-top: 60px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.auth-feature i {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.auth-right {
    flex: 1;
    background: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
}

.auth-form h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.auth-form > p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    height: 56px;
    padding: 0 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 16px;
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 25, 255, 0.1);
}

.form-input::placeholder { color: var(--text-light); }

textarea.form-input { height: auto; min-height: 150px; padding: 18px 20px; resize: vertical; }

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 32px 0;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.08);
}

.auth-divider span {
    font-size: 13px;
    color: var(--text-light);
}

.auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-social button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.auth-social button:hover {
    border-color: var(--brand-primary);
    background: rgba(0, 25, 255, 0.02);
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 15px;
    color: var(--text-gray);
}

.auth-footer a { color: var(--brand-primary); font-weight: 600; }

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-mesh);
    opacity: 0.3;
}

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

.page-header h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-header h1 .gradient-text {
    background: var(--grad-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover { border-color: var(--brand-primary); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-question i {
    color: var(--text-light);
    transition: var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

.faq-answer {
    padding: 0 32px 28px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer { display: block; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.contact-card:hover {
    border-color: var(--brand-primary);
    transform: translateX(8px);
}

.contact-card i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 25, 255, 0.1), rgba(99, 102, 241, 0.05));
    color: var(--brand-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-card-text { font-size: 15px; color: var(--text-gray); }

.contact-form-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-2xl);
    padding: 52px;
    box-shadow: var(--shadow-xl);
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 36px;
}

/* ===== STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.stat-card {
    text-align: center;
    padding: 52px 36px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-2xl);
    transition: var(--transition-base);
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-card:nth-child(1) .stat-value { background: var(--grad-royal); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card:nth-child(2) .stat-value { background: var(--grad-candy); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card:nth-child(3) .stat-value { background: var(--grad-forest); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.stat-label {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 60px; }
    .float-card { display: none; }
    
    .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .showcase { grid-template-columns: 1fr; gap: 60px; }
    .showcase.reverse { direction: ltr; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }
    .header-actions .btn-ghost { display: none; }
    
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: 40px; }
    .hero-actions { flex-direction: column; }
    
    .section { padding: 80px 0; }
    .section-title { font-size: 36px; }
    
    .features-grid, .pricing-grid, .testimonials-grid, .steps-grid, .stats-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    .auth-left { display: none; }
    .auth-right { max-width: 100%; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .page-header h1 { font-size: 40px; }
    
    .cta-title { font-size: 36px; }
    .cta-actions { flex-direction: column; }
}
