/* ============================================
   HOSTXPEED PREMIUM LANDING PAGE
   Modern, Conversion-Focused Design
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #008BDB;
    --primary-dark: #006ba3;
    --primary-light: #1a9de8;
    --secondary: #0f172a;
    --accent: #10b981;
    
    /* Neutrals */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradient Colors */
    --blue: #008BDB;
    --green: #10b981;
    --purple: #8b5cf6;
    --orange: #f59e0b;
    --red: #ef4444;
    --cyan: #06b6d4;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #008BDB 0%, #0056b3 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ============================================
   3. HEADER
   ============================================ */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 139, 219, 0.1);
    border: 1px solid rgba(0, 139, 219, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
}

.badge-icon {
    font-size: 16px;
}

.badge-pulse {
    position: absolute;
    right: 12px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.hero-feature i {
    color: var(--accent);
    font-size: 16px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-number {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.server-mockup {
    position: relative;
}

.terminal-window {
    background: var(--gray-900);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #1f2937;
    border-bottom: 1px solid #374151;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.terminal-buttons span:nth-child(1) { background: #ef4444; }
.terminal-buttons span:nth-child(2) { background: #f59e0b; }
.terminal-buttons span:nth-child(3) { background: #10b981; }

.terminal-title {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--gray-400);
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.terminal-line {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.prompt {
    color: var(--accent);
    font-weight: 600;
}

.command {
    color: #60a5fa;
}

.output {
    color: var(--gray-400);
}

.success {
    color: var(--accent);
    font-weight: 600;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.stats-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
}

.stat-icon.green { background: var(--gradient-success); }
.stat-icon.blue { background: var(--gradient-primary); }

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

.stat-value {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 14px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 139, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 219, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline-large {
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
}

.btn-outline-large:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================================
   6. SECTIONS
   ============================================ */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 139, 219, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   7. WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    background: var(--white);
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card-premium {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.feature-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    opacity: 0.1;
}

.feature-icon-bg.blue { background: var(--blue); }
.feature-icon-bg.green { background: var(--green); }
.feature-icon-bg.purple { background: var(--purple); }
.feature-icon-bg.orange { background: var(--orange); }
.feature-icon-bg.red { background: var(--red); }
.feature-icon-bg.cyan { background: var(--cyan); }

.feature-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-size: 28px;
}

.feature-icon-wrapper:has(.blue) .feature-icon { color: var(--blue); }
.feature-icon-wrapper:has(.green) .feature-icon { color: var(--green); }
.feature-icon-wrapper:has(.purple) .feature-icon { color: var(--purple); }
.feature-icon-wrapper:has(.orange) .feature-icon { color: var(--orange); }
.feature-icon-wrapper:has(.red) .feature-icon { color: var(--red); }
.feature-icon-wrapper:has(.cyan) .feature-icon { color: var(--cyan); }

.feature-card-premium h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-card-premium > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.feature-list i {
    color: var(--accent);
    font-size: 14px;
}

/* ============================================
   8. PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--gray-50);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.billing-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 15px;
}

.save-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gradient-success);
    color: var(--white);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    text-transform: uppercase;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-300);
    transition: 0.3s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient-primary);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.category-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 139, 219, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 28px;
}

.plan-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 139, 219, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.plan-name {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.price-wrapper {
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 20px;
    color: var(--gray-600);
    font-weight: 600;
}

.amount {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--gray-500);
}

.billing-info {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.savings {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: var(--gradient-success);
    color: var(--white);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-features {
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.feature-item.highlight {
    padding: 12px;
    background: var(--gray-50);
    border-radius: 10px;
    margin-bottom: 8px;
}

.feature-item i {
    color: var(--accent);
    margin-top: 2px;
    font-size: 16px;
}

.feature-item.highlight i {
    color: var(--primary);
    font-size: 18px;
}

.feature-details {
    flex: 1;
}

.feature-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 12px;
    color: var(--gray-500);
}

.features-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 16px 0;
}

.btn-pricing {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 139, 219, 0.3);
}

.btn-pricing-popular {
    background: var(--gradient-success);
}

.pricing-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.pricing-footer p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.pricing-footer a:not(.btn) {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   9. STATS SECTION
   ============================================ */
.stats-section-premium {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-premium {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-details {
    flex: 1;
}

.stat-number-premium {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number-premium::after {
    content: '+';
}

.stat-label-premium {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.95;
}

.stat-subtext {
    font-size: 13px;
    opacity: 0.75;
}

/* ============================================
   10. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section-premium {
    background: var(--white);
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card-premium {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gray-200);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    font-size: 15px;
}

.author-role {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 2px;
}

.author-company {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   11. CTA SECTION
   ============================================ */
.cta-section-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 139, 219, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content-premium h2 {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content-premium > p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.cta-feature i {
    color: var(--accent);
    font-size: 18px;
}

.cta-buttons-premium {
    display: flex;
    gap: 16px;
}

.btn-cta-primary {
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta-visual {
    position: relative;
}

.cta-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-stat i {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.cta-stat-value {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.cta-stat-label {
    font-size: 14px;
    opacity: 0.85;
}

/* ============================================
   12. FOOTER
   ============================================ */
.landing-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    max-width: 160px;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray-500);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   13. UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-products i {
    font-size: 48px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.no-products p {
    color: var(--gray-500);
    font-size: 16px;
}

/* ============================================
   14. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .features-grid-premium,
    .pricing-grid,
    .testimonials-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-visual {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--gray-700);
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .stats-overlay {
        position: static;
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid-premium,
    .pricing-grid,
    .testimonials-grid-premium,
    .stats-content {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        flex-direction: column;
    }
    
    .category-btn {
        width: 100%;
    }
    
    .cta-features-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-premium {
        flex-direction: column;
    }
    
    .cta-content-premium h2 {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .user-info-landing {
        display: none;
    }
    
    .user-btn-landing {
        padding: 8px;
    }
    
    .user-btn-landing i.fa-chevron-down {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .stat-number-premium {
        font-size: 36px;
    }
    
    .cta-content-premium h2 {
        font-size: 28px;
    }
}

/* ============================================
   15. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.hero-badge {
    animation: fadeIn 0.6s ease-out;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-badges {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-visual {
    animation: slideInRight 1s ease-out 0.3s both;
}

/* ============================================
   16. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}