/* BSS Landing - Modern CSS Styles */

/* ===== Root Variables ===== */
:root {
    /* Colors from presentation */
    --rose-dust: #E85A8B;
    --dark-rose: #C73E6B;
    --accent-orange: #FF6B35;
    --accent-blue: #4A90E2;
    --cream: #FFF5F5;
    --light-cream: #FEF7F7;
    
    /* Additional colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --border-light: #e2e8f0;
    --shadow-color: rgba(231, 90, 139, 0.1);
    
    /* Spacing */
    --container-max: 1280px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, sans-serif;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

.gradient-text {
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-rose);
    margin-bottom: 1rem;
    animation: pulse 1.5s ease infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--rose-dust), transparent);
    animation: loading 1.5s ease infinite;
}

@keyframes loading {
    to { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 4px 30px var(--shadow-color);
    border-bottom-color: var(--border-light);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-rose);
    letter-spacing: -0.02em;
}

.logo-tagline {
    display: flex;
    flex-direction: column;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-dust);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--rose-dust);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.header-phone:hover {
    color: var(--rose-dust);
}

.phone-icon {
    color: var(--rose-dust);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 90, 139, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--rose-dust);
    border: 2px solid var(--rose-dust);
}

.btn-secondary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--accent-orange), var(--rose-dust));
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.2s ease-out;
}

/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    transform: translateY(-100%);
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    padding: 2rem 1rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.mobile-nav-link:hover {
    background: var(--cream);
    color: var(--rose-dust);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-phone {
    color: var(--rose-dust);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(232, 90, 139, 0.05) 0%,
        rgba(255, 107, 53, 0.05) 50%,
        rgba(74, 144, 226, 0.05) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--rose-dust) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--accent-orange) 1px, transparent 1px),
        radial-gradient(circle at 40% 20%, var(--accent-blue) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(232, 90, 139, 0.1), rgba(199, 62, 107, 0.1));
    border: 1px solid rgba(232, 90, 139, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-rose);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-russia {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.25rem;
}

.feature-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--rose-dust);
}

.feature-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(232, 90, 139, 0.2), transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-badge.top {
    top: 10%;
    right: -20px;
}

.floating-badge.bottom {
    bottom: 20%;
    left: -20px;
    animation-delay: 3s;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rose-dust);
    display: block;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--rose-dust);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--rose-dust);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes wheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

/* ===== Section Base ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: linear-gradient(135deg, rgba(232, 90, 139, 0.1), rgba(199, 62, 107, 0.1));
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-rose);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== Founder Section ===== */
.founder {
    background: linear-gradient(180deg, var(--light-cream) 0%, white 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.founder-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.quote-icon {
    opacity: 0.1;
    margin-bottom: 0.5rem;
}

.founder-quote p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
}

.founder-info {
    margin-bottom: 2rem;
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--dark-rose);
    margin-bottom: 0.5rem;
}

.founder-info p {
    color: var(--text-secondary);
}

.founder-story {
    margin-bottom: 2rem;
}

.founder-story p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rose-dust);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== Features Bento Grid ===== */
.features {
    background: white;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(200px, auto);
}

.bento-card {
    background: linear-gradient(135deg, var(--light-cream), white);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bento-card.medium {
    grid-column: span 2;
}

.bento-card.small {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.bento-card.small .bento-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.bento-card.small h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bento-content p,
.bento-card.small p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Special visualizations in bento cards */
.power-indicator {
    position: relative;
    height: 40px;
    background: var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1rem;
}

.power-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, var(--rose-dust), var(--accent-orange));
    border-radius: 20px;
    animation: powerPulse 2s ease-in-out infinite;
}

.power-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: white;
    z-index: 1;
}

@keyframes powerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.noise-level {
    margin-top: 1rem;
}

.noise-bar {
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.noise-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--level);
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 4px;
}

.noise-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.noise-labels .active {
    color: #22c55e;
    font-weight: 600;
}

.protection-shield {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 1rem auto 0;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    opacity: 0.3;
}

.shield-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    animation: shieldPulse 3s ease-in-out infinite 1s;
}

.shield-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    animation: shieldPulse 3s ease-in-out infinite 2s;
}

.shield-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--accent-blue);
}

@keyframes shieldPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== Interactive Construction ===== */
.construction {
    background: var(--light-cream);
}

.construction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-showcase {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}

.hotspot-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--rose-dust);
    opacity: 0.5;
    animation: ping 2s infinite;
}

.hotspot-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--dark-rose);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
}

.hotspot.active .hotspot-dot {
    background: var(--accent-orange);
    transform: translate(-50%, -50%) scale(1.3);
}

@keyframes ping {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* Updated detail-card height for desktop */
.detail-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: var(--transition-base);
    cursor: pointer;
    height: 101px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-card:hover {
    border-color: var(--rose-dust);
    transform: translateX(5px);
}

.detail-card.active {
    border-color: var(--rose-dust);
    background: linear-gradient(135deg, rgba(232, 90, 139, 0.05), rgba(255, 255, 255, 1));
}

.detail-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.detail-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.detail-card p {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.875rem;
    display: none;
}

.specs-card {
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 1rem;
}

.specs-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec {
    text-align: center;
}

.spec-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.spec-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* ===== Comparison Table ===== */
.comparison {
    background: white;
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--light-cream), white);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    color: white;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table td.highlight {
    background: linear-gradient(135deg, rgba(232, 90, 139, 0.05), rgba(232, 90, 139, 0.1));
    font-weight: 600;
    color: var(--dark-rose);
}

.advantage {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* ===== Videos Section ===== */
.videos {
    background: var(--light-cream);
}

.videos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

/* Updated video card heights */
.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    height: 293px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-card.large {
    grid-row: span 2;
    height: 600px;
}

.video-wrapper {
    position: relative;
    height: calc(100% - 80px);
    overflow: hidden;
}

.video-card.large .video-wrapper {
    height: calc(100% - 125px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-dust);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button.mini {
    width: 60px;
    height: 60px;
}

.video-thumb {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    padding: 1rem;
    height: 80px;
}

.video-card.large .video-info {
    height: 100px;
    padding: 1.5rem;
}

.video-info h3,
.video-info h4 {
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.video-duration {
    display: inline-block;
    background: var(--light-cream);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== Production Section ===== */
.production {
    background: white;
}

.production-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.production-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.production-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.production-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.production-feature {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 12px;
    transition: var(--transition-base);
}

.production-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.quality-process {
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.quality-process h4 {
    margin-bottom: 1.5rem;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--dark-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.timeline-content h5 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.75rem;
    opacity: 0.95;
}

.production-gallery {
    display: grid;
    gap: 1rem;
}

.gallery-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-main:hover {
    transform: scale(1.02);
}

.gallery-main img {
    width: 100%;
    height: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-grid a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    height: 150px;
}

.gallery-grid a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Fixed gallery image to fill container properly */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Reviews Section ===== */
.reviews {
    background: var(--light-cream);
}

.reviews-slider-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reviewer-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #fbbf24;
    font-size: 1.125rem;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-source {
    color: var(--rose-dust);
    font-weight: 600;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.reviews-stats .stat {
    text-align: center;
}

.reviews-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rose-dust);
    display: block;
}

.reviews-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Swiper Customization */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    background: var(--border-light);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: var(--transition-base);
}

.swiper-pagination-bullet-active {
    background: var(--rose-dust);
    width: 30px;
    border-radius: 5px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--rose-dust);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* ===== Pricing Section ===== */
.pricing {
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-base);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: var(--rose-dust);
    transform: scale(1.05);
}

.price-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.price-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--rose-dust);
}

.price-currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features svg {
    color: #22c55e;
    flex-shrink: 0;
}

.promo-banner {
    background: linear-gradient(135deg, var(--accent-orange), var(--rose-dust));
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.promo-icon img {
    width: 60px;
    height: 60px;
}

.promo-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.promo-text p {
    opacity: 0.9;
}

/* ===== Test Drive Section ===== */
.test-drive {
    background: linear-gradient(180deg, var(--light-cream) 0%, white 100%);
}

.test-drive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.test-drive-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.test-drive-features {
    margin-bottom: 2rem;
}

.test-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.test-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}

.test-feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.test-feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.test-drive-image {
    position: relative;
}

.test-drive-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.test-drive-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.badge-content {
    text-align: center;
}

/* ===== FAQ Section ===== */
.faq {
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-cream);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--rose-dust);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--rose-dust), var(--dark-rose));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-form {
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-phone,
.cta-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: var(--transition-base);
}

.cta-phone:hover,
.cta-email:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: white;
}

.footer-logo .logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--rose-dust);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===== Modals ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-base);
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    transform: scale(0.9);
    transition: var(--transition-base);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-form .form-group {
    margin-bottom: 1rem;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-base);
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--rose-dust);
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== WhatsApp Button ===== */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition-base);
    z-index: 100;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ===== Lazy Loading ===== */
.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-phone .phone-number {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.large {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
    
    .construction-content {
        grid-template-columns: 1fr;
    }
    
    .detail-card {
        height: auto;
        min-height: 80px;
        padding: 1rem;
    }
    
    .detail-card p {
        display: block;
    }
    
    .production-content {
        grid-template-columns: 1fr;
    }
    
    .test-drive-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card,
    .video-card.large {
        height: 350px;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large,
    .bento-card.medium {
        grid-column: span 1;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .production-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 1.5rem;
    }
    
    .detail-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .floating-badge {
        display: none;
    }
    
    .founder-stats {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .mobile-menu,
    .whatsapp-button,
    .modal {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    .hero {
        min-height: auto;
    }
}