/* ========================================
   TURKOTAG V3.0 - DUBAI LUXURY EDITION
   Premium Gold, Platinum, Obsidian Black
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES - LUXURY PALETTE
   ======================================== */
:root {
    /* Dubai Gold Palette */
    --gold-50: #fefce8;
    --gold-100: #fef9c3;
    --gold-200: #fef08a;
    --gold-300: #fde047;
    --gold-400: #facc15;
    --gold-500: #eab308;
    --gold-600: #ca8a04;
    --gold-700: #a16207;
    --gold-800: #854d0e;
    --gold-900: #713f12;

    /* Primary Colors - Luxurious */
    --color-gold: #d4af37;
    --color-gold-light: #f4e4bc;
    --color-gold-dark: #b8860b;
    --color-platinum: #e5e4e2;
    --color-champagne: #f7e7ce;
    --color-rose-gold: #b76e79;

    /* Obsidian Black Palette */
    --color-obsidian: #0a0a0a;
    --color-onyx: #0f0f0f;
    --color-charcoal: #1a1a1a;
    --color-graphite: #252525;
    --color-slate: #2d2d2d;

    /* Premium Gradients */
    --gradient-gold: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --gradient-luxury: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gradient-platinum: linear-gradient(135deg, #c9c9c9 0%, #ffffff 50%, #c9c9c9 100%);
    --gradient-champagne: linear-gradient(135deg, #f7e7ce 0%, #ffffff 50%, #f7e7ce 100%);
    --gradient-hero: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    --gradient-card: linear-gradient(145deg, rgba(212, 175, 55, 0.03) 0%, rgba(0, 0, 0, 0) 100%);

    /* Accent Colors */
    --color-accent: #d4af37;
    --color-accent-light: #e5c767;
    --color-accent-dark: #b8860b;

    /* Background */
    --color-bg: #0a0a0a;
    --color-bg-light: #141414;
    --color-bg-card: rgba(20, 20, 20, 0.8);
    --color-bg-elevated: #1a1a1a;

    /* Text */
    --color-text: #ffffff;
    --color-text-secondary: #a3a3a3;
    --color-text-muted: #737373;
    --color-text-gold: #d4af37;

    /* Border */
    --color-border: rgba(212, 175, 55, 0.15);
    --color-border-subtle: rgba(255, 255, 255, 0.05);
    --color-border-gold: rgba(212, 175, 55, 0.3);

    /* Glass Effect - Luxury */
    --glass-bg: rgba(20, 20, 20, 0.85);
    --glass-border: rgba(212, 175, 55, 0.1);
    --glass-blur: blur(24px);

    /* Shadows - Deep & Elegant */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-deep: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
    --shadow-gold-intense: 0 0 60px rgba(212, 175, 55, 0.25), 0 0 100px rgba(212, 175, 55, 0.1);
    --shadow-float: 0 25px 50px rgba(0, 0, 0, 0.5);

    /* Animation */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-hero: clamp(3rem, 8vw, 5.5rem);
    --font-size-xl: clamp(2rem, 4vw, 3rem);
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --letter-spacing-tight: -0.02em;
    --letter-spacing-wide: 0.1em;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes shimmer-gold {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
    }
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes border-glow {

    0%,
    100% {
        border-color: rgba(212, 175, 55, 0.2);
    }

    50% {
        border-color: rgba(212, 175, 55, 0.5);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-display);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-weight: var(--font-weight-normal);
}

/* Subtle Luxury Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-obsidian);
}

/* ========================================
   TYPOGRAPHY - LUXURY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.2;
}

/* Gold Text */
.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.text-gold-animated {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 4s ease infinite;
}

/* ========================================
   HEADER - FLOATING LUXURY
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-elegant);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
}

.site-header.scrolled .header-inner {
    background: rgba(10, 10, 10, 0.95);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

/* Logo */
.site-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: var(--letter-spacing-tight);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--color-text);
}

.nav-menu a:hover::after {
    width: 50%;
}

.nav-menu a.active {
    color: var(--color-gold);
}

.nav-menu a.active::after {
    width: 50%;
}

/* ========================================
   HERO SECTION - GRAND ENTRANCE
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) var(--space-lg);
}

/* Luxury Background Elements */
.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: float-gentle 12s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: float-gentle 15s ease-in-out infinite;
    animation-delay: -5s;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

/* Hero Title */
.hero-title {
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: var(--letter-spacing-tight);
}

.hero-title .gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 4s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-light);
    line-height: 1.8;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS - LUXURY EDITION
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

/* Primary Button - Gold */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-obsidian);
    box-shadow: var(--shadow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-intense);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Secondary Button - Glass Outline */
.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* Outline Gold Button */
.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-obsidian);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   APP CARDS - PREMIUM GLASS
   ======================================== */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
}

.app-card {
    position: relative;
    background: var(--color-bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition-elegant);
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
}

/* Gold Border on Hover */
.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 1px;
    background: var(--gradient-gold);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.app-card:hover::before {
    opacity: 1;
}

/* Subtle Glow */
.app-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.app-card:hover::after {
    opacity: 1;
}

.app-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-float), var(--shadow-gold);
    border-color: transparent;
}

/* App Icon */
.app-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
}

.app-card:hover .app-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-deep);
}

.app-card-content {
    position: relative;
    z-index: 1;
}

.app-card-title {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    letter-spacing: var(--letter-spacing-tight);
}

.app-card-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

/* App Badges - Luxury */
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-md);
}

.app-badge-new {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.app-badge-featured {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    border: 1px solid var(--color-border-gold);
}

.app-badge-updated {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ========================================
   RATING STARS - GOLD
   ======================================== */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-star {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

.rating-star.empty {
    fill: var(--color-slate);
    filter: none;
}

/* ========================================
   STATS SECTION - IMPRESSIVE
   ======================================== */
.stats-section {
    padding: var(--space-3xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: var(--letter-spacing-tight);
}

.section-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin: var(--space-md) auto 0;
}

/* ========================================
   FEATURES - GLASS CARDS
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    text-align: center;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    stroke: var(--color-gold);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-semibold);
}

.feature-card p {
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--space-3xl) 0;
}

.cta-content {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.cta-content h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER - ELEGANT
   ======================================== */
.site-footer {
    background: var(--color-obsidian);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-border-subtle);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-menu {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--color-gold);
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-subtle);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-obsidian);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   FORMS - LUXURY
   ======================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* ========================================
   REVEAL ANIMATION
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SCROLLBAR - LUXURY
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 4px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --font-size-hero: 2.5rem;
        --font-size-xl: 1.75rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 140px var(--space-md) var(--space-2xl);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-inner {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.text-center {
    text-align: center;
}

/* App Icon Placeholder */
.app-icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    background: var(--gradient-gold);
    box-shadow: var(--shadow-medium);
}