:root {
    /* Colors inspired by iOS App */
    --primary-purple: #9D00FF;
    --primary-blue: #0055FF;
    --primary-cyan: #00DDFF;
    --accent-orange: #FF9500;
    --accent-red: #FF3B30;
    --accent-yellow: #FFCC00;

    --bg-dark: #0a0a1a;
    /* Deep space dark for "Elite Background" feel */
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    --gradient-glow: linear-gradient(135deg, var(--primary-purple), var(--primary-blue), var(--primary-cyan));
    --gradient-orange: linear-gradient(135deg, #FFD60A, #FF9F0A, #FF453A);

    /* Typography */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-800 {
    max-width: 800px;
}

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

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

.gradient-text {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 0, 255, 0.6);
}

/* Navigation */
.navbar {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:not(.btn):hover {
    opacity: 1;
    color: var(--primary-cyan);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    transition: 0.3s;
}

.mobile-menu-btn i {
    color: white;
    font-size: 1.8rem;
}

/* Mobile Menu Overlay */
.nav-links.mobile-active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links.mobile-active a {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Disable scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
}

.hero-bg-shapes .shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-purple);
    top: -100px;
    left: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    bottom: -50px;
    right: -100px;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

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

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--primary-cyan);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.store-btn i {
    font-size: 2rem;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn .small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-btn .large {
    font-size: 1.1rem;
    font-weight: 700;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

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

.trust-item i {
    color: var(--primary-cyan);
}

/* Phone Mockup & Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

/* Modern Phone Mockup (iPhone 15 Pro Style) */
.phone-mockup {
    width: 300px;
    height: 611px;
    background: #000;
    border-radius: 50px;
    position: relative;
    margin: 0 auto;
    /* Frame Depth and Bezels */
    box-shadow:
        0 0 0 2px #3a3a3a,
        /* Antennas/Separators */
        0 0 0 5px #1a1a1a,
        /* Inner Bezel */
        0 0 0 8px #4a4a4a,
        /* Titanium Frame Light */
        0 0 0 9px #000,
        /* Outer Edge */
        0 30px 80px rgba(0, 0, 0, 0.6),
        /* Drop Shadow */
        inset 0 0 10px rgba(0, 0, 0, 0.8);
    /* Inner depth */

    transform: rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s ease;
    z-index: 10;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 0 0 2px #3a3a3a,
        0 0 0 5px #1a1a1a,
        0 0 0 8px #5a5a5a,
        /* Lighter on hover */
        0 0 0 9px #000,
        0 40px 100px rgba(0, 0, 0, 0.7),
        inset 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Dynamic Island */
.phone-notch {
    width: 90px;
    height: 24px;
    background: #000;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    z-index: 20;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Camera Dot inside Island */
.phone-notch::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Screen Glare */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, 0.05) 30%,
            rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 15;
}

/* Side Buttons */
.phone-mockup::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 100px;
    width: 4px;
    height: 35px;
    background: #2a2a2a;
    box-shadow: 0 50px 0 #2a2a2a, 0 100px 0 #2a2a2a;
    /* Volume rockers */
    border-radius: 2px 0 0 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    /* App background color */
    padding: 50px 20px 20px 20px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    color: white;
    /* Ensure text is visible */
}

/* New Mockup UI Styles */
.mockup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    height: 80px;
    /* Increased height area for buttons */
}

.header-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 60px;
}

.circle-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(20, 20, 40, 0.6);
    /* Darker semi-transparent bg */
    backdrop-filter: blur(5px);
    z-index: 1;
}

.blue-ring {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.orange-ring {
    border: 2px solid #f97316;
    color: #f97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.header-actions-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    align-self: flex-end;
    /* Push to right */
}

.pill-label {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blue-pill {
    background: #3b82f6;
    color: white;
}

.orange-pill {
    background: #f97316;
    color: white;
}

/* Center Brain Logic */
.center-brain {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    /* Faint blue glow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.brain-circle {
    font-size: 2.5rem;
    color: #3b82f6;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
}

/* Brand & Stats */
.mockup-brand-area {
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mockup-logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(to right, #d8b4fe, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.mockup-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.mockup-stats-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-pill.purple i {
    color: #d8b4fe;
}

.stat-pill.blue i {
    color: #60a5fa;
}

.stat-pill.gold i {
    color: #facc15;
}

/* Menu List */
.mockup-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.menu-card {
    background: rgba(255, 255, 255, 0.08);
    /* Darker glass */
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.2s;
}

.menu-card:hover {
    /* Mockup hover effect */
    background: rgba(255, 255, 255, 0.12);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

.green-icon {
    background: #10b981;
}

.teal-icon {
    background: #14b8a6;
}

.card-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.card-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

.arrow-icon {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Bottom Peek */
.mockup-bottom-peek {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.peek-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.peek-header i {
    color: #f97316;
}

/* Soft Elite Background recreated in CSS */
.phone-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.15) 0%, transparent 60%);
    z-index: 0;
    animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

/* App UI Elements */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.app-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.app-badge {
    background: var(--gradient-orange);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
}

.app-hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-hero-card .card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-hero-card h3 {
    margin-bottom: 5px;
}

.app-hero-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.app-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-main);
    color: white;
    font-weight: 600;
}

.app-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-card i {
    font-size: 1.2rem;
}

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

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

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

.stat-card span {
    font-weight: 700;
    font-size: 0.9rem;
}

.app-list {
    position: relative;
    z-index: 1;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 10px;
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-bg {
    background: rgba(157, 0, 255, 0.2);
    color: var(--primary-purple);
}

.blue-bg {
    background: rgba(0, 85, 255, 0.2);
    color: var(--primary-blue);
}

.item-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.item-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Cards outside Phone */
.floating-card {
    position: absolute;
    background: rgba(20, 20, 40, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 15%;
    left: -40px;
    color: var(--primary-purple);
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -40px;
    color: var(--primary-cyan);
    animation-delay: 2s;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--bg-glass);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
}

.feature-icon-wrapper.purple {
    background: rgba(157, 0, 255, 0.1);
    color: var(--primary-purple);
}

.feature-icon-wrapper.blue {
    background: rgba(0, 85, 255, 0.1);
    color: var(--primary-blue);
}

.feature-icon-wrapper.cyan {
    background: rgba(0, 221, 255, 0.1);
    color: var(--primary-cyan);
}

.feature-icon-wrapper.orange {
    background: rgba(255, 149, 0, 0.1);
    color: var(--accent-orange);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Showcase Section */
.showcase .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.feature-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list li {
    display: flex;
    gap: 20px;
}

.feature-list i {
    width: 30px;
    height: 30px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.glass-stack {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    position: absolute;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.main-card {
    width: 320px;
    padding: 30px;
    z-index: 3;
}

.back-card-1 {
    width: 300px;
    height: 200px;
    top: 30px;
    z-index: 2;
    transform: scale(0.95) translateY(-20px);
    opacity: 0.6;
}

.back-card-2 {
    width: 280px;
    height: 200px;
    top: 10px;
    z-index: 1;
    transform: scale(0.9) translateY(-40px);
    opacity: 0.3;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.level-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.star-rating {
    color: var(--accent-yellow);
}

.main-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.main-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 4px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-body p {
    padding-bottom: 20px;
    color: var(--text-secondary);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Super Modern Download CTA */
.cta-box {
    background: rgba(15, 23, 42, 0.6);
    /* Dark Glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(124, 58, 237, 0.2);
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dynamic Aurora Background */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%,
            rgba(124, 58, 237, 0.3),
            rgba(79, 70, 229, 0.1),
            transparent 60%);
    animation: rotateAurora 15s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateAurora {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.cta-content h2 span {
    background: linear-gradient(to right, #a78bfa, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 10px;
}

.cta-content p {
    font-size: 1.4rem;
    color: #cbd5e1;
    margin-bottom: 50px;
    max-width: 600px;
    font-weight: 500;
}

.store-buttons {
    display: flex;
    gap: 30px;
    /* Increased gap */
    justify-content: start;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.white-version {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.white-version i {
    color: white;
}

.white-version:hover {
    background: white;
    color: #000;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.white-version:hover i {
    color: #000;
}

.cta-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-decoration i {
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    filter: blur(1px);
}

/* Footer */
footer {
    padding: 80px 0 30px 0;
    background: #05050f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: var(--gradient-main);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
        margin-top: 50px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: 1;
        margin-top: 30px;
    }

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

    .col-visual {
        margin-top: 50px;
    }

    .stats-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 15px auto;
    }

    .social-icons {
        justify-content: center;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-decoration {
        display: none;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile menu for now */
    .mobile-menu-btn {
        display: block;
    }

    .store-btn {
        justify-content: center;
    }

    .phone-mockup {
        width: 280px;
        height: 550px;
    }

    .floating-card {
        display: none;
    }

    /* Hide floating cards on small screens */
}

/* Blog List Styles */
.blog-header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    font-size: 0.8rem;
    color: var(--primary-cyan);
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(0, 221, 255, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
    align-self: flex-start;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.blog-card h3 a {
    color: var(--text-primary);
}

.blog-card h3 a:hover {
    color: var(--primary-cyan);
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

/* Blog Detail Styles */
/* Note: .blog-tag is shared */
.post-container {
    max-width: 800px;
    margin: 120px auto 80px;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.post-title {
    font-size: 2.5rem;
    margin: 15px 0;
    font-family: var(--font-heading);
}

.post-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

.post-body h2 {
    color: var(--primary-cyan);
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-family: var(--font-heading);
}

.post-body p {
    margin-bottom: 20px;
}

.post-body strong {
    color: white;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--primary-cyan);
}

@media (max-width: 768px) {
    .post-container {
        padding: 20px;
        margin-top: 100px;
    }

    .post-title {
        font-size: 1.8rem;
    }
}

/* App Gallery Styles */
.app-gallery {
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(255, 255, 255, 0.02));
}

.gallery-track {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5%;
    /* Use percentage padding for responsiveness */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    /* Space for buttons */
}

.gallery-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    border-radius: 20px;
}

.gallery-viewport::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.gallery-track {
    display: flex;
    gap: 30px;
    padding: 20px 10px;
    width: max-content;
    /* Ensure track spans all items */
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
}

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

/* Add some navigation hints or adjust for mobile */
@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }

    .gallery-item {
        flex: 0 0 220px;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-container {
        padding: 0 20px;
    }
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    /* Büyük ve rahat tıklanabilir */
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.gallery-nav:hover {
    background: #fff;
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}