/* ===========================
   PREMIUM FONTS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===========================
   CSS RESET
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FAFAFA;
    color: #171717;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
    /* Amber Palette */
    --amber-50: #FFFBEB;
    --amber-100: #FEF3C7;
    --amber-200: #FDE68A;
    --amber-300: #FCD34D;
    --amber-400: #FBBF24;
    --amber-500: #F59E0B;
    --amber-600: #D97706;
    --amber-700: #B45309;
    --amber-800: #92400E;
    --amber-900: #78350F;
    
    /* Neutrals - Premium */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Semantic Colors */
    --success: #22C55E;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Spacing - Perfect Scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */
    
    /* Border Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;
    
    /* Shadows - Premium */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-amber: 0 20px 60px -15px rgba(217, 119, 6, 0.4);
    --shadow-glow: 0 0 0 1px rgba(217, 119, 6, 0.1), 0 0 20px rgba(217, 119, 6, 0.15);
    
    /* Transitions - Smooth */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index Scale */
    --z-base: 0;
    --z-dropdown: 1000;
    --z-sticky: 1100;
    --z-fixed: 1200;
    --z-modal-backdrop: 1300;
    --z-modal: 1400;
    --z-popover: 1500;
    --z-tooltip: 1600;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--space-4);
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Selection */
::selection {
    background: var(--amber-200);
    color: var(--gray-900);
}

/* ===========================
   HEADER - Ultra Premium
   =========================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.navbar {
    height: 72px;
    display: flex;
    align-items: center;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    letter-spacing: -0.02em;
    transition: var(--transition-base);
}

.navbar-brand:hover {
    color: var(--amber-600);
}

.navbar-brand .logo {
    height: 32px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    transition: var(--transition-base);
    padding: var(--space-2) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-600);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gray-900);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    gap: var(--space-3);
    margin-left: var(--space-8);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===========================
   BUTTONS - Premium Design
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0 var(--space-6);
    height: 44px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-sm {
    height: 36px;
    padding: 0 var(--space-4);
    font-size: 14px;
}

.btn-lg {
    height: 52px;
    padding: 0 var(--space-8);
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--amber-600);
    color: var(--white);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: var(--amber-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--amber-600);
    border: 1.5px solid var(--amber-600);
}

.btn-outline:hover {
    background: var(--amber-50);
    border-color: var(--amber-700);
    color: var(--amber-700);
}

.btn-secondary {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--amber-600);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--amber-600);
}

/* ===========================
   HERO - Stunning Design
   =========================== */
.hero {
    padding: calc(72px + var(--space-32)) 0 var(--space-32);
    background: 
        radial-gradient(circle at 20% 20%, rgba(217, 119, 6, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, var(--amber-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(5deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-20);
    align-items: center;
    position: relative;
}

.hero-text {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--amber-600);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-xs);
}

.hero-eyebrow i {
    font-size: 12px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--amber-600) 0%, var(--amber-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-10);
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.feature-badge:hover {
    border-color: var(--amber-300);
    background: var(--amber-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.feature-badge i {
    color: var(--amber-600);
    font-size: 15px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===========================
   STATS - Premium Cards
   =========================== */
.stats {
    padding: var(--space-24) 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat-item {
    text-align: center;
    padding: var(--space-10);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-500), var(--amber-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.stat-item:hover {
    border-color: var(--amber-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--amber-600);
    line-height: 1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: -0.01em;
}

/* ===========================
   SECTION - Reusable
   =========================== */
.section {
    padding: var(--space-32) 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-20);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--amber-100);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--amber-800);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: var(--space-5);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ===========================
   FEATURES - Grid Layout
   =========================== */
.features {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    transition: all var(--transition-smooth);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--amber-300);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 26px;
    color: var(--white);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    position: relative;
    z-index: 1;
}

.features-cta {
    text-align: center;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-16);
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--amber-300) 20%, 
        var(--amber-300) 80%, 
        transparent 100%
    );
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 128px;
    height: 128px;
    background: var(--white);
    border: 4px solid var(--amber-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--amber-600);
    margin: 0 auto var(--space-8);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    letter-spacing: -0.02em;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--amber-50), var(--amber-100));
    border: 2px solid var(--amber-200);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.step-icon i {
    font-size: 32px;
    color: var(--amber-600);
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 340px;
    margin: 0 auto;
}

/* ===========================
   PRICING - Premium Cards
   =========================== */
.pricing {
    background: var(--gray-50);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    max-width: 1040px;
    margin: 0 auto var(--space-12);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-12);
    transition: all var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--amber-300);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.popular {
    border-color: var(--amber-600);
    border-width: 3px;
    background: linear-gradient(180deg, var(--white) 0%, var(--amber-50) 100%);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-6);
    background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-8);
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.01em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
}

.pricing-price .currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-500);
}

.pricing-price .amount {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--amber-600);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-price .period {
    font-size: 20px;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-save {
    display: inline-block;
    margin-top: var(--space-3);
    padding: var(--space-2) var(--space-5);
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.pricing-features {
    margin-bottom: var(--space-8);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: 15px;
    color: var(--gray-700);
}

.pricing-feature i {
    flex-shrink: 0;
    color: var(--amber-600);
    font-size: 18px;
}

.pricing-note {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--gray-500);
    font-size: 14px;
}

.pricing-note i {
    color: var(--amber-600);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--amber-200);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-5);
}

.testimonial-stars i {
    color: var(--amber-500);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-8);
}

.testimonial-author {
    padding-top: var(--space-5);
    border-top: 1px solid var(--gray-200);
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
    letter-spacing: -0.01em;
}

.author-business {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===========================
   CTA - Bold Section
   =========================== */
.cta {
    padding: var(--space-32) 0;
    background: linear-gradient(135deg, var(--amber-600) 0%, var(--amber-700) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: var(--space-5);
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-12);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

/* ===========================
   FOOTER - Professional
   =========================== */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-24) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid var(--gray-800);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-8);
    max-width: 420px;
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-5);
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--amber-500);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: 14px;
}

.footer-contact i {
    color: var(--amber-600);
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-4);
    padding-bottom: var(--space-12);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    margin-bottom: var(--space-2);
    line-height: 1.8;
}

.footer-bottom p:last-child {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-made {
    margin-top: var(--space-2);
    font-size: 13px !important;
    color: var(--gray-500) !important;
}

.footer-bottom .zenna-link {
    color: var(--amber-600);
    font-weight: 600;
    transition: var(--transition-base);
    text-decoration: none;
    position: relative;
}

.footer-bottom .zenna-link:hover {
    color: var(--amber-500);
}

.footer-bottom .zenna-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-500);
    transition: width var(--transition-base);
}

.footer-bottom .zenna-link:hover::after {
    width: 100%;
}

.footer-bottom .heart {
    display: inline-block;
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20% { transform: scale(0.95); }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 60px; }
    .section-title { font-size: 44px; }
    .cta-title { font-size: 56px; }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-subtitle,
    .hero-cta,
    .hero-features {
        justify-content: center;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-actions {
        margin-left: 0;
        width: 100%;
        flex-direction: column;
    }
    
    .hero {
        padding: calc(72px + var(--space-20)) 0 var(--space-20);
    }
    
    .hero-title { font-size: 44px; }
    .hero-subtitle { font-size: 18px; }
    .section-title { font-size: 36px; }
    .cta-title { font-size: 44px; }
    
    .features-grid,
    .testimonials-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    /* FEATURES PAGE - Gelişmiş Özellikler Mobil Fix */
    .features-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    /* ABOUT PAGE - Misyon & Vizyon Mobil Fix */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: var(--space-6) !important;
    }
    
    /* Box içindeki padding'leri küçült */
    div[style*="padding: var(--space-12)"] {
        padding: var(--space-8) !important;
    }
    
    /* İkon boyutlarını küçült */
    div[style*="width: 64px; height: 64px"] {
        width: 48px !important;
        height: 48px !important;
    }
    
    div[style*="width: 64px; height: 64px"] i {
        font-size: 22px !important;
    }
    
    /* Başlıkları küçült */
    h3[style*="font-size: 28px"] {
        font-size: 22px !important;
    }
    
    /* CONTACT PAGE - İletişim Bilgileri & Form Mobil Fix */
    div[style*="grid-template-columns: 1fr 1.2fr"] {
        grid-template-columns: 1fr !important;
        gap: var(--space-8) !important;
    }
    
    /* İletişim kartları padding */
    div[style*="background: var(--gray-50); padding: var(--space-8)"] {
        padding: var(--space-6) !important;
    }
    
    /* Form padding */
    div[style*="background: var(--gray-50); padding: var(--space-12)"] {
        padding: var(--space-6) !important;
    }
    
    /* İkon container */
    div[style*="width: 48px; height: 48px; background: linear-gradient"] {
        width: 40px !important;
        height: 40px !important;
    }
    
    div[style*="width: 48px; height: 48px; background: linear-gradient"] i {
        font-size: 18px !important;
    }
    
    /* Form başlık */
    h2[style*="font-size: 32px"] {
        font-size: 24px !important;
    }
    
    /* Input ve textarea yükseklikleri */
    input[style*="height: 48px"],
    select[style*="height: 48px"] {
        height: 44px !important;
    }
    
    /* FAQ Grid */
    div[style*="grid-template-columns: repeat(2, 1fr)"][style*="max-width: 1040px"] {
        grid-template-columns: 1fr !important;
        gap: var(--space-6) !important;
    }
    
    /* FAQ Kartlar */
    div[style*="background: var(--white); padding: var(--space-8); border-radius: var(--radius-2xl)"] {
        padding: var(--space-6) !important;
    }
    
    h3[style*="font-size: 18px"] {
        font-size: 16px !important;
    }
}

@media (max-width: 640px) {
    :root {
        --space-32: 5rem;
    }
    
    .hero-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .cta-title { font-size: 36px; }
    .pricing-price .amount { font-size: 56px; }
    .stat-number { font-size: 40px; }
    .step-number { 
        width: 96px; 
        height: 96px; 
        font-size: 36px; 
    }
    
    /* Küçük ekranlarda daha fazla padding azaltma */
    div[style*="padding: var(--space-10)"] {
        padding: var(--space-6) !important;
    }
    
    div[style*="padding: var(--space-12)"] {
        padding: var(--space-6) !important;
    }
    
    /* Container padding */
    .container {
        padding: 0 var(--space-4) !important;
    }
    
    /* Başlıklar */
    h2[style*="font-size: 32px"] {
        font-size: 22px !important;
    }
    
    h3[style*="font-size: 28px"] {
        font-size: 20px !important;
    }
    
    h3[style*="font-size: 18px"] {
        font-size: 15px !important;
    }
    
    /* Font boyutları */
    p[style*="font-size: 17px"] {
        font-size: 15px !important;
    }
    
    p[style*="font-size: 16px"] {
        font-size: 14px !important;
    }
    
    /* İkonlar daha da küçük */
    div[style*="width: 48px; height: 48px"] {
        width: 36px !important;
        height: 36px !important;
    }
    
    div[style*="width: 48px; height: 48px"] i {
        font-size: 16px !important;
    }
    
    div[style*="width: 40px; height: 40px"] {
        width: 32px !important;
        height: 32px !important;
    }
    
    /* Sosyal medya linkleri */
    a[style*="width: 40px; height: 40px"] {
        width: 36px !important;
        height: 36px !important;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Entrance animations */
.hero-text,
.stat-item,
.feature-card,
.step-item,
.testimonial-card,
.pricing-card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-text { animation-delay: 0.1s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scrolling */
html {
    scroll-padding-top: 72px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.step-item:nth-child(1) { transition-delay: 0.1s; }
.step-item:nth-child(2) { transition-delay: 0.3s; }
.step-item:nth-child(3) { transition-delay: 0.5s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }

/* ===========================
   STICKY HEADER
   =========================== */
.main-header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-header.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.hidden {
    transform: translateY(-100%);
}

/* ===========================
   LOADING BUTTON STATE
   =========================== */
button.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

button.loading i {
    color: var(--white);
}

/* ===========================
   TESTIMONIALS SLIDER (Mobile)
   =========================== */
@media (max-width: 992px) {
    .testimonials-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        scroll-snap-align: center;
        min-width: 90%;
    }
}

/* ===========================
   SMOOTH TRANSITIONS
   =========================== */
* {
    scroll-behavior: smooth;
}

/* ===========================
   LAZY LOADING IMAGES
   =========================== */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: var(--space-6);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    flex: 1;
}

.cookie-icon {
    font-size: 40px;
    color: var(--amber-600);
    flex-shrink: 0;
}

.cookie-info {
    flex: 1;
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.cookie-description {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-description a {
    color: var(--amber-600);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

.cookie-consent-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    white-space: nowrap;
}

.cookie-settings {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
}

.cookie-settings:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.cookie-accept-necessary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.cookie-accept-necessary:hover {
    background: var(--gray-200);
}

.cookie-accept-all {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--white);
}

.cookie-accept-all:hover {
    background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* ===========================
   COOKIE SETTINGS PANEL
   =========================== */
.cookie-settings-panel {
    width: 100%;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-6);
}

.cookie-settings-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 20px;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.cookie-settings-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.cookie-settings-body {
    display: grid;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.cookie-category {
    background: var(--gray-50);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.cookie-category-info {
    display: flex;
    gap: var(--space-3);
    flex: 1;
}

.cookie-category-info > i {
    font-size: 24px;
    color: var(--amber-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-category-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.cookie-category-info p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-300);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: var(--amber-600);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end;
}

.cookie-settings-save,
.cookie-settings-accept-all {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.cookie-settings-save {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
}

.cookie-settings-save:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.cookie-settings-accept-all {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--white);
}

.cookie-settings-accept-all:hover {
    background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* ===========================
   RESPONSIVE COOKIE BANNER
   =========================== */
@media (max-width: 992px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent-actions button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: var(--space-4);
    }

    .cookie-consent-text {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cookie-icon {
        font-size: 32px;
    }

    .cookie-title {
        font-size: 16px;
    }

    .cookie-description {
        font-size: 13px;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .cookie-settings-footer {
        flex-direction: column;
    }

    .cookie-settings-save,
    .cookie-settings-accept-all {
        width: 100%;
        justify-content: center;
    }
}