/* ===================================
   SpineCool Landing Page Styles
   Arabic RTL Version
   Premium Design System
=================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Medical Teal/Green */
    --primary: #0d6e5b;
    --primary-light: #14a085;
    --primary-dark: #084c40;
    --primary-glow: rgba(13, 110, 91, 0.3);

    /* Accent Colors */
    --accent: #00d4aa;
    --accent-light: #5dffd4;
    --accent-dark: #00a080;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8fafa;
    --gray-100: #f0f4f4;
    --gray-200: #e2e8e8;
    --gray-300: #c9d4d4;
    --gray-400: #9aadad;
    --gray-500: #6b8080;
    --gray-600: #4a5d5d;
    --gray-700: #2d3b3b;
    --gray-800: #1a2424;
    --gray-900: #0d1414;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --pain-red: #ff6b6b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
    --gradient-light: linear-gradient(135deg, var(--off-white) 0%, var(--gray-100) 100%);
    --gradient-hero: linear-gradient(135deg, #0a3d34 0%, #0d6e5b 50%, #14a085 100%);
    --gradient-text: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);

    /* Typography - Arabic Font */
    --font-heading: 'Tajawal', 'Arial', sans-serif;
    --font-body: 'Tajawal', 'Arial', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px var(--primary-glow);

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

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: #f5f5f5;
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

/* Main content wrapper - centered mobile width on desktop */
#home,
.person-section,
.video-section,
.order-section,
.faq-section,
footer {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===================================
   Hot Deal Banner - Ultra Minimal Mobile
=================================== */
.hot-deal-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 25%, #ffd93d 50%, #ff8e53 75%, #ff6b6b 100%);
    background-size: 400% 400%;
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: megaGradient 8s ease infinite;
    box-shadow: 0 5px 30px rgba(255, 107, 107, 0.6),
        inset 0 0 100px rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Mega Gradient Animation */
@keyframes megaGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animated Background Particles */
.hot-deal-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

/* Lightning Shine Effect */
.hot-deal-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: megaShine 4s infinite;
}

@keyframes megaShine {
    0% {
        left: -100%;
    }

    20% {
        left: -100%;
    }

    30% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.deal-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

/* Compact Mobile Title */
.deal-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 900;
    color: white;
    margin: 0;
    padding: 0;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 107, 107, 0.6),
        0 3px 10px rgba(0, 0, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.3),
        2px 2px 0 rgba(255, 107, 107, 0.5),
        -2px -2px 0 rgba(255, 215, 0, 0.5);
    animation:
        titleMega 3s ease-in-out infinite,
        neonPulse 2s ease-in-out infinite,
        float3D 4s ease-in-out infinite;
    transform-style: preserve-3d;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
}

/* 3D Float Animation */
@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) scale(1);
    }

    25% {
        transform: translateY(-10px) rotateX(5deg) scale(1.02);
    }

    50% {
        transform: translateY(0) rotateX(0deg) scale(1.05);
    }

    75% {
        transform: translateY(-10px) rotateX(-5deg) scale(1.02);
    }
}

/* Mega Title Animation */
@keyframes titleMega {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.05) translateY(-8px);
    }
}

/* Neon Pulse */
@keyframes neonPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 107, 107, 0.6),
            0 5px 15px rgba(0, 0, 0, 0.5),
            0 10px 30px rgba(0, 0, 0, 0.3),
            2px 2px 0 rgba(255, 107, 107, 0.5),
            -2px -2px 0 rgba(255, 215, 0, 0.5);
    }

    50% {
        text-shadow:
            0 0 20px rgba(255, 215, 0, 1),
            0 0 40px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 107, 107, 0.8),
            0 5px 20px rgba(0, 0, 0, 0.6),
            0 10px 40px rgba(0, 0, 0, 0.4),
            3px 3px 0 rgba(255, 107, 107, 0.7),
            -3px -3px 0 rgba(255, 215, 0, 0.7);
    }
}

/* Clean mobile design - no decorative elements */

/* Hide all other elements */
.deal-flash,
.deal-subtitle,
.deal-timer,
.deal-features,
.deal-cta-btn,
.deal-stock {
    display: none;
}

/* Hide Navigation */
.navbar {
    display: none !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-base);
}

.navbar.scrolled .logo-text {
    color: var(--gray-800);
}

.logo-text .highlight {
    color: var(--accent);
}

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

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: var(--space-sm) 0;
    font-size: 1.05rem;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%) !important;
    background-size: 200% 200% !important;
    color: var(--gray-900) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
    animation: navCtaGradient 3s ease infinite, navCtaPulse 2s ease-in-out infinite;
}

@keyframes navCtaGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes navCtaPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 212, 170, 0.6), 0 0 15px rgba(0, 212, 170, 0.3);
    }
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: navCtaShine 3s infinite;
}

@keyframes navCtaShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%) !important;
    background-size: 200% 200% !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.6), 0 0 20px rgba(0, 212, 170, 0.4);
    animation: navCtaGradient 1.5s ease infinite, navCtaPulse 1s ease-in-out infinite;
}

.nav-cta:active {
    transform: translateY(-1px) scale(1.02);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.navbar.scrolled .hamburger span {
    background: var(--gray-800);
}

/* ===================================
   Hero Section
=================================== */
.hero {
    position: relative;
    width: 100%;
    padding-top: 70px;
}

.hero-content {
    width: 100%;
    max-width: 100%;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

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

/* ===================================
   Premium Button System with Advanced Animations
=================================== */

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

/* Shimmer Effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

/* Primary Button with Gradient Animation */
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4), 0 0 0 0 rgba(0, 212, 170, 0.5);
    animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4), 0 0 0 0 rgba(0, 212, 170, 0.5);
    }

    50% {
        box-shadow: 0 4px 25px rgba(0, 212, 170, 0.6), 0 0 20px 5px rgba(0, 212, 170, 0.3);
    }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 212, 170, 0.6), 0 0 30px 10px rgba(0, 212, 170, 0.4);
    animation: gradientShift 1.5s ease infinite, pulseGlow 1s ease-in-out infinite;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

/* Button Arrow with Bounce */
.btn-arrow {
    width: 20px;
    height: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn:hover .btn-arrow {
    transform: translateX(-8px);
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(-8px);
    }

    50% {
        transform: translateX(-12px);
    }
}

/* Secondary Button with Glass Effect */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-icon {
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ===================================
   Person Sections - Clean Vertical Layout
=================================== */
.person-section {
    width: 100%;
    padding: 0;
}

.person-section.bg-white {
    background: #ffffff;
}

.person-section.bg-light {
    background: #f8f9fa;
}

.person-section .container {
    max-width: 600px;
    padding: 0;
}

.person-section.bg-white .container {
    background: #ffffff;
}

.person-section.bg-light .container {
    background: #f8f9fa;
}

.person-content {
    width: 100%;
}

.person-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Section */
.video-section {
    padding: var(--space-2xl) 0;
    background: #f8f9fa;
}

.video-wrapper {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Section CTA Buttons - Premium Order Buttons
=================================== */
.section-cta {
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    perspective: 1000px;
}

.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    width: 100%;
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 50%, #8bc34a 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4),
        0 0 0 0 rgba(139, 195, 74, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: pulseBtn 2.5s ease-in-out infinite, gradientSlide 4s ease infinite;
}

/* Gradient Slide Animation */
@keyframes gradientSlide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Pulse with Glow */
@keyframes pulseBtn {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4),
            0 0 0 0 rgba(139, 195, 74, 0.4),
            inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 6px 25px rgba(139, 195, 74, 0.6),
            0 0 30px 5px rgba(139, 195, 74, 0.3),
            inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    }
}

/* Sparkle Effect */
.btn-order::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

.btn-order:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: sparkle 1.5s ease infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1) rotate(180deg);
    }
}

/* Shine Effect */
.btn-order::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

/* 3D Hover Effect with Magnetic Pull */
.btn-order:hover {
    transform: translateY(-8px) scale(1.05) rotateX(5deg);
    box-shadow: 0 12px 40px rgba(139, 195, 74, 0.7),
        0 0 50px 10px rgba(139, 195, 74, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #9ccc65 0%, #8bc34a 50%, #7cb342 100%);
    background-size: 200% 200%;
    animation: gradientSlide 2s ease infinite, pulseBtn 1.2s ease-in-out infinite, buttonBounce 0.8s ease infinite;
}

/* Active/Click Effect */
.btn-order:active {
    transform: translateY(-4px) scale(1.02) rotateX(2deg);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.5),
        0 0 25px 5px rgba(139, 195, 74, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

@keyframes buttonBounce {

    0%,
    100% {
        transform: translateY(-8px) scale(1.05) rotateX(5deg);
    }

    50% {
        transform: translateY(-10px) scale(1.06) rotateX(5deg);
    }
}

/* ===================================
   Animations
=================================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Section Utilities
=================================== */
.section-header {
    margin-bottom: var(--space-3xl);
    text-align: center;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(13, 110, 91, 0.1);
    color: var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.section-header h2 .highlight {
    color: var(--primary);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.15rem;
}

/* ===================================
   Testimonials Section
=================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--gradient-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-100);
}

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

.testimonial-card.featured {
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
}

.testimonial-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

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

.testimonial-card.featured .author-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Order Section
=================================== */
.order-section {
    padding: var(--space-3xl) var(--space-lg);
    background: #f0f4f0;
}

.order-section .container {
    padding: 0 var(--space-lg);
}

/* Order Form Styling */
.order-step {
    background: var(--white);
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3b2d;
    margin-bottom: var(--space-xl);
    text-align: center;
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
}

.order-form {
    width: 100%;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    padding-left: 50px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #8bc34a;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.input-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #8bc34a;
    pointer-events: none;
}

.input-icon svg {
    width: 100%;
    height: 100%;
}

/* Package Radio Buttons */
.packages-radio {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.package-option {
    position: relative;
}

.package-option input[type="radio"] {
    display: none;
}

.package-option label {
    display: block;
    padding: var(--space-lg);
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-option input[type="radio"]:checked+label {
    border-color: #8bc34a;
    background: #f1f8e9;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.2);
    transform: scale(1.02);
}

.package-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.package-badge.best {
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    color: white;
}

.package-badge.starter {
    background: #fff9c4;
    color: #f57f17;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3b2d;
    margin: var(--space-sm) 0;
}

.package-old-price {
    font-size: 1rem;
    color: #9e9e9e;
    text-decoration: line-through;
    margin-bottom: var(--space-sm);
}

.package-description {
    font-size: 0.95rem;
    color: #5f5f5f;
    line-height: 1.5;
}

.radio-indicator {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    width: 24px;
    height: 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.package-option input[type="radio"]:checked+label .radio-indicator {
    border-color: #8bc34a;
    background: #8bc34a;
}

.package-option input[type="radio"]:checked+label .radio-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

/* Order Total */
.order-total {
    background: #e8f5e9;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    border: 2px solid #8bc34a;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3b2d;
}

.total-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8bc34a;
}

/* ===================================
   Premium Submit Button - Hero CTA
=================================== */
.btn-submit-order {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 50%, #689f38 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.5),
        0 0 0 0 rgba(139, 195, 74, 0.5),
        inset 0 -4px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: pulseSubmit 2.5s ease-in-out infinite,
        gradientWave 4s ease infinite,
        neonGlow 3s ease-in-out infinite;
}

/* Neon Glow Animation */
@keyframes neonGlow {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(139, 195, 74, 0.5));
    }

    50% {
        filter: brightness(1.1) drop-shadow(0 0 20px rgba(139, 195, 74, 0.8));
    }
}

/* Gradient Wave */
@keyframes gradientWave {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Pulse with 3D Effect */
@keyframes pulseSubmit {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(139, 195, 74, 0.5),
            0 0 0 0 rgba(139, 195, 74, 0.5),
            inset 0 -4px 0 rgba(0, 0, 0, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 8px 35px rgba(139, 195, 74, 0.7),
            0 0 40px 10px rgba(139, 195, 74, 0.4),
            inset 0 -4px 0 rgba(0, 0, 0, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }
}

/* Particle Burst Effect */
.btn-submit-order::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s ease;
}

.btn-submit-order:hover::before {
    width: 400px;
    height: 400px;
    opacity: 0.3;
    animation: particleBurst 1s ease infinite;
}

@keyframes particleBurst {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Lightning Shine Effect */
.btn-submit-order::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: skewX(-30deg);
    animation: lightning 4s infinite;
}

@keyframes lightning {
    0% {
        left: -100%;
    }

    20% {
        left: -100%;
    }

    25% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* 3D Hover with Magnetic Effect */
.btn-submit-order:hover {
    transform: translateY(-8px) scale(1.05) perspective(1000px) rotateX(8deg);
    box-shadow: 0 15px 50px rgba(139, 195, 74, 0.8),
        0 0 60px 15px rgba(139, 195, 74, 0.5),
        inset 0 -4px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #9ccc65 0%, #8bc34a 50%, #7cb342 100%);
    background-size: 200% 200%;
    animation: gradientWave 2s ease infinite,
        neonGlow 1.5s ease-in-out infinite,
        buttonShake 0.5s ease infinite;
}

/* Subtle Shake on Hover */
@keyframes buttonShake {

    0%,
    100% {
        transform: translateY(-8px) scale(1.05) perspective(1000px) rotateX(8deg) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) scale(1.05) perspective(1000px) rotateX(8deg) rotate(0.5deg);
    }

    75% {
        transform: translateY(-8px) scale(1.05) perspective(1000px) rotateX(8deg) rotate(-0.5deg);
    }
}

/* Active/Click State */
.btn-submit-order:active {
    transform: translateY(-4px) scale(1.02) perspective(1000px) rotateX(4deg);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.6),
        0 0 30px 8px rgba(139, 195, 74, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Text Shadow for Depth */
.btn-submit-order {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-submit-order:hover {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.5);
}

/* Urgency Banner */
.urgency-banner {
    background: #fff9c4;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border: 2px solid #fbc02d;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

.urgency-icon {
    font-size: 1.5rem;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f57f17;
}

/* Trust Section New */
.trust-section-new {
    background: white;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-xl);
    margin-top: var(--space-xl);
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3b2d;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: #f9f9f9;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: #f1f8e9;
    transform: translateX(-5px);
}

.trust-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-content {
    flex: 1;
}

.trust-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3b2d;
    margin-bottom: var(--space-xs);
}

.trust-subtext {
    font-size: 0.9rem;
    color: #757575;
    line-height: 1.5;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.order-content {
    order: 1;
}

.order-image {
    order: 2;
}

.order-content .section-tag {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.order-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
    color: var(--gray-800);
}

.order-description {
    color: var(--gray-500);
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    line-height: 1.9;
}

.price-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.price-original {
    font-size: 1.5rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-savings {
    background: var(--error);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
}

.order-benefits {
    margin-bottom: var(--space-xl);
}

.order-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 1.1rem;
    color: var(--gray-600);
}

.order-benefits .check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.15rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--gray-500);
}

.trust-badge span:first-child {
    font-size: 1.25rem;
}

.product-bundle {
    position: relative;
}

.product-bundle img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.bundle-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--error);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   Packages Grid - New Design
=================================== */
.stock-warning {
    font-size: 1.25rem;
    color: var(--error);
    font-weight: 700;
    margin-top: var(--space-md);
    animation: pulse 2s ease-in-out infinite;
}

.packages-grid {
    display: none;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: visible;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(13, 110, 91, 0.03) 0%, var(--white) 100%);
    transform: scale(1.05);
    z-index: 2;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.best-value {
    border-color: #fbbf24;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, var(--white) 100%);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.package-badge.gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--gray-900);
}

.package-header {
    margin-bottom: var(--space-lg);
    padding-top: var(--space-sm);
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: var(--space-xs);
}

.package-subtitle {
    font-size: 0.95rem;
    color: var(--gray-400);
}

.package-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.package-quantity {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.package-pricing {
    margin-bottom: var(--space-lg);
}

.package-original-price {
    font-size: 1.1rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-bottom: var(--space-xs);
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.package-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.package-savings {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: var(--space-sm);
}

.package-features {
    text-align: right;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
}

.package-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 1rem;
    color: var(--gray-600);
}

.package-features .check {
    color: var(--success);
    font-weight: 700;
}

.package-btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
}

.trust-section {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-100);
}

.trust-section .trust-badges {
    justify-content: center;
    margin-top: 0;
}

/* Packages Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .package-card.featured {
        transform: none;
        order: -1;
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        gap: var(--space-lg);
    }

    .package-card {
        padding: var(--space-lg);
    }

    .package-price {
        font-size: 2rem;
    }
}

/* ===================================
   FAQ Section
=================================== */
.faq-section {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--gradient-light);
}

.faq-section .container {
    padding: 0 var(--space-lg);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    font-family: var(--font-heading);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--gray-500);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ===================================
   Footer
=================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-4xl) var(--space-lg) var(--space-lg);
}

.footer .container {
    padding: 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

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

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand>p {
    color: var(--gray-400);
    line-height: 1.9;
    max-width: 300px;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--gray-900);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

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

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
    font-family: var(--font-heading);
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: var(--gray-400);
    transition: var(--transition-base);
    font-size: 1.05rem;
}

.footer-column a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ===================================
   Responsive Design
=================================== */
/* Mobile-width centered layout for all screens */
@media (min-width: 601px) {
    body {
        background: #e0e0e0;
    }

    #home,
    .person-section,
    .video-section,
    .order-section,
    .faq-section,
    footer {
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 992px) {

    .solution-wrapper,
    .order-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .solution-image,
    .solution-content,
    .order-content,
    .order-image {
        order: unset;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

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

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

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

    .solution-wrapper,
    .order-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .solution-image,
    .solution-content,
    .order-content,
    .order-image {
        order: unset;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        transition: var(--transition-base);
        box-shadow: var(--shadow-2xl);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: var(--gray-800) !important;
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        height: 40px;
        width: 40px;
    }


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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

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

    .floating-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .price-box {
        flex-wrap: wrap;
    }
}