/* ==================== MODERN TRENDY UI 2024 ==================== */

/* Imports & Reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern Variables */
:root {
    /* Trendy Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-cool: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(28, 100%, 74%, 1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340, 100%, 76%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(22, 100%, 77%, 1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(242, 100%, 70%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 0%, hsla(343, 100%, 76%, 1) 0px, transparent 50%);

    /* Modern Colors */
    --color-primary: #6366f1;
    --color-primary-rgb: 99, 102, 241;
    --color-secondary: #ec4899;
    --color-accent: #14b8a6;

    /* Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --bg-overlay: rgba(255, 255, 255, 0.95);

    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-tertiary: #9ca3af;

    --border-color: rgba(0, 0, 0, 0.06);
    --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-glow: 0 0 50px rgba(var(--color-primary-rgb), 0.3);

    /* Neumorphism Shadows */
    --shadow-neu-sm: 6px 6px 12px #d1d5db, -6px -6px 12px #ffffff;
    --shadow-neu-md: 9px 9px 18px #d1d5db, -9px -9px 18px #ffffff;
    --shadow-neu-inset: inset 4px 4px 8px #d1d5db, inset -4px -4px 8px #ffffff;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Mesh Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.4;
    z-index: -1;
    animation: meshAnimation 20s ease infinite;
}

@keyframes meshAnimation {

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

    33% {
        transform: rotate(120deg) scale(1.1);
    }

    66% {
        transform: rotate(240deg) scale(0.95);
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Navigation with Glassmorphism */
.navbar {
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

/* Force navbar content to be dark since navbar background is white */
.navbar .nav-menu a,
.navbar .hamburger,
.navbar .nav-brand {
    color: #111827 !important;
}

.navbar .hamburger {
    display: none;
    /* Reset display, media query handles visibility */
}

@media (max-width: 768px) {
    .navbar .hamburger {
        display: block;
    }
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    position: relative;
}

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

.nav-logo {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo {
    transform: scale(1.05);
}

.nav-brand i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    font-weight: 600;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Customer Login Link Styling */
.customer-login-link {
    position: relative;
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none !important;
    /* Hidden globally */
    /* display: inline-flex; */
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.customer-login-link::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.6s;
}

.customer-login-link:hover::before {
    left: 100%;
}

.customer-login-link::after {
    display: none;
    /* Remove the underline animation for this link */
}

.customer-login-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
    color: white !important;
    background: var(--gradient-secondary);
}

.customer-login-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.customer-login-link:hover i {
    transform: scale(1.1);
}

/* Mobile Login Button */
.mobile-login-btn {
    display: none !important;
    /* Hidden globally */
    position: fixed;
    top: 15px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-decoration: none;
    font-size: 1.1rem;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-login-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: white;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #000;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #f3f4f6;
    /* Explicit light color */
    color: var(--color-primary);
    transform: translateX(4px);
}

.dropdown-item i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
    color: var(--color-primary);
}

/* Mobile Dropdown Overrides */
@media (max-width: 768px) {
    .dropdown {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none !important;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .mobile-login-btn {
        top: 10px;
    }

    #themeToggle {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 2001;
        /* Higher than menu */
    }

    /* Fix logo position on mobile */
    .navbar .container {
        justify-content: flex-start;
        gap: 20px;
    }

    .mobile-login-btn {
        display: flex;
        right: 60px;
        /* Adjust to sit left of hamburger */
        z-index: 1001;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        /* Start off-screen left */
        right: auto;
        /* Reset right */
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        /* Align items to left */
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        /* Animate left property */
        z-index: 2000;
        gap: 1.5rem;
        padding: 6rem 2rem 2rem 2rem;
        border-right: 1px solid var(--border-color);
        /* Border on right side now */
        border-left: none;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
        /* Shadow to the right */
    }

    .nav-menu.active {
        left: 0;
        /* Slide in to left 0 */
        right: auto;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        padding: 0;
        width: 100%;
        text-align: left;
        /* Right align text */
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger Animation */
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-menu.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav-menu a {
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
        /* Dark text */
        display: block;
    }

    .nav-menu .customer-login-link {
        display: inline-flex;
        background: var(--gradient-primary);
        color: white;
    }
}

/* Modern Theme Toggle */
.theme-toggle {
    display: none !important;
    /* Hidden globally */
    width: 56px;
    height: 28px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: var(--shadow-neu-sm);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

[data-theme="dark"] .theme-toggle {
    background: linear-gradient(145deg, #1a1a3a, #0a0a14);
}

.theme-toggle-slider {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .theme-toggle-slider {
    transform: translateX(28px);
}

/* Hero Section with Integrated Model Viewer */
.hero-viewer {
    margin-top: 72px;
    padding: 80px 0;
    min-height: calc(100vh - 72px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-viewer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-cool);
    opacity: 0.1;
    animation: rotateGradient 15s linear infinite;
}

@keyframes floatAnimation {

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

    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.4;
    }

    75% {
        transform: translate(-40px, -10px) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-viewer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-viewer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-content {
    position: relative;
    max-width: 650px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.6;
    font-weight: 400;
}

/* Feature List */
.feature-list {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    line-height: 1.5;
}

/* Hero CTA Button */
.hero-cta {
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* New Hero Button Style */
.btn-hero-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 60px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4),
        0 2px 8px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5),
        0 5px 15px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.btn-hero-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Keep old button style for other sections */
.btn-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

.btn-large:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

.btn-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
    flex-wrap: wrap;
}

/* Model Selector Inline */
.model-selector-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.model-selector-inline .model-dropdown {
    flex: 1;
    padding: 12px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.model-selector-inline .model-dropdown:hover,
.model-selector-inline .model-dropdown:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
    outline: none;
}

/* Promotional Content */
.promo-content {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.promo-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-warm);
    opacity: 0.05;
    animation: rotateGradient 15s linear infinite;
    pointer-events: none;
}

.promo-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.promo-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
    margin-bottom: 1.5rem;
    z-index: 1;
}

.btn-gradient:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.4);
}

.btn-gradient i {
    transition: transform 0.3s;
}

.btn-gradient:hover i {
    transform: translateX(4px);
}

.promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.promo-badge i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.promo-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
    color: white;
}

.promo-badge:hover i {
    color: white;
}

/* Compact Model Info - Keep for backward compatibility */
.model-info-compact {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.model-info-compact h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.info-grid-compact .info-item {
    padding: 0.75rem;
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.info-grid-compact .info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-grid-compact .info-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-grid-compact .info-value {
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Viewer Container */
.viewer-container-hero {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    height: 600px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

/* Large screens - even bigger */
@media (min-width: 1440px) {
    .viewer-container-hero {
        height: 700px;
    }
}

/* Interaction Hint */
.viewer-hint {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fadeInUp 1s ease 1s both, pulse 2s ease-in-out 2s infinite;
    box-shadow: var(--shadow-md);
    pointer-events: none;
}

.viewer-hint i {
    color: var(--color-primary);
    font-size: 1rem;
}

@keyframes pulse {

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

    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

.viewer-container-hero model-viewer {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 50%, #f5f0ff 100%);
    position: relative;
}

.viewer-container-hero model-viewer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    pointer-events: none;
}

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

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Modern Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.4);
}

.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    position: relative;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.4);
    border-color: transparent;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Viewer Section */
.viewer-section {
    padding: 80px 0;
    position: relative;
}

.model-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.model-selector label {
    font-weight: 600;
    color: var(--text-secondary);
}

.model-dropdown {
    padding: 12px 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    min-width: 220px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.model-dropdown:hover,
.model-dropdown:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
    outline: none;
}

/* 3D Viewer Container */
.viewer-container {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.progress-bar {
    height: 3px;
    background: var(--bg-tertiary);
    position: absolute;
    top: 0;
    width: 100%;
}

.update-bar {
    background: var(--gradient-primary);
    height: 100%;
    width: 0;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

.ar-button {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    transition: all 0.3s;
}

.ar-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Wireframe Mode Effect */
model-viewer.wireframe-mode {
    position: relative;
    transition: all 0.5s ease;
}

model-viewer.wireframe-mode::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(99, 102, 241, 0.1) 2px,
            rgba(99, 102, 241, 0.1) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(99, 102, 241, 0.1) 2px,
            rgba(99, 102, 241, 0.1) 4px);
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: wireframePulse 2s ease-in-out infinite;
}

[data-theme="dark"] model-viewer.wireframe-mode::after {
    mix-blend-mode: screen;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(99, 102, 241, 0.2) 2px,
            rgba(99, 102, 241, 0.2) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(99, 102, 241, 0.2) 2px,
            rgba(99, 102, 241, 0.2) 4px);
}

@keyframes wireframePulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Model Controls - Neumorphic Style */
.model-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
}

.model-controls button {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--bg-overlay);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-controls button:hover {
    color: var(--color-primary);
    box-shadow: var(--shadow-neu-inset);
    transform: scale(0.98);
}

.model-controls button:active {
    transform: scale(0.95);
}

/* Model Info Card */
.model-info {
    margin-top: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.model-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    padding: 1rem;
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.info-value {
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Models Grid */
.models-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, var(--bg-secondary), transparent);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.model-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.model-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.model-card:hover::before {
    opacity: 0.05;
}

.model-card-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

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

.model-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.model-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.03;
    pointer-events: none;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Center the last two items when there are 5 cards */
@media (min-width: 768px) {
    .experience-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Last two cards span and center */
    .experience-card:nth-child(4),
    .experience-card:nth-child(5) {
        max-width: 400px;
    }

    .experience-card:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
        margin-right: 1rem;
    }

    .experience-card:nth-child(5) {
        grid-column: 2 / 3;
        justify-self: start;
        margin-left: 1rem;
    }
}

@media (min-width: 1024px) {
    .experience-grid {
        gap: 2.5rem;
    }

    .experience-card:nth-child(4),
    .experience-card:nth-child(5) {
        max-width: 420px;
    }
}

.experience-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.experience-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.3);
}

.experience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.experience-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    transition: transform 0.3s;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 250px;
    margin: 0 auto;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Markets Section - Zakeke Style */
.markets-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

[data-theme="dark"] .markets-section {
    background: var(--bg-primary);
}

.markets-section .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    background: none;
    -webkit-text-fill-color: inherit;
}

[data-theme="dark"] .markets-section .section-title {
    color: var(--text-primary);
}

.markets-section .section-title::after {
    display: none;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .markets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.market-card {
    text-align: center;
    padding: 3rem 2rem;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.market-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #6366f1;
    transition: width 0.3s ease;
}

.market-card:hover {
    transform: translateY(-10px);
    background: rgba(99, 102, 241, 0.02);
}

.market-card:hover::after {
    width: 60px;
}

.market-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: #6366f1;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.market-card:nth-child(1) .market-icon {
    background: #6366f1;
}

.market-card:nth-child(2) .market-icon {
    background: #ec4899;
}

.market-card:nth-child(3) .market-icon {
    background: #14b8a6;
}

.market-card:nth-child(4) .market-icon {
    background: #f59e0b;
}

.market-card:hover .market-icon {
    transform: scale(1.1) rotate(5deg);
    border-radius: 25px;
}

.market-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    transition: color 0.3s;
}

[data-theme="dark"] .market-card h3 {
    color: var(--text-primary);
}

.market-card:hover h3 {
    color: #6366f1;
}

.market-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

[data-theme="dark"] .market-card p {
    color: var(--text-secondary);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-tertiary), var(--bg-secondary));
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: #ef4444;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section .btn-large {
    background: white;
    color: var(--color-primary);
    font-weight: 700;
    padding: 20px 50px;
    font-size: 1.125rem;
}

.final-cta-section .btn-large:hover {
    background: var(--bg-secondary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.03;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s;
    transform: rotate(45deg);
}

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

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.3);
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(var(--color-primary-rgb), 0.4);
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.benefits-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.benefits-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-warm);
    opacity: 0.05;
    animation: rotateGradient 20s linear infinite;
}

.benefits-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.benefits-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.benefits-cta .btn {
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-cool);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-secondary), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, transparent, var(--bg-secondary));
    position: relative;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-cool);
    opacity: 0.05;
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.form-group {
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 48px 10px 16px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.1);
    background: var(--bg-overlay);
}

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

.form-icon {
    position: absolute;
    right: 20px;
    top: 38px;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.form-group:has(label) .form-icon {
    top: calc(50% + 12px);
}

.form-group:has(textarea) .form-icon {
    top: 50px;
    transform: translateY(0);
}

.form-group:has(input:focus) .form-icon,
.form-group:has(textarea:focus) .form-icon {
    color: var(--color-primary);
}

.form-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-submit {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-status {
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s;
}

.form-status.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    color: #10b981;
    border: 1px solid #10b981;
    display: block;
}

.form-status.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    color: #ef4444;
    border: 1px solid #ef4444;
    display: block;
}

.form-status.sending {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
    color: #3b82f6;
    border: 1px solid #3b82f6;
    display: block;
}

/* Success Page Styles */
.success-section {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    min-height: 70vh;
}

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

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.account-info-card,
.payment-info-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    box-shadow: var(--shadow-lg);
}

.account-info-card h3,
.payment-info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-header i {
    font-size: 1.5rem;
    color: #0284c7;
}

.account-details {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-row .label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 100px;
}

.detail-row .value {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
    margin-left: 1rem;
}

.password-value {
    font-family: 'Courier New', monospace;
    background: var(--bg-primary);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
}

.copy-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 0.75rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.copy-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.account-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.account-note.new-account {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.account-note.existing-account {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.account-note i {
    font-size: 1rem;
}

.payment-amount {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.amount-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.amount-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
}

.payment-note {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-payment {
    flex: 1;
    max-width: 250px;
}

.btn-later {
    flex: 1;
    max-width: 200px;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    justify-content: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.action-buttons .btn {
    min-width: 180px;
}

@media (max-width: 768px) {
    .success-section {
        padding: 40px 0 60px 0;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .account-info-card,
    .payment-info-card {
        padding: 1.5rem;
        text-align: center;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }

    .detail-row .value {
        margin-left: 0;
        width: 100%;
    }

    .payment-actions {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-item {
        padding: 1.25rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Image upload and preview styles */
.form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 12px;
    transition: all 0.3s;
}

.form-group input[type="file"]::file-selector-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

.form-help {
    display: block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
    font-style: italic;
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.preview-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.2);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
    opacity: 0;
}

.preview-item:hover .remove-image {
    opacity: 1;
}

.remove-image:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}

.image-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Image Upload Grid */
.main-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.image-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-upload-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.upload-box {
    position: relative;
    background: var(--bg-primary);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upload-box:hover {
    border-color: var(--color-primary);
    background: var(--bg-overlay);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.1);
}

.image-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.upload-placeholder i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.upload-placeholder span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.file-name {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
    word-break: break-all;
    line-height: 1.2;
    max-width: 100%;
}

.file-selected .file-name {
    color: var(--color-primary);
    font-weight: 500;
}

.file-selected .upload-box {
    border-color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.05);
}

.file-selected .upload-placeholder i {
    color: var(--color-success, #10b981);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Footer */
.footer {
    color: var(--text-primary);
    padding: 4rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.02;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.footer-section h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--color-primary);
}

/* Company Info Section */
.company-info .footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    /* Keep original logo colors for light background */
}

.company-info .footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.company-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.company-legal {
    margin-bottom: 1.5rem;
}

.company-legal p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-tertiary);
}

.company-legal strong {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.875rem;
    width: 16px;
    color: var(--color-primary);
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-link i {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
}

.social-link.facebook i {
    color: #1877f2;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
}

.social-link.instagram i {
    color: #e1306c;
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.social-link.youtube i {
    color: #ff0000;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.footer-bottom strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .company-info {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .company-info .footer-logo {
        justify-content: flex-start;
    }

    .company-info .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-logo-img {
        height: 55px;
    }

    .footer-section h4::after {
        left: 0;
        transform: none;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-links a {
        justify-content: flex-start;
    }

    .contact-info {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .company-info .footer-logo h3 {
        font-size: 1.3rem;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 1.1rem;
    }
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0 4rem;
    background: var(--bg-primary);
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-overlay);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content h1 i {
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
}

.legal-last-updated {
    color: var(--text-tertiary);
    font-style: italic;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.legal-section li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.contact-details {
    background: rgba(var(--color-primary-rgb), 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.contact-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 4rem 0 2rem;
    }

    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }
}

@keyframes pulse {

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

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

/* Modern Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    animation: slideUp 0.3s;
}

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

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

.modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-secondary);
    font-size: 24px;
}

.close:hover {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(90deg);
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.upload-area:hover {
    border-color: var(--color-primary);
}

.upload-area:hover::before {
    opacity: 0.05;
}

.upload-area.dragover {
    border-color: var(--color-primary);
    background: var(--bg-primary);
}

.upload-area i {
    font-size: 3rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.upload-area p {
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

#uploadStatus {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: none;
    font-weight: 600;
    animation: fadeIn 0.3s;
}

#uploadStatus.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    color: #10b981;
    border: 1px solid #10b981;
    display: block;
}

#uploadStatus.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    color: #ef4444;
    border: 1px solid #ef4444;
    display: block;
}

#uploadStatus.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
    color: #3b82f6;
    border: 1px solid #3b82f6;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--bg-tertiary);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 1s linear infinite;
}

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

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Tablet Design */
@media (max-width: 1024px) {
    .hero-viewer-grid {
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .model-info-compact {
        padding: 1.25rem;
    }

    .viewer-container-hero {
        height: 500px;
    }

    .viewer-hint {
        font-size: 0.8rem;
        padding: 8px 16px;
        left: 15px;
    }
}

/* Mobile Design */
@media (max-width: 768px) {

    /* Markets Section Title Mobile Fix */
    .markets-section .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 15px;
    }

    .hero-viewer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-viewer {
        padding: 40px 0;
    }

    /* Experience Section Mobile */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .experience-card:nth-child(4),
    .experience-card:nth-child(5) {
        max-width: 100%;
        margin: 0;
        justify-self: stretch;
    }

    .experience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .experience-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .experience-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Process Section Mobile */
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }

    /* Benefits Section Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .benefit-card h3 {
        font-size: 1.15rem;
    }

    .benefit-card p {
        font-size: 0.875rem;
    }

    .benefits-cta {
        padding: 2rem;
    }

    .benefits-cta h3 {
        font-size: 1.5rem;
    }

    .benefits-cta p {
        font-size: 0.95rem;
    }

    /* Comparison Section Mobile */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-card h3 {
        font-size: 1rem;
    }

    .problem-card p {
        font-size: 0.85rem;
    }

    /* Final CTA Mobile */
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .final-cta-section .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        justify-content: center;
        align-items: center;
    }

    .btn-submit {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .form-status {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .container {
        padding: 0 16px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .feature-item {
        font-size: 0.95rem;
    }

    .feature-item i {
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-subtitle {
        font-size: 0.75rem;
    }

    .info-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .viewer-container-hero {
        height: 400px;
    }

    .viewer-hint {
        font-size: 0.75rem;
        padding: 6px 14px;
        bottom: 15px;
        left: 12px;
    }

    .nav-menu {
        gap: 1rem;
    }

    /* 
    .nav-menu li:not(:last-child):not(:nth-last-child(2)) {
        display: none;
    } 
    */

    /* Hide desktop customer login on mobile */
    .customer-login-link {
        display: none !important;
    }

    /* Show mobile customer login button */
    .mobile-login-btn {
        display: none !important;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .model-selector {
        flex-direction: column;
        width: 100%;
    }

    .model-dropdown {
        width: 100%;
    }

    .model-controls {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }

    .model-controls button {
        width: 40px;
        height: 40px;
    }

    .features-grid,
    .models-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    .modal-content {
        margin: 15% auto;
        width: 95%;
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
    }

    .about-content,
    .contact-content {
        padding: 0;
    }

    .about-content {
        padding: 2rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }
}

/* Small Mobile Design */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Experience Cards Small Mobile */
    .experience-card {
        padding: 1.25rem;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .experience-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .experience-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Markets Section */
    .markets-section .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .market-card {
        padding: 2rem 1rem;
    }

    .market-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .market-card h3 {
        font-size: 1.25rem;
    }

    .market-card p {
        font-size: 0.875rem;
    }

    /* Process Section */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    /* Benefits Section */
    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-card p {
        font-size: 0.8rem;
    }

    /* Comparison Section */
    .problem-card {
        padding: 1.25rem;
    }

    .problem-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .problem-card h3 {
        font-size: 0.95rem;
    }

    .problem-card p {
        font-size: 0.8rem;
    }

    /* Final CTA */
    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .final-cta-section .btn-large {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* Hero Buttons */
    .btn-hero-primary {
        padding: 16px 36px;
        font-size: 1.1rem;
        min-width: 180px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: flex;
    }

    .btn-hero-subtitle {
        font-size: 0.65rem;
        margin-top: 2px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-subtitle {
        font-size: 0.7rem;
    }

    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .feature-item i {
        font-size: 0.9rem;
    }

    .model-info-compact h3 {
        font-size: 0.95rem;
    }

    .info-grid-compact .info-label {
        font-size: 0.65rem;
    }

    .info-grid-compact .info-value {
        font-size: 0.75rem;
    }

    .viewer-container-hero {
        height: 350px;
    }

    .viewer-hint {
        font-size: 0.7rem;
        padding: 5px 12px;
        bottom: 10px;
        left: 10px;
    }

    .model-controls {
        bottom: 8px;
        right: 8px;
        gap: 6px;
    }

    .model-controls button {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 36px 10px 14px;
        font-size: 0.85rem;
    }

    .form-icon {
        right: 14px;
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-submit {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-content p {
        font-size: 0.875rem;
    }

    /* Navigation */
    .nav-brand {
        font-size: 0.9rem;
    }

    .nav-logo {
        height: 40px;
    }

    /* Padding adjustments */
    .hero-viewer {
        padding: 30px 0;
        min-height: auto;
    }

    .experience-section,
    .process-section,
    .benefits-section,
    .comparison-section,
    .features-section,
    .about-section,
    .contact-section {
        padding: 50px 0;
    }

    .markets-section {
        padding: 60px 0;
    }

    .final-cta-section {
        padding: 60px 0;
    }
}

/* ==================== PRICING SECTION STYLES ==================== */

.pricing-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.pricing-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.pricing-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Modern Currency Switcher */
.currency-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.currency-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.currency-toggle {
    display: flex;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.currency-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: inherit;
}

.currency-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
    min-width: 80px;
    justify-content: center;
}

.currency-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(var(--color-primary-rgb), 0.4);
    transform: scale(1.02);
}

.currency-btn:hover:not(.active) {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: scale(1.01);
}

.currency-btn .currency-symbol {
    font-size: 1.1em;
    font-weight: 700;
}

/* Modern Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.pricing-card:hover::before {
    opacity: 0.05;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(var(--color-primary-rgb), 0.2);
    border-color: rgba(var(--color-primary-rgb), 0.3);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(var(--color-primary-rgb), 0.3);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--bg-glass) 0%, rgba(var(--color-primary-rgb), 0.05) 100%);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(var(--color-primary-rgb), 0.4);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 10px 28px;
    border-radius: 0 0 20px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge i {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

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

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.plan-tagline {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.price-display {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ULTRA-SIMPLE Price Group Display */
.price-group {
    display: none;
}

.price-group.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

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

.currency-symbol {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 4px;
}

/* Custom pricing for enterprise */
.pricing-card[data-plan="enterprise"] .price-amount {
    font-size: 2.5rem;
    color: var(--text-primary);
    background: var(--gradient-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pricing Body */
.pricing-body {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.features-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.features-list .feature-item:hover {
    background: rgba(var(--color-primary-rgb), 0.05);
    padding-left: 16px;
    padding-right: 16px;
}

.features-list .feature-item i {
    color: var(--color-accent);
    margin-top: 2px;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-accent), 0.1);
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.features-list .feature-item.limitation i {
    color: var(--text-tertiary);
    background: rgba(var(--text-tertiary), 0.1);
}

.features-list .feature-item span {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

.limitations {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    opacity: 0.8;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(var(--color-primary-rgb), 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-primary);
    border: 2px solid transparent;
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(var(--color-secondary), 0.4);
    transform: translateY(-2px);
}

/* Simple Launch Pricing Section */
.launch-pricing-section {
    padding: 80px 20px !important;
    background: #ffffff !important;
    width: 100% !important;
    min-height: 600px !important;
    display: block !important;
}

.launch-offer {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: block !important;
}

.launch-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, #5E72E4, #7B8CFF) !important;
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
}

.launch-badge i {
    margin-right: 8px !important;
}

.launch-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1A202C !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

.launch-subtitle {
    font-size: 1.2rem !important;
    color: #4A5568 !important;
    margin-bottom: 40px !important;
    line-height: 1.5 !important;
}

.launch-price-card {
    background: #F7F8FC !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 16px !important;
    padding: 40px !important;
    margin: 40px 0 !important;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

.launch-price-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #5E72E4 !important;
}

.price-display {
    margin-bottom: 30px !important;
    text-align: center !important;
    display: block !important;
}

.price-main {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
}

.currency {
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: #5E72E4 !important;
    margin-right: 5px !important;
}

.amount {
    font-size: 4rem !important;
    font-weight: 800 !important;
    color: #5E72E4 !important;
    line-height: 1 !important;
}

.period {
    font-size: 1.2rem !important;
    color: #4A5568 !important;
    margin-left: 5px !important;
}

.price-note {
    color: #48BB78 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.features-included {
    margin: 30px 0 !important;
    text-align: left !important;
}

.features-included h4 {
    color: #1A202C !important;
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.feature-list li {
    display: flex !important;
    align-items: center !important;
    color: #4A5568 !important;
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
    padding: 5px 0 !important;
}

.feature-list li i {
    color: #48BB78 !important;
    margin-right: 12px !important;
    font-size: 14px !important;
    width: 16px !important;
}

.launch-cta {
    margin-top: 30px !important;
    text-align: center !important;
}

.launch-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #5E72E4, #7B8CFF) !important;
    color: white !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.launch-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(94, 114, 228, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

.launch-guarantee {
    margin-top: 15px !important;
    color: #718096 !important;
    font-size: 0.9rem !important;
    font-style: italic !important;
}

/* Launch Pricing Mobile Responsive */
@media (max-width: 768px) {
    .launch-pricing-section {
        padding: 60px 15px !important;
    }

    .launch-title {
        font-size: 2rem !important;
    }

    .launch-subtitle {
        font-size: 1.1rem !important;
    }

    .launch-price-card {
        padding: 30px 20px !important;
        margin: 30px 0 !important;
    }

    .amount {
        font-size: 3rem !important;
    }

    .currency {
        font-size: 1.5rem !important;
    }

    .period {
        font-size: 1rem !important;
    }

    .launch-btn {
        padding: 12px 30px !important;
        font-size: 1rem !important;
        width: 90% !important;
    }

    .feature-list li {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
}

/* Simplified pricing layout */

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-section .section-title {
        font-size: 2.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.popular {
        transform: none;
        margin-top: 0;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .currency-switcher {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .currency-toggle {
        width: 100%;
        max-width: 300px;
    }

    /* Simplified mobile layout */

    .price-amount {
        font-size: 3rem;
    }

    .plan-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .popular-badge {
        padding: 8px 20px;
        font-size: 0.75rem;
    }

    .plan-name {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .currency-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-section .section-title {
        font-size: 1.8rem;
    }

    /* Mobile pricing adjustments complete */
}

/* Dark theme pricing adjustments */
[data-theme="dark"] .pricing-card.popular {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(var(--color-primary-rgb), 0.5);
    background: linear-gradient(135deg, var(--bg-glass) 0%, rgba(var(--color-primary-rgb), 0.1) 100%);
}

[data-theme="dark"] .pricing-card.popular:hover {
    box-shadow: var(--shadow-xl), 0 0 50px rgba(var(--color-primary-rgb), 0.6);
}

/* Dark theme launch pricing adjustments */
[data-theme="dark"] .launch-pricing-section {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .launch-title {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .launch-subtitle {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .launch-price-card {
    background: var(--bg-glass) !important;
    border-color: var(--border) !important;
}

[data-theme="dark"] .launch-price-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .features-included h4 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .feature-list li {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .launch-guarantee {
    color: var(--text-muted) !important;
}

/* Dark theme pricing complete */

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width:767px) {
    .section-title {
        font-size: 1.7rem !important;
    }
}

/* Extracted from index.ejs (Forms, FAQ, CTA) */
.form-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 48px;
    /* Adjusted based on label height + input padding */
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    z-index: 10;
}

.password-toggle:hover {
    color: #4b5563;
}

.form-icon {
    /* Ensure existing icon is positioned if not already */
    /* Assuming existing icon is left or handled by modern-style */
}

/* FAQ Section Styles - Accordion */
.faq-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Space between items */
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(37, 99, 235, 0.05);
    border-color: #93c5fd;
    /* Light blue border */
}

.faq-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.2s ease;
    user-select: none;
}

.faq-header:hover {
    background-color: #f8fafc;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-item.active .faq-question {
    color: #2563eb;
    /* Blue color when active */
}

.faq-icon {
    color: #9ca3af;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
}

.faq-body {
    padding: 0 30px 30px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    padding-top: 10px;
}

/* New CTA Section Styles */
.new-cta-section {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.new-cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.new-cta-content p {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-cta-link {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta-link:hover {
    background-color: #1d4ed8;
}