/* ==========================================
   HizmeteGel Landing Page - Premium CSS
   ========================================== */

/* ========== CSS Variables ========== */
:root {
    /* Primary Colors */
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --primary-dark: #3730A3;
    --primary-muted: #EEF2FF;

    /* Secondary - Amber Gold */
    --secondary: #F59E0B;
    --secondary-light: #FCD34D;
    --secondary-dark: #D97706;

    /* Semantic */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #6366F1;

    /* Neutrals */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --white: #FFFFFF;
    --black: #000000;

    /* Backgrounds */
    --bg-primary: #F8FAFC;
    --bg-dark: #0F172A;
    --bg-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 12px;
    --sp-base: 16px;
    --sp-lg: 20px;
    --sp-xl: 24px;
    --sp-2xl: 32px;
    --sp-3xl: 48px;
    --sp-4xl: 64px;
    --sp-5xl: 80px;
    --sp-6xl: 120px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 40px rgba(79,70,229,0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-xl);
}

/* ========== Utility Classes ========== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--secondary) 0%, #FBBF24 50%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }

/* ========== Section Shared ========== */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-4xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: var(--sp-sm) var(--sp-base);
    background: var(--primary-muted);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--sp-base);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: var(--sp-base);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn ion-icon {
    font-size: 1.2em;
}

.btn-lg {
    padding: var(--sp-base) var(--sp-2xl);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--sp-base) 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: var(--sp-sm) 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
}

.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.navbar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.navbar-links {
    display: flex;
    gap: var(--sp-2xl);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: var(--sp-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    border-radius: 1px;
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--sp-sm);
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(79, 70, 229, 0.2);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.1);
    bottom: 100px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 200px;
    height: 200px;
    background: rgba(124, 58, 237, 0.15);
    top: 40%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-sm);
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: var(--sp-sm) var(--sp-base);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--sp-xl);
    backdrop-filter: blur(10px);
}

.hero-badge ion-icon {
    font-size: 1rem;
    color: var(--secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--sp-xl);
    letter-spacing: -0.5px;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, #FBBF24 50%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: var(--sp-2xl);
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: var(--sp-base);
    flex-wrap: wrap;
    margin-bottom: var(--sp-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--sp-xl);
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-number::after {
    content: '+';
    font-size: 0.7em;
    color: var(--secondary);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero Visual - Phone Mockups */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

/* Phone Mockup - Shared */
.phone-mockup {
    position: relative;
    background: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.4),
        inset 0 0 0 2px rgba(255,255,255,0.1);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    border-radius: 32px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-mockup-main {
    width: 280px;
    z-index: 3;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup-secondary {
    position: absolute;
    width: 230px;
    right: -20px;
    top: 60px;
    z-index: 2;
    transform: rotate(5deg);
    opacity: 0.85;
    animation: phoneFloat 6s ease-in-out infinite 1s;
}

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

.phone-mockup-secondary {
    animation: phoneFloatSecondary 6s ease-in-out infinite 1s;
}

@keyframes phoneFloatSecondary {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--sp-md) var(--sp-base);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 5;
    white-space: nowrap;
}

.floating-icon {
    font-size: 1.3rem;
}

.floating-card-1 {
    top: 80px;
    left: -30px;
    animation: floatingCard 5s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 120px;
    right: -10px;
    animation: floatingCard 5s ease-in-out infinite 2s;
}

@keyframes floatingCard {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -10px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

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

/* ========== FEATURES ========== */
.features {
    padding: var(--sp-6xl) 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-xl);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--sp-2xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--accent, var(--primary)) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-lg);
    transition: all var(--transition-normal);
}

.feature-icon-wrap ion-icon {
    font-size: 1.5rem;
    color: var(--accent, var(--primary));
}

.feature-card:hover .feature-icon-wrap {
    background: var(--accent, var(--primary));
    box-shadow: 0 4px 20px color-mix(in srgb, var(--accent, var(--primary)) 40%, transparent);
}

.feature-card:hover .feature-icon-wrap ion-icon {
    color: var(--white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--sp-sm);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: var(--sp-6xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--white) 100%);
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xl);
}

.step-card {
    display: grid;
    grid-template-columns: auto 250px 1fr;
    gap: var(--sp-2xl);
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--sp-2xl);
    width: 100%;
    max-width: 900px;
    transition: all var(--transition-normal);
    position: relative;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-muted);
    transform: translateX(8px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-muted), var(--gray-100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.step-phone {
    position: relative;
    background: #000;
    border-radius: 28px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
    width: 180px;
    overflow: hidden;
}

.step-phone .phone-notch {
    width: 70px;
    height: 20px;
    border-radius: 0 0 12px 12px;
}

.step-phone .phone-screen {
    border-radius: 22px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--sp-sm);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    justify-content: center;
    opacity: 0.5;
}

/* ========== SCREENS SHOWCASE ========== */
.screens {
    padding: var(--sp-6xl) 0;
    background: var(--bg-primary);
}

.screens-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--sp-2xl);
    align-items: center;
}

.screen-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xl);
}

.screen-label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: var(--sp-sm) var(--sp-lg);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.screen-customer .screen-label {
    background: var(--primary-muted);
    color: var(--primary);
}

.screen-provider .screen-label {
    background: #FEF3C7;
    color: var(--secondary-dark);
}

.screen-phone-wrap .phone-mockup {
    width: 260px;
    transition: transform var(--transition-normal);
}

.screen-phone-wrap:hover .phone-mockup {
    transform: translateY(-8px);
}

.screen-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.screen-feature-item {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.screen-feature-item ion-icon {
    font-size: 1.2rem;
}

.screens-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-base);
}

.divider-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
}

.divider-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-glow);
}

/* ========== MAP FEATURE ========== */
.map-feature {
    padding: var(--sp-6xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-primary) 100%);
}

.map-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: center;
}

.map-content .section-title {
    text-align: left;
}

.map-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--sp-2xl);
}

.map-stats {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
}

.map-stat {
    display: flex;
    align-items: center;
    gap: var(--sp-base);
    padding: var(--sp-base);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.map-stat:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.map-stat ion-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.map-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-900);
}

.map-stat span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.map-visual {
    display: flex;
    justify-content: center;
}

.map-visual .phone-mockup {
    width: 280px;
    transition: transform var(--transition-normal);
}

.map-visual .phone-mockup:hover {
    transform: translateY(-8px) rotate(-2deg);
}

/* ========== CATEGORIES ========== */
.categories {
    padding: var(--sp-6xl) 0;
    background: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-2xl) var(--sp-base);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    background: color-mix(in srgb, var(--cat-color, var(--primary)) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.category-icon ion-icon {
    font-size: 1.6rem;
    color: var(--cat-color, var(--primary));
}

.category-card:hover .category-icon {
    background: var(--cat-color, var(--primary));
    transform: scale(1.05);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--cat-color, var(--primary)) 35%, transparent);
}

.category-card:hover .category-icon ion-icon {
    color: var(--white);
}

.category-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: var(--sp-6xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-xl);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--sp-2xl);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--primary-muted);
    line-height: 1;
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--sp-base);
}

.testimonial-stars ion-icon {
    color: var(--secondary);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--sp-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7C3AED);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ========== DOWNLOAD CTA ========== */
.download-cta {
    position: relative;
    padding: var(--sp-6xl) 0;
    background: var(--bg-hero);
    overflow: hidden;
}

.download-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.download-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.2);
    top: -100px;
    left: -100px;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.download-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    bottom: -50px;
    right: -50px;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite reverse;
}

.download-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--sp-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--sp-lg);
}

.download-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: var(--sp-2xl);
    max-width: 480px;
}

.download-buttons {
    display: flex;
    gap: var(--sp-base);
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--sp-md) var(--sp-xl);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.store-button ion-icon {
    font-size: 1.8rem;
    color: var(--white);
}

.store-button small {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.store-button strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.download-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup-download {
    width: 260px;
    animation: phoneFloat 6s ease-in-out infinite;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding-top: var(--sp-4xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--sp-2xl);
    padding-bottom: var(--sp-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    margin-bottom: var(--sp-base);
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--sp-lg);
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: var(--sp-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link ion-icon {
    font-size: 1.1rem;
    color: var(--gray-400);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.social-link:hover ion-icon {
    color: var(--white);
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: var(--sp-lg);
}

.footer-links-group a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: var(--sp-xs) 0;
    transition: all var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    padding: var(--sp-xl) 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ========== ANIMATIONS (scroll-triggered) ========== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        min-height: 400px;
    }

    .phone-mockup-main {
        width: 240px;
    }

    .phone-mockup-secondary {
        width: 200px;
    }

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

    .step-card {
        grid-template-columns: auto 180px 1fr;
    }

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

    .screens-divider {
        flex-direction: row;
        gap: var(--sp-base);
    }

    .divider-line {
        width: 80px;
        height: 2px;
    }

    .map-inner {
        grid-template-columns: 1fr;
    }

    .map-content .section-title,
    .map-content .section-tag {
        text-align: center;
    }

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

    .map-desc {
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }

    .map-stats {
        max-width: 400px;
        margin: 0 auto;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .download-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

@media (max-width: 768px) {
    :root {
        --sp-6xl: 80px;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--sp-xl);
        gap: var(--sp-base);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 120px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-visual {
        min-height: 350px;
    }

    .phone-mockup-main {
        width: 220px;
    }

    .phone-mockup-secondary {
        width: 180px;
        right: -10px;
    }

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

    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-phone {
        width: 160px;
    }

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

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

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

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--sp-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--sp-base);
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--sp-base);
    }

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

    .phone-mockup-secondary {
        display: none;
    }

    .floating-card-1 {
        left: 0;
        top: 20px;
        font-size: 0.75rem;
    }

    .floating-card-2 {
        right: 0;
        bottom: 60px;
        font-size: 0.75rem;
    }

    .download-buttons {
        flex-direction: column;
    }

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