
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

:root {
    --bg-dark: #0A0A1A;
    --bg-card: #1a1a2e;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D1;
    --text-muted: #8A8AA3;
    --accent-purple: #9333EA;
    --accent-violet: #7C3AED;
    --accent-pink: #EC4899;
    --accent-blue: #3B82F6;
    --accent-orange: #FF8C42;
    --accent-green: #10B981;
    --gradient-text: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    --gradient-primary: linear-gradient(135deg, #9333EA 0%, #7C3AED 50%, #6366F1 100%);
    --gradient-button: linear-gradient(135deg, #9333EA 0%, #C026D3 50%, #EC4899 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --border-color: rgba(147, 51, 234, 0.2);
    --glow-purple: rgba(147, 51, 234, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
    overscroll-behavior-y: auto;
}

/* Hide scrollbar but keep functionality */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #000000;
}

body::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.3);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: rgba(147, 51, 234, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 51, 234, 0.3) #000000;
}

/* Remove unwanted outlines and borders */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid rgba(147, 51, 234, 0.5);
    outline-offset: 2px;
}

/* Ensure no light borders appear */
html, body {
    border: none !important;
    outline: none !important;
}

/* Hide any unwanted lines from desktop containers */
@media (min-width: 769px) {
    .week-grid,
    .calculator-container,
    .problem-grid,
    .solution-container,
    .guarantee-grid,
    .testimonial-grid,
    .case-study-container {
        border: none !important;
        outline: none !important;
    }
}

/* Animated diagonal stripes background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(147, 51, 234, 0.03) 50px,
            rgba(147, 51, 234, 0.03) 100px
        );
    animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Gradient orbs */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse 600px 800px at 10% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 90% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 700px 700px at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    animation: orbPulse 12s ease-in-out infinite;
    pointer-events: none;
    will-change: opacity;
}

/* Ensure scrolling works smoothly */
* {
    -webkit-overflow-scrolling: touch;
}

/* Prevent scroll blocking on animations */
.hero::before,
.hero::after {
    pointer-events: none;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 60px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 217, 255, 0.2);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.nav-services-wrapper {
    position: relative;
}

.nav-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-services-toggle:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-services-wrapper:hover .dropdown-arrow,
.nav-services-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 217, 255, 0.2);
    z-index: 1001;
    animation: dropdownFadeIn 0.3s ease;
    backdrop-filter: blur(20px);
    display: none;
}

.services-dropdown.active {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.services-dropdown-item:hover {
    color: #FFFFFF;
    background: rgba(0, 217, 255, 0.1);
    border-left-color: #00D9FF;
    padding-left: 1.75rem;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(90deg, #FF4444 0%, #FF6B35 50%, #FFB347 100%);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(168, 85, 247, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu-links .nav-link {
    color: #FFFFFF;
}

.mobile-services-wrapper {
    position: relative;
}

.mobile-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.mobile-services-toggle:hover {
    color: #FFFFFF;
}

.mobile-services-dropdown {
    margin-top: 0.75rem;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    animation: mobileDropdownFadeIn 0.3s ease;
}

@keyframes mobileDropdownFadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.mobile-services-item {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-services-item:hover {
    color: #FFFFFF;
    padding-left: 0.5rem;
}

.nav-container {
    flex-wrap: nowrap;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 8rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    top: -300px;
    left: -200px;
    animation: heroGlow 8s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.2) translate(50px, 50px); opacity: 0.6; }
}

.hero-content {
    max-width: 1300px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    animation: alertBounce 2s ease-in-out infinite;
}

@keyframes alertBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.alert-icon {
    font-size: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero-title-line1 {
    display: block;
    color: var(--text-primary);
}

.hero-title-line2 {
    display: block;
    font-size: clamp(3.5rem, 8vw, 7rem);
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(147, 51, 234, 0.8);
    animation: numberPulse 3s ease-in-out infinite;
    margin: 0.5rem 0;
}

@keyframes numberPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Micro-interactions */
.stat-card:hover .stat-number {
    animation: countUp 0.6s ease-out;
}

@keyframes countUp {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.day-card:hover .day-occupancy {
    animation: numberBounce 0.6s ease;
}

@keyframes numberBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Glow effect on hover */
.problem-card:hover .problem-icon {
    animation: iconGlow 1s ease-in-out;
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 0 transparent); }
    50% { filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.8)); }
}

/* Button ripple effect */
.cta-primary, .calculate-btn, .cta-button {
    position: relative;
    overflow: hidden;
}

.cta-primary:active, .calculate-btn:active, .cta-button:active {
    transform: scale(0.98);
}

/* Floating animation for badges */
.hero-alert, .section-pretitle {
    animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Timeline card entrance */
.timeline-card {
    animation: slideInUp 0.6s ease-out backwards;
}

.timeline-card:nth-child(1) { animation-delay: 0.1s; }
.timeline-card:nth-child(2) { animation-delay: 0.2s; }
.timeline-card:nth-child(3) { animation-delay: 0.3s; }
.timeline-card:nth-child(4) { animation-delay: 0.4s; }
.timeline-card:nth-child(5) { animation-delay: 0.5s; }
.timeline-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Email preview cards */
.email-preview-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.email-preview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(147, 51, 234, 0.4);
    border-color: var(--accent-purple);
}

.email-header {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.email-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.email-preview-card:hover .email-header::before {
    left: 100%;
}

/* Table styles for comparison */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover td {
    background: rgba(147, 51, 234, 0.1);
    transform: translateX(5px);
}

/* Progress bar animation */
@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-success);
    border-radius: 10px;
    animation: progressFill 2s ease-out;
}

/* Fix Card Styles */
.fix-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(147, 51, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 100px rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
    animation: fixCardPulse 4s ease-in-out infinite;
}

.fix-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    animation: fixBgShift 8s ease-in-out infinite;
    z-index: 0;
}

.fix-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fix-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fixBadgeGlow 3s ease-in-out infinite;
}

.fix-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.fix-highlight {
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.5rem;
}

.fix-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fix-stat-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fix-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.fix-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
}

.fix-stat-card:hover::before {
    left: 100%;
}

.fix-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.fix-stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fix-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.fix-stat-multiplier {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.fix-stat-result {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-green);
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.fix-main-result {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fix-booking-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.fix-booking-before {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-purple);
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
    animation: fixNumberPulse 2s ease-in-out infinite;
}

.fix-arrow {
    font-size: 3rem;
    color: var(--text-primary);
    animation: fixArrowSlide 1.5s ease-in-out infinite;
}

.fix-booking-after {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
    animation: fixNumberPulse 2s ease-in-out infinite 0.5s;
}

.fix-booking-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fix-increase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-green);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: fixBadgeBounce 2s ease-in-out infinite;
}

.fix-increase-icon {
    font-size: 1.5rem;
    animation: fixIconRotate 3s linear infinite;
}

.fix-increase-text {
    letter-spacing: 1px;
}

@keyframes fixCardPulse {
    0%, 100% { 
        box-shadow: 
            0 20px 60px rgba(147, 51, 234, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.05) inset,
            0 0 100px rgba(236, 72, 153, 0.2);
    }
    50% { 
        box-shadow: 
            0 20px 80px rgba(147, 51, 234, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
            0 0 120px rgba(236, 72, 153, 0.3);
    }
}

@keyframes fixBgShift {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(10px, -10px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fixBadgeGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    50% { 
        box-shadow: 0 4px 30px rgba(147, 51, 234, 0.4);
    }
}

@keyframes fixNumberPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes fixArrowSlide {
    0%, 100% { 
        transform: translateX(0);
    }
    50% { 
        transform: translateX(10px);
    }
}

@keyframes fixBadgeBounce {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-5px);
    }
}

@keyframes fixIconRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

/* Desktop Web View Improvements - Only affects screens 769px and above */
@media (min-width: 769px) {
    /* Section spacing improvements */
    .section {
        padding: 6rem 2rem;
    }

    .week-viz-section {
        padding: 7rem 2rem;
    }

    /* Container side margins */
    .hero-content {
        padding: 0 2rem;
    }

    .week-grid {
        width: calc(100% - 4rem);
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .calculator-container {
        width: calc(100% - 4rem);
        max-width: 900px;
        margin: 0 auto;
    }

    .problem-grid {
        width: calc(100% - 4rem);
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.25rem;
    }

    .problem-card {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .problem-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .problem-title {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
    }

    .problem-desc {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .problem-cost-box {
        padding: 0.5rem 0.625rem;
        margin-top: 0.75rem;
    }

    .problem-cost {
        font-size: 0.7rem;
    }

    .solution-container {
        width: calc(100% - 4rem);
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .guarantee-grid {
        width: calc(100% - 4rem);
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .testimonial-grid {
        width: calc(100% - 4rem);
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .case-study-container {
        width: calc(100% - 4rem);
        max-width: 1000px;
        margin: 0 auto;
    }

    .section-header {
        padding: 0 2rem;
    }

    /* Fix card improvements */
    .fix-card {
        width: calc(100% - 4rem);
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Annual savings box improvements */
    .annual-savings-box {
        width: calc(100% - 4rem);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Campaign timeline improvements */
    .campaign-timeline {
        width: calc(100% - 4rem);
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .timeline-track {
        width: 100%;
    }

    /* Email preview section improvements */
    .email-preview-container {
        width: calc(100% - 4rem);
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Revenue waterfall section */
    section[style*="background: linear-gradient"] {
        padding: 6rem 2rem;
    }

    section[style*="background: linear-gradient"] > div {
        width: calc(100% - 4rem);
        max-width: 900px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Comparison table container */
    div[style*="max-width: 1100px"] {
        width: calc(100% - 4rem);
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Month timeline section */
    div[style*="max-width: 1000px"][style*="position: relative"] {
        width: calc(100% - 4rem);
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Final CTA improvements */
    .final-cta-section {
        padding: 8rem 2rem;
    }

    .final-cta-content {
        width: calc(100% - 4rem);
        max-width: 900px;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

/* Large Desktop View (1400px and above) */
@media (min-width: 1400px) {
    .section {
        padding: 7rem 3rem;
    }

    .week-viz-section {
        padding: 8rem 3rem;
    }

    .problem-grid,
    .solution-container,
    .guarantee-grid,
    .testimonial-grid {
        gap: 3rem;
    }
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: rgba(26, 26, 46, 0.95);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid rgba(147, 51, 234, 0.5);
}

.tooltip:hover::after {
    opacity: 1;
}

.hero-title-line3 {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-urgency {
    display: inline-block;
    background: rgba(147, 51, 234, 0.15);
    border-left: 4px solid var(--accent-purple);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-purple);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-primary {
    padding: 1.5rem 3rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.15rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-primary:hover::before {
    width: 400px;
    height: 400px;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.7);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(147, 51, 234, 0.4);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
}

/* Weekday Loss Visualization - NEW! */
.week-viz-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated Section Dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(147, 51, 234, 0.3) 20%, 
        rgba(147, 51, 234, 0.6) 50%, 
        rgba(147, 51, 234, 0.3) 80%, 
        transparent 100%
    );
    margin: 4rem auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: scaleX(0);
    animation: dividerReveal 0.8s ease-out forwards;
}

@keyframes dividerReveal {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    animation: dividerSweep 3s ease-in-out infinite;
}

@keyframes dividerSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--gradient-button);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.8), 0 0 40px rgba(147, 51, 234, 0.4);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

.section-pretitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(147, 51, 234, 0.15);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.day-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.day-card.weekend {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--accent-green);
}

.day-card.weekday {
    background: rgba(147, 51, 234, 0.15);
    border-color: var(--accent-purple);
}

.day-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.4);
}

.day-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.day-occupancy {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.day-card.weekend .day-occupancy {
    color: var(--accent-green);
}

.day-card.weekday .day-occupancy {
    color: var(--accent-purple);
}

.day-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.day-loss {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-purple);
}

/* Calculator Enhanced */
.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 3.5rem 3rem;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.calculator-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.form-input {
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.calculate-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-button);
    color: white;
    border: none;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.5);
    position: relative;
    overflow: hidden;
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
}

.calculate-btn:hover::before {
    width: 600px;
    height: 600px;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.7);
}

.calculator-result {
    display: none;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    border: 3px solid var(--accent-purple);
    text-align: center;
    position: relative;
}

.calculator-result.visible {
    display: block;
    animation: resultReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes resultReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.result-explosion {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.result-amount {
    font-size: 5.5rem;
    font-weight: 900;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
    animation: amountPulse 1.5s ease-in-out infinite;
    line-height: 1;
}

@keyframes amountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.result-breakdown {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.breakdown-value {
    color: var(--text-primary);
    font-weight: 800;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient-button);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.problem-card:hover::before {
    opacity: 0.8;
}

.problem-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(147, 51, 234, 0.4);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.problem-cost-box {
    background: rgba(147, 51, 234, 0.15);
    border-left: 4px solid var(--accent-purple);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.problem-cost {
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Email Campaign Timeline - NEW! */
.campaign-timeline {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.timeline-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-card::before {
    content: attr(data-day);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(147, 51, 234, 0.4);
    border-color: var(--accent-purple);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline-metric {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
    color: var(--accent-green);
}

/* Solution Section */
.solution-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-list-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.feature-item::after {
    content: '→';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-purple);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-item:hover::after {
    opacity: 1;
    right: 1.5rem;
}

.feature-item:hover {
    transform: translateX(12px);
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.4);
}

.feature-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.results-showcase {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    position: sticky;
    top: 120px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    align-self: start;
    will-change: transform;
}

.results-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-box {
    padding: 2rem 1.75rem;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
}

.result-box-before {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(124, 58, 237, 0.15));
    border: 2px solid rgba(147, 51, 234, 0.4);
}

.result-box-after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.result-box:hover {
    transform: scale(1.05);
}

.result-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.result-box-before .result-label {
    color: rgba(147, 51, 234, 1);
}

.result-box-after .result-label {
    color: rgba(16, 185, 129, 1);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.result-box-before .result-number {
    color: var(--accent-purple);
}

.result-box-after .result-number {
    color: var(--accent-green);
}

.result-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.savings-highlight {
    background: var(--gradient-button);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.savings-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.savings-amount {
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

/* Case Study */
.case-study-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 4rem 3.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    position: relative;
}

.case-study-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.case-study-badge {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    background: linear-gradient(135deg, #FF8C42, #FFB347);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.case-study-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-align: center;
}

.challenge-box {
    background: rgba(147, 51, 234, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--accent-purple);
    margin-bottom: 3rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.challenge-label {
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    text-align: center;
}

.challenge-text {
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 600;
    text-align: center;
    font-weight: 600;
}

.results-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-column {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.result-column:hover {
    transform: scale(1.05);
}

.result-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.result-percentage {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.result-percentage.before {
    color: var(--accent-purple);
}

.result-percentage.after {
    color: var(--accent-green);
}

.result-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.annual-savings-box {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(16, 185, 129, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 100px rgba(16, 185, 129, 0.3);
    animation: savingsBoxPulse 4s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.annual-savings-box::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: savingsBoxRotate 8s linear infinite;
    z-index: 0;
}

.annual-savings-box::after {
    content: '💰';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: savingsIconFloat 3s ease-in-out infinite;
    z-index: 1;
}

.savings-box-label {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.savings-box-amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    animation: savingsAmountGlow 2s ease-in-out infinite;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes savingsBoxPulse {
    0%, 100% { 
        box-shadow: 
            0 20px 60px rgba(16, 185, 129, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
            0 0 100px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 25px 80px rgba(16, 185, 129, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset,
            0 0 120px rgba(16, 185, 129, 0.4);
        transform: scale(1.01);
    }
}

@keyframes savingsBoxRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes savingsIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

@keyframes savingsAmountGlow {
    0%, 100% { 
        text-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% { 
        text-shadow: 
            0 4px 30px rgba(0, 0, 0, 0.4),
            0 0 60px rgba(255, 255, 255, 0.3);
    }
}

/* Revenue Card - Lock Size (Past Guest Re-Engagement) */
.revenue-card {
    padding: 1.5rem 2rem !important;
    min-height: auto !important;
    box-sizing: border-box;
}

.revenue-card > div:first-child > div:first-child {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem !important;
}

.revenue-card > div:first-child > div:last-child {
    font-size: 0.95rem !important;
}

.revenue-card > div:last-child {
    font-size: 2rem !important;
    font-weight: 900 !important;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(147, 51, 234, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(147, 51, 234, 0.4);
    border-color: var(--accent-purple);
}

.testimonial-rating {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.guarantee-card {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
}

.guarantee-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(147, 51, 234, 0.5);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.guarantee-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guarantee-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.final-cta-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scarcity-badge {
    display: inline-block;
    background: rgba(147, 51, 234, 0.2);
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: alertBounce 2s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1.75rem 3.5rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.6);
    transition: all 0.4s ease;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 500px;
    height: 500px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 80px rgba(147, 51, 234, 0.8);
}

.cta-features {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .solution-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .results-showcase {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .week-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0.875rem 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .logo-text {
        font-size: 1.25rem;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        max-width: calc(100vw - 2rem);
        box-sizing: border-box;
        overflow: hidden;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1.5rem 2rem;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: visible;
    }

    .hero-content {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-alert {
        margin-top: 2rem;
        margin-bottom: 2rem;
        font-size: 0.75rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        letter-spacing: -1px;
        margin-bottom: 1.25rem;
    }

    .hero-title-line1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .hero-title-line2 {
        font-size: clamp(2rem, 9vw, 3.5rem);
        margin: 0.5rem 0;
        line-height: 1.1;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: none;
    }

    .hero-title-line3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-top: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-urgency {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-cta-group {
        margin-bottom: 2.5rem;
    }

    .cta-primary {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .stat-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.5rem 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Section Dividers */
    .section-divider {
        margin: 3rem auto;
        max-width: calc(100% - 2rem);
    }

    .section-divider::after {
        width: 8px;
        height: 8px;
    }

    /* All Sections */
    .section {
        padding: 3rem 1.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .week-viz-section {
        padding: 3rem 1.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    /* Text Overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Week Grid Mobile */
    .week-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .day-card {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .day-occupancy {
        font-size: 2rem;
    }

    /* Problem Grid Mobile */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .problem-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .problem-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .problem-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Guarantee Grid Mobile */
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .guarantee-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .guarantee-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .guarantee-title {
        font-size: 1.4rem;
        margin-bottom: 0.875rem;
    }

    .guarantee-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Final CTA Mobile */
    .final-cta-section {
        padding: 4rem 1rem;
    }

    .final-cta-content {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .final-cta-section::before {
        width: 800px;
        height: 800px;
    }

    .scarcity-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }

    .cta-title {
        font-size: clamp(1.75rem, 7vw, 3rem);
        margin-bottom: 1.25rem;
        letter-spacing: -1px;
    }

    .cta-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }

    .cta-features {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Comparison Table Mobile */
    .comparison-table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 1.5rem;
        background: rgba(26, 26, 46, 0.8);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid var(--border-color);
    }

    .comparison-table td {
        display: block;
        padding: 0.75rem 0;
        text-align: left !important;
        width: 100%;
        border: none;
    }

    .comparison-table td:first-child {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-table td:nth-child(2)::before {
        content: 'YOUR PROPERTY: ';
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--accent-purple);
        margin-right: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comparison-table td:nth-child(3)::before {
        content: 'WITH WARPMILL: ';
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--accent-green);
        margin-right: 0.5rem;
        margin-top: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comparison-table td:nth-child(2),
    .comparison-table td:nth-child(3) {
        font-size: 1.1rem;
        font-weight: 800;
    }

    .comparison-table td:nth-child(2) {
        color: var(--accent-purple);
    }

    .comparison-table td:nth-child(3) {
        color: var(--accent-green);
    }

    /* Fix Card Mobile */
    .fix-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .fix-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .fix-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .fix-highlight {
        font-size: 1.2rem;
    }

    .fix-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .fix-stat-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .fix-stat-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .fix-stat-value {
        font-size: 2rem;
    }

    .fix-stat-result {
        font-size: 1rem;
        padding: 0.4rem 0.875rem;
    }

    .fix-main-result {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .fix-booking-comparison {
        flex-direction: column;
        gap: 1rem;
    }

    .fix-booking-before,
    .fix-booking-after {
        font-size: 3rem;
    }

    .fix-arrow {
        font-size: 2rem;
        transform: rotate(90deg);
    }

    .fix-booking-label {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .fix-increase-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Comparison Table Container Mobile */
    div[style*="max-width: 1100px"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }

    div[style*="background: rgba(26, 26, 46, 0.8)"][style*="border-radius: 20px"] {
        padding: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Case Study Mobile */
    .case-study-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .case-study-badge {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .case-study-title {
        text-align: center;
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 2rem;
    }

    .challenge-box {
        width: 100%;
        padding: 1.5rem 1.25rem;
        box-sizing: border-box;
        margin-bottom: 2rem;
    }

    .challenge-label {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .challenge-text {
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .results-comparison {
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .result-column {
        padding: 2rem 1.5rem;
    }

    .result-percentage {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .result-desc {
        font-size: 0.95rem;
    }

    /* Annual Savings Box Mobile */
    .annual-savings-box {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .savings-box-label {
        font-size: 0.95rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .savings-box-amount {
        font-size: clamp(2.5rem, 10vw, 4rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .annual-savings-box::after {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .nav-container {
        padding: 0.75rem 0.875rem;
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        padding: 0.5rem;
        min-width: 40px;
        min-height: 40px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu {
        padding: 0.75rem 0;
        left: 0.875rem;
        right: 0.875rem;
        max-width: calc(100vw - 1.75rem);
    }

    .nav-menu a {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3.5rem 1rem 1.5rem;
    }

    .hero-alert {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 0.7rem;
        padding: 0.65rem 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        white-space: normal;
        word-wrap: break-word;
    }

    .hero-title-line1 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .hero-title-line2 {
        font-size: clamp(1.75rem, 8vw, 3rem);
        line-height: 1.1;
        word-break: break-word;
    }

    .hero-title-line3 {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }

    .hero-urgency {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .cta-primary {
        padding: 1.1rem 1.75rem;
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .week-viz-section {
        padding: 2.5rem 1rem;
    }

    .section-divider {
        margin: 2.5rem auto;
        max-width: calc(100% - 2rem);
    }

    .section-divider::after {
        width: 6px;
        height: 6px;
    }

    .day-card {
        padding: 1.25rem 0.875rem;
    }

    .day-occupancy {
        font-size: 1.75rem;
    }

    .problem-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .problem-icon {
        font-size: 2.25rem;
        margin-bottom: 0.875rem;
    }

    .problem-title {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .problem-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .guarantee-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .guarantee-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .guarantee-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .guarantee-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .final-cta-section {
        padding: 3rem 0.75rem;
    }

    .final-cta-content {
        padding: 0 0.75rem;
    }

    .final-cta-section::before {
        width: 600px;
        height: 600px;
    }

    .scarcity-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.25rem;
        letter-spacing: 0.5px;
    }

    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
        margin-bottom: 1.75rem;
    }

    .cta-button {
        padding: 1.25rem 1.75rem;
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .cta-features {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Comparison Table Extra Small */
    div[style*="background: rgba(26, 26, 46, 0.8)"] {
        padding: 1.25rem !important;
        border-radius: 16px !important;
    }

    .comparison-table tr {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .comparison-table td:first-child {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.625rem;
    }

    .comparison-table td:nth-child(2)::before,
    .comparison-table td:nth-child(3)::before {
        font-size: 0.75rem;
    }

    .comparison-table td:nth-child(2),
    .comparison-table td:nth-child(3) {
        font-size: 1rem;
    }

    /* Fix Card Extra Small */
    .fix-card {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }

    .fix-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.25rem;
    }

    .fix-intro {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .fix-highlight {
        font-size: 1.1rem;
    }

    .fix-stats-grid {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .fix-stat-card {
        padding: 1.25rem 1rem;
        border-radius: 14px;
    }

    .fix-stat-icon {
        font-size: 1.75rem;
    }

    .fix-stat-value {
        font-size: 1.75rem;
    }

    .fix-stat-result {
        font-size: 0.9rem;
        padding: 0.375rem 0.75rem;
    }

    .fix-main-result {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }

    .fix-booking-before,
    .fix-booking-after {
        font-size: 2.5rem;
    }

    .fix-arrow {
        font-size: 1.75rem;
    }

    .fix-booking-label {
        font-size: 0.85rem;
    }

    .fix-increase-badge {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Comparison Table Container Extra Small */
    div[style*="background: rgba(26, 26, 46, 0.8)"][style*="border-radius: 20px"] {
        padding: 1.25rem !important;
        border-radius: 16px !important;
    }

    /* Case Study Extra Small */
    .case-study-container {
        padding: 1.75rem 1.25rem;
    }

    .challenge-box {
        padding: 1.25rem 1rem;
    }

    .challenge-label {
        font-size: 0.85rem;
    }

    .challenge-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .result-column {
        padding: 1.75rem 1.25rem;
    }

    .result-percentage {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    /* Annual Savings Box Extra Small */
    .annual-savings-box {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .savings-box-label {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.875rem;
    }

    .savings-box-amount {
        font-size: clamp(2rem, 9vw, 3.5rem);
        padding: 0 0.75rem;
    }

    .annual-savings-box::after {
        font-size: 1.75rem;
        top: 0.875rem;
        right: 0.875rem;
    }
}

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .results-comparison {
        grid-template-columns: 1fr;
    }

    .calculator-container {
        padding: 2rem 1.5rem;
    }

    .week-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        position: relative;
        background: rgba(10, 10, 26,0.95);
        color: white;
        padding: 2rem;
        text-align: center;
        padding-top: 5rem;
        padding-bottom: 3rem;
    
    }
    .section-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    
    }
    .highlight {
        background: var(--gradient-text);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent; /* Example highlight color */
    }
    .footer-tagline {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #B8B8D1;
    }
    .footer-contact {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.7);
    }
    .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .social-links a {
        z-index: 10;
        color: #14039E;
        text-decoration: none;
        font-size: 1.5rem; /* Adjust for icon size */
        transition: color 0.1s ease-in-out;
        
    }
    .social-links a:hover {
        color: #0E1B4D; /* Example hover color; customize per icon */
    }
    .instagram-link:hover {
        color: rgb(244, 62, 96); /* Instagram hover */
    }
    .footer-copyright {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.7);
    }
    /* Social icon SVGs can be styled similarly */
    .social-icon {
        width: 35px;
        height: 35px;
        fill: currentColor; /* Inherits color from parent */
    }
    /* Hover scale effect */
    .footer-social-icons {
        transition: transform 0.3s ease;
    }
    .footer-social-icons:hover {
        transform: scale(1.1);
        cursor: pointer;
    }
