/* CSS Custom Properties - Hive CI Colors */
:root {
    /* Lightning Yellow */
    --yellow-50: #fffbeb;
    --yellow-100: #fdf2c8;
    --yellow-200: #fae38d;
    --yellow-300: #f8d051;
    --yellow-400: #f6bb28;
    --yellow-500: #f09b10;
    --yellow-600: #d4760b;
    --yellow-700: #b0530d;
    --yellow-800: #8f4011;
    --yellow-900: #763511;
    --yellow-950: #431a05;
    
    /* Pelorous */
    --pelorous-50: #ecfffe;
    --pelorous-100: #d0fdfc;
    --pelorous-200: #a7faf9;
    --pelorous-300: #6bf5f5;
    --pelorous-400: #27e6e9;
    --pelorous-500: #0bc9cf;
    --pelorous-600: #0daebb;
    --pelorous-700: #11818d;
    --pelorous-800: #176873;
    --pelorous-900: #185661;
    --pelorous-950: #093943;
    
    /* Mirage */
    --mirage-50: #eff7ff;
    --mirage-100: #dbedfe;
    --mirage-200: #bfe0fe;
    --mirage-300: #93cdfd;
    --mirage-400: #61b1f9;
    --mirage-500: #3c90f5;
    --mirage-600: #2672ea;
    --mirage-700: #1e5cd7;
    --mirage-800: #1f4bae;
    --mirage-900: #1e428a;
    --mirage-950: #0a1224;
    
    /* Semantic Colors - Dark Theme */
    --primary: var(--yellow-500);
    --primary-dark: var(--yellow-600);
    --secondary: var(--pelorous-400);
    --accent: var(--yellow-400);
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e0;
    --background: var(--mirage-950);
    --surface: var(--mirage-900);
    --surface-light: var(--mirage-800);
    --border: var(--mirage-700);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    --shadow-glow: 0 0 20px rgb(240 155 16 / 0.15);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

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

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #0a1224;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Header */
.header {
    background: #0a1224;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--spacing-4) 0;
}

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

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.savings-counter {
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    color: white;
    padding: var(--spacing-3) var(--spacing-5);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    box-shadow: 0 4px 20px rgba(240, 155, 16, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.counter-text {
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: 0.9;
}

.counter-amount {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    min-width: 80px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: #0a1224 url('../images/Hive_Shooting_q1_2025_cs-3.webp') center right/cover;
    background-blend-mode: overlay;
    padding: var(--spacing-12) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 18, 36, 0.3) 0%, rgba(10, 18, 36, 0.2) 50%, rgba(10, 18, 36, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    align-items: center;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.025em;
    color: #ffffff;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.highlight {
    color: #f6bb28;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(240, 155, 16, 0.4);
    position: relative;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(240, 155, 16, 0.3);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4);
    line-height: 1.5;
    font-weight: 400;
    position: relative;
    z-index: 3;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-studios {
    font-size: var(--font-size-lg);
    color: #f6bb28;
    margin-bottom: var(--spacing-8);
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-8);
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-2xl);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-10);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.form-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-base);
    font-weight: 400;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4);
}

input, select {
    width: 100%;
    padding: var(--spacing-4) var(--spacing-5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 155, 16, 0.2), var(--shadow-glow);
    background: rgba(255, 255, 255, 0.08);
}

input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

select {
    cursor: pointer;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    color: var(--mirage-950);
    border: none;
    padding: var(--spacing-4) var(--spacing-8);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    min-height: 56px;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(240, 155, 16, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(240, 155, 16, 0.4);
    background: linear-gradient(135deg, var(--yellow-300), var(--yellow-400));
}

.cta-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}


/* Form Validation States */
input.error, select.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

input.success, select.success {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.error-message {
    color: #ef4444;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-1);
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading States */
.cta-button.loading {
    pointer-events: none;
}

.cta-button.loading .btn-text::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: var(--spacing-2);
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-container label {
    color: var(--text-secondary);
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary-light);
}

.form-disclaimer {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--spacing-4);
    font-weight: 400;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-20) 0;
    background: #0a1224;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(240, 155, 16, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-12);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-16);
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 155, 16, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(240, 155, 16, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.process-card.featured {
    background: linear-gradient(135deg, rgba(240, 155, 16, 0.1), rgba(240, 155, 16, 0.05));
    border: 2px solid rgba(240, 155, 16, 0.3);
    transform: scale(1.05);
}

.process-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(240, 155, 16, 0.3);
}

.process-number {
    position: relative;
    margin: 0 auto var(--spacing-4);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--mirage-950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    box-shadow: 0 4px 20px rgba(240, 155, 16, 0.4);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(240, 155, 16, 0.1);
    border: 2px solid rgba(240, 155, 16, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-6) auto var(--spacing-4);
    color: var(--primary);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: rgba(240, 155, 16, 0.15);
    border-color: rgba(240, 155, 16, 0.4);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-4);
}

.highlight-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--mirage-950);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Tariff Info */
.tariff-info {
    display: flex;
    justify-content: center;
}

.tariff-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    position: relative;
}

.tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 155, 16, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.tariff-header {
    background: linear-gradient(135deg, rgba(240, 155, 16, 0.1), rgba(240, 155, 16, 0.05));
    padding: var(--spacing-6);
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    border-bottom: 1px solid rgba(240, 155, 16, 0.2);
}

.tariff-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--mirage-950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(240, 155, 16, 0.3);
    flex-shrink: 0;
}

.tariff-header h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    margin-bottom: var(--spacing-2);
}

.tariff-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-2);
}

.price-amount {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.deal-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3) var(--spacing-4);
    margin-bottom: var(--spacing-6);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-sm);
    color: #10b981;
    font-weight: 600;
    text-align: center;
}

.highlight-icon {
    font-size: var(--font-size-lg);
}

.additional-costs {
    margin-top: var(--spacing-6);
    padding-top: var(--spacing-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-costs h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-3);
}

.cost-item {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--spacing-2);
}

.tariff-details {
    padding: var(--spacing-8);
}

.tariff-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.feature-icon {
    color: #10b981;
    font-weight: bold;
    font-size: var(--font-size-lg);
}

.tariff-pricing {
    margin-top: var(--spacing-8);
    padding-top: var(--spacing-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-6);
    flex-wrap: wrap;
}

.price-period {
    text-align: center;
    padding: var(--spacing-4);
    border-radius: var(--radius-lg);
    min-width: 180px;
}

.price-period.free {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.price-period.paid {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.period-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: var(--spacing-1);
}

.period-price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-1);
}

.price-period.free .period-price {
    color: #10b981;
    font-size: var(--font-size-3xl);
}

.period-subtitle {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 400;
}

.price-arrow {
    font-size: var(--font-size-2xl);
    color: var(--primary);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-20) 0;
    background: #0a1224 url('../images/Hive_Shooting_q1_2025_cs-2.jpg') center center/cover;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 18, 36, 0.85) 0%, rgba(10, 18, 36, 0.7) 50%, rgba(10, 18, 36, 0.85) 100%);
    pointer-events: none;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-16);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-4);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    border-radius: var(--radius-sm);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 155, 16, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(240, 155, 16, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-4);
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.9;
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.6;
}

/* Comparison Table */
.comparison {
    padding: var(--spacing-20) 0;
    background: #0a1224;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #0a1224;
    color: var(--text-primary);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: var(--spacing-4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

.comparison-cell.feature {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
}

.comparison-cell.hive-column {
    background: rgba(240, 155, 16, 0.1);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    color: var(--text-primary);
}

.table-logo {
    height: 20px;
    margin-right: var(--spacing-2);
}

.check {
    color: #10b981;
    font-size: var(--font-size-xl);
}

.cross {
    color: #ef4444;
    font-size: var(--font-size-xl);
}

.partial {
    color: #f59e0b;
    font-size: var(--font-size-xl);
}

/* Social Proof */
.social-proof {
    padding: var(--spacing-16) 0;
    background: #0a1224 url('../images/Hive_Shooting_q1_2025_cs-4.webp') center center/cover;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 18, 36, 0.88) 0%, rgba(10, 18, 36, 0.75) 50%, rgba(10, 18, 36, 0.88) 100%);
    pointer-events: none;
}

.social-proof .container {
    position: relative;
    z-index: 2;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
}

.trust-card {
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(240, 155, 16, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.trust-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
    color: var(--mirage-950);
    box-shadow: 0 8px 32px rgba(240, 155, 16, 0.3);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(240, 155, 16, 0.4);
}

.trust-icon-modern svg {
    filter: none;
}

.trust-icon {
    font-size: var(--font-size-3xl);
    color: var(--primary);
    margin-bottom: var(--spacing-3);
}

.trust-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover .trust-image {
    transform: scale(1.02);
}

.trust-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
    line-height: 1.2;
}

.trust-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-20) 0;
    background: #0a1224 url('../images/Hive_Shooting_q1_2025_cs-2.jpg') center center/cover;
    background-blend-mode: overlay;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 18, 36, 0.9) 0%, rgba(10, 18, 36, 0.8) 50%, rgba(10, 18, 36, 0.9) 100%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-8);
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--mirage-950);
    color: white;
    padding: var(--spacing-12) 0 var(--spacing-6);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

.footer-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-3);
    color: var(--primary);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section a {
    color: var(--pelorous-300);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--mirage-800);
    padding-top: var(--spacing-6);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-6);
}

.footer-links a {
    color: var(--pelorous-300);
    text-decoration: none;
    font-size: var(--font-size-sm);
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design - Mobile First */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 400px;
        gap: var(--spacing-12);
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-6);
    }
    
    .price-timeline {
        flex-wrap: nowrap;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-6);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-6);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .comparison-table {
        font-size: var(--font-size-lg);
    }
}

@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Sticky Form for Mobile */
@media (max-width: 767px) {
    .form-container {
        position: sticky;
        top: 80px;
        z-index: 50;
        margin-top: var(--spacing-8);
    }
    
    .hero-content {
        gap: var(--spacing-6);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: var(--font-size-sm);
    }
    
    .comparison-cell {
        padding: var(--spacing-3);
    }
}

/* Prevent layout shifts */
img {
    height: auto;
    max-width: 100%;
}

.logo {
    width: auto;
    height: 50px;
    display: block;
}

/* Safari Mobile Fixes */
@supports not (backdrop-filter: blur(10px)) {
    .form-container,
    .tariff-card,
    .benefit-card,
    .trust-card,
    .next-steps,
    .badge {
        background: rgba(10, 18, 36, 0.85);
    }
    
    input, select {
        background: rgba(10, 18, 36, 0.7);
    }
}

/* iOS Safari specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    .hero {
        background-attachment: scroll; /* Fixed backgrounds cause crashes on iOS */
    }
    
    .benefits, .social-proof, .final-cta {
        background-attachment: scroll;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Success Page Styles */
.success-hero {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #0A1224 0%, #1e428a 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.success-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(240, 155, 16, 0.1) 0%, transparent 70%);