/* ============================================
   ZAVON Marketing - Unique Stylesheet 2025
   Domain: zavon.ink
   Theme: German Marketing Excellence
   ============================================ */

/* ============================================
   Google Fonts - Unique Typography
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   Custom CSS Variables - Revolutionary Colors
   ============================================ */
:root {
    /* Primary Brand Colors - Emerald, Gold, Navy */
    --color-emerald: #047857;
    --color-emerald-light: #059669;
    --color-emerald-dark: #065f46;
    
    --color-gold: #D97706;
    --color-gold-light: #F59E0B;
    --color-gold-dark: #B45309;
    
    --color-navy: #1E3A8A;
    --color-navy-light: #3B82F6;
    --color-navy-dark: #1E40AF;
    
    /* Background Colors */
    --color-bg-dark: #0A0E1A;
    --color-bg-darker: #050810;
    --color-bg-card: #0F172A;
    --color-bg-card-hover: #1E293B;
    
    /* Text Colors */
    --color-text-primary: #F8FAFC;
    --color-text-secondary: #CBD5E1;
    --color-text-muted: #94A3B8;
    --color-text-dim: #64748B;
    
    /* Accent Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-gold) 50%, var(--color-navy) 100%);
    --gradient-hero: linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
    --gradient-card: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(10, 14, 26, 0.9));
    
    /* Typography */
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(4, 120, 87, 0.4);
    --shadow-gold: 0 0 40px rgba(217, 119, 6, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container */
    --container-max: 1320px;
    --container-padding: var(--space-6);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-secondary);
    background: var(--color-bg-dark);
    background-image: 
        radial-gradient(at 20% 30%, rgba(4, 120, 87, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(217, 119, 6, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(30, 58, 138, 0.1) 0px, transparent 50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-hexagon.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl)); font-weight: 800; }
h2 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); font-weight: 800; }
h3 { font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); }
h4 { font-size: var(--text-2xl); }

p {
    margin-bottom: var(--space-4);
}

a {
    color: var(--color-gold-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--color-gold);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.2), rgba(217, 119, 6, 0.2));
    color: var(--color-gold-light);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    border: 2px solid rgba(217, 119, 6, 0.4);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-gold);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-20);
}

.section-header p {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    margin-top: var(--space-5);
    line-height: 1.8;
}

/* ============================================
   Buttons - Revolutionary Design
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-base), height var(--transition-base);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    border: none;
    box-shadow: 0 8px 20px rgba(4, 120, 87, 0.5);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(4, 120, 87, 0.6);
    color: var(--color-text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-emerald);
    box-shadow: 0 0 20px rgba(4, 120, 87, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    background: rgba(217, 119, 6, 0.1);
    box-shadow: 0 0 30px rgba(217, 119, 6, 0.4);
    color: var(--color-text-primary);
}

.btn-lg {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-lg);
}

.btn-full {
    width: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

/* ============================================
   Header & Navigation - Unique Design
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(4, 120, 87, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-2xl);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    position: relative;
}

.logo:hover {
    color: var(--color-text-primary);
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(4, 120, 87, 0.5));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.nav-menu a {
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--color-gold-light);
}

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

.nav-cta {
    padding: var(--space-3) var(--space-6);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-2);
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section - Unique Layout
   ============================================ */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    padding: calc(90px + var(--space-20)) 0 var(--space-20);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 10s ease-in-out infinite reverse;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.25), rgba(217, 119, 6, 0.25));
    color: var(--color-gold-light);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 2px solid rgba(217, 119, 6, 0.5);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-gold);
    animation: pulse 3s ease-in-out infinite;
}

.hero-content h1 {
    margin-bottom: var(--space-8);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--text-2xl);
    color: var(--color-text-muted);
    margin-bottom: var(--space-10);
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-visual img,
.hero-visual svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--space-32) 0;
    background: var(--color-bg-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.service-card {
    padding: var(--space-12);
    background: var(--gradient-card);
    border: 2px solid rgba(4, 120, 87, 0.2);
    border-radius: var(--radius-3xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

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

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.3), rgba(217, 119, 6, 0.3));
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-6);
    border: 2px solid rgba(4, 120, 87, 0.5);
    box-shadow: var(--shadow-glow);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-gold-light);
    font-weight: 700;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: var(--space-4);
    color: var(--color-gold);
}

/* ============================================
   CTA Section - Unique Design
   ============================================ */
.cta-section {
    padding: var(--space-32) 0;
    background: linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-16);
    background: var(--gradient-card);
    border: 2px solid var(--color-emerald);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-glow);
}

.cta-content h2 {
    margin-bottom: var(--space-6);
}

.cta-content p {
    font-size: var(--text-2xl);
    color: var(--color-text-muted);
    margin-bottom: var(--space-10);
    line-height: 1.8;
}

/* ============================================
   Contact Section - Unique Form Design
   ============================================ */
.contact {
    padding: var(--space-32) 0;
    background: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-20);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--space-5);
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-10);
    font-size: var(--text-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    padding: var(--space-5);
    background: rgba(4, 120, 87, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(4, 120, 87, 0.2);
}

.contact-item svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold-light);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
    font-size: var(--text-lg);
}

.contact-item span,
.contact-item a {
    color: var(--color-text-muted);
    font-size: var(--text-base);
}

.contact-form-wrapper {
    padding: var(--space-12);
    background: var(--gradient-card);
    border: 2px solid var(--color-emerald);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.form-group label {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--space-4);
    background: rgba(10, 14, 26, 0.8);
    border: 2px solid rgba(4, 120, 87, 0.3);
    border-radius: var(--radius-xl);
    color: var(--color-text-primary);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2);
    background: rgba(10, 14, 26, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
}

.form-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--color-emerald);
    cursor: pointer;
}

.form-checkbox label {
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 1.6;
}

.form-checkbox label a {
    color: var(--color-gold-light);
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-20) 0 var(--space-10);
    background: var(--color-bg-darker);
    border-top: 2px solid rgba(4, 120, 87, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
}

.footer-brand .logo {
    margin-bottom: var(--space-5);
}

.footer-brand p {
    color: var(--color-text-dim);
    font-size: var(--text-base);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-5);
    color: var(--color-text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--color-text-dim);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold-light);
    padding-left: var(--space-2);
}

.footer-bottom {
    padding-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-base);
    color: var(--color-text-dim);
    margin-bottom: 0;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: var(--space-12);
    background: var(--gradient-card);
    border: 2px solid rgba(4, 120, 87, 0.2);
    border-radius: var(--radius-3xl);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(145deg, rgba(217, 119, 6, 0.15), rgba(10, 14, 26, 0.9));
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-6);
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-8);
    border-bottom: 2px solid rgba(4, 120, 87, 0.2);
    margin-bottom: var(--space-8);
}

.pricing-header h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.pricing-header .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.pricing-header .price-currency {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    font-weight: 600;
}

.pricing-header .price-amount {
    font-size: var(--text-6xl);
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-header p {
    font-size: var(--text-base);
    color: var(--color-text-dim);
    margin-bottom: 0;
}

.pricing-features {
    margin-bottom: var(--space-10);
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

.pricing-features li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-12);
    color: var(--color-text-dim);
    font-size: var(--text-lg);
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
    padding: calc(90px + var(--space-20)) 0 var(--space-20);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: var(--space-8);
}

.legal-intro {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 2px solid rgba(4, 120, 87, 0.3);
}

.legal-section {
    margin-bottom: var(--space-12);
}

.legal-section h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-5);
    color: var(--color-gold-light);
}

.legal-section h3 {
    font-size: var(--text-xl);
    margin: var(--space-8) 0 var(--space-4);
}

.legal-section p {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    line-height: 1.8;
}

.legal-section ul {
    list-style: disc;
    margin-left: var(--space-8);
    margin-bottom: var(--space-5);
}

.legal-section ul li {
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
    font-size: var(--text-lg);
}

/* ============================================
   Thanks Page
   ============================================ */
.thanks-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(90px + var(--space-20)) 0 var(--space-20);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-10);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
    color: var(--color-text-primary);
}

.thanks-content h1 {
    margin-bottom: var(--space-5);
}

.thanks-subtitle {
    font-size: var(--text-2xl);
    color: var(--color-text-muted);
    margin-bottom: var(--space-12);
}

/* ============================================
   Animations
   ============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

    .hero-visual {
        height: 400px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-4);
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding: calc(90px + var(--space-12)) 0 var(--space-12);
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
        align-items: center;
    }

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

/* ============================================
   Mobile Menu
   ============================================ */
.nav-menu-open {
    display: flex !important;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-darker);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-12) var(--space-6);
    gap: var(--space-8);
    z-index: 999;
}

.nav-menu-open a {
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Active Navigation Link Styles */
.nav-menu a.active {
    color: var(--color-gold-light);
    font-weight: 700;
}

.nav-menu a.active::after {
    width: 100%;
}
