
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --bg-dark: #0A0A1A;
    --bg-card: #1a1a2e;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D1;
    --text-muted: #8A8AA3;
    --accent-teal: #00D9FF;
    --accent-orange: #FF8C42;
    --accent-red: #FF1744;
    --accent-crimson: #DC143C;
    --accent-purple: #A855F7;
    --accent-green: #4ECDC4;
    --gradient-text: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);

    --gradient-primary: linear-gradient(135deg, #FF1744 0%, #DC143C 50%, #C41E3A 100%);
    --gradient-button: linear-gradient(135deg, #FF1744 0%, #F50057 50%, #FF4081 100%);
    --gradient-danger: linear-gradient(135deg, #FF1744 0%, #D32F2F 100%);
    --border-color: rgba(255, 23, 68, 0.15);
    --glow-red: rgba(255, 23, 68, 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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Animated gradient mesh background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(255, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 80% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 700px 700px at 50% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* Grid overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Floating orbs */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-orb 20s ease-in-out infinite;
    opacity: 0.3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-red), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-crimson), transparent);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-purple), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(0, -100px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -50px) scale(1.05);
    }
}

/* 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 var(--border-color);
    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;
    letter-spacing: -0.02em;
}

.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);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    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-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);
}

/* Global Mobile Optimization */
section, div, article, aside, main, header, footer {
    max-width: 100%;
    box-sizing: border-box;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Hero Section - MASSIVE LOSS AVERSION */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.3) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: pulse 8s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.hero-content {
    max-width: 900px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    z-index: 10;
    text-align: center;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    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: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 68, 68, 0); }
}

.alert-icon {
    font-size: 1.5rem;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-title-line1 {
    display: block;
    color: var(--text-primary);
}

.hero-title-line2 {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--accent-red);
    text-shadow: 0 0 60px rgba(255, 68, 68, 0.8);
    animation: numberGlow 2s ease-in-out infinite;
    margin: 0.5rem 0;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(255, 68, 68, 0.6); }
    50% { text-shadow: 0 0 80px rgba(255, 68, 68, 1); }
}

.hero-title-line3 {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(1.9rem, 4.5vw, 3.5rem);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-urgency {
    display: inline-block;
    background: rgba(255, 68, 68, 0.15);
    border-left: 4px solid var(--accent-red);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-red);
}

.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(255, 68, 68, 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(255, 68, 68, 0.7);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    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 rgba(255, 255, 255, 0.1);
    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-danger);
    -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(255, 23, 68, 0.4);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--gradient-danger);
    -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;
}

/* Crisis Timeline Section - NEW! */
.timeline-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero {
    padding-bottom: 4rem;
}

.final-cta-section {
    padding-top: 4rem;
}

/* Animated Section Dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 23, 68, 0.3) 20%, 
        rgba(255, 23, 68, 0.6) 50%, 
        rgba(255, 23, 68, 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(255, 23, 68, 0.8), 0 0 40px rgba(255, 23, 68, 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-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-pretitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    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;
}

.crisis-timeline {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-red) 0%, #dc2626 100%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-day {
    width: 120px;
    flex-shrink: 0;
    text-align: center;
}

.day-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-button);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.5);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateX(15px);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.3);
    border-color: var(--accent-red);
}

.timeline-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.timeline-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.timeline-damage {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 68, 68, 0.2);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-red);
}

/* Rating Science Section - NEW! */
.rating-science {
    max-width: 1100px;
    margin: 0 auto;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.science-card {
    background: rgba(26, 26, 46, 0.8);
    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;
}

.science-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-red);
    box-shadow: 0 25px 70px rgba(255, 23, 68, 0.4);
}

.science-rating {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.rating-bad {
    color: #dc2626;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
}

.rating-good {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.rating-elite {
    color: #00FFD1;
    text-shadow: 0 0 30px rgba(0, 255, 209, 0.6);
}

.science-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.science-conversion {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.science-impact {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Calculator Enhanced */
.calculator-container {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    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-button);
    -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-red);
    box-shadow: 0 0 30px rgba(255, 68, 68, 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(255, 68, 68, 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(255, 68, 68, 0.7);
}

.calculator-result {
    display: none;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    border: 3px solid var(--accent-red);
    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-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.result-amount {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin: 1.5rem 0;
    text-shadow: 0 0 60px rgba(255, 68, 68, 1);
    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 Cards Enhanced */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1150px;
    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 rgba(255, 255, 255, 0.1);
    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(255, 68, 68, 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-danger);
    -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(255, 68, 68, 0.1);
    border-left: 4px solid var(--accent-red);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.problem-cost {
    color: var(--accent-red);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Solution Section Enhanced */
.solution-container {
    max-width: 1150px;
    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;
    background: var(--gradient-danger);
    -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 rgba(255, 255, 255, 0.1);
    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-red);
    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(255, 23, 68, 0.6);
    box-shadow: 0 15px 50px rgba(255, 23, 68, 0.4);
}

.feature-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-danger);
    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);
}

.results-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
    background: var(--gradient-danger);
    -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(220, 38, 38, 0.2), rgba(239, 68, 68, 0.15));
    border: 2px solid rgba(220, 38, 38, 0.4);
}

.result-box-after {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
    border: 2px solid rgba(255, 215, 0, 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(255, 107, 107, 1);
}

.result-box-after .result-label {
    color: rgba(255, 215, 0, 1);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.result-box-before .result-number {
    color: #FF4444;
}

.result-box-after .result-number {
    color: #FFD700;
}

.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-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.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;
}

/* Before/After Transformation Section - NEW! */
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.transformation-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
}

.transformation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(255, 23, 68, 0.4);
    border-color: var(--accent-red);
}

.transformation-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.badge-before {
    background: rgba(220, 38, 38, 0.2);
    color: #FF4444;
    border: 1px solid rgba(220, 38, 38, 0.4);
}

.badge-after {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.transformation-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-name {
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-value {
    font-weight: 800;
    font-size: 1.2rem;
}

.stat-value-bad {
    color: #FF4444;
}

.stat-value-good {
    color: #FFD700;
}

/* Case Study Enhanced */
.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;
    width: 100%;
    box-sizing: border-box;
}

.case-study-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient-danger);
    -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: inline-block;
    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;
}

.challenge-box {
    background: rgba(255, 68, 68, 0.12);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--accent-red);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.challenge-label {
    color: var(--accent-red);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.challenge-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    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: #dc2626;
}

.result-percentage.after {
    color: #FFD700;
}

.result-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.annual-savings-box {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 3rem 2.5rem;
    border-radius: 18px;
    text-align: center;
    color: #000;
}

.savings-box-label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #000;
}

.savings-box-amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: #000;
}

/* Testimonials Enhanced */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1150px;
    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 rgba(255, 255, 255, 0.1);
    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(255, 23, 68, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 23, 68, 0.4);
    border-color: var(--accent-red);
}

.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-danger);
    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 Enhanced */
.guarantee-section {
    overflow: hidden;
    position: relative;

}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.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-red);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(255, 23, 68, 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 Enhanced */
.final-cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    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(255, 68, 68, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.final-cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scarcity-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.2);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    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: alertPulse 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(255, 68, 68, 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(255, 68, 68, 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;
    }
}

@media (max-width: 768px) {
    /* Section Dividers */
    .section-divider {
        margin: 3rem auto;
        max-width: calc(100% - 2rem);
    }

    .section-divider::after {
        width: 8px;
        height: 8px;
    }

    /* Navigation */
    .nav-container {
        padding: 0.875rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        position: relative;
    }

    .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;
        flex-direction: column;
    }

    .nav-services-wrapper {
        width: 100%;
    }

    .nav-services-toggle {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-dropdown {
        position: static;
        margin-top: 0;
        margin-left: 1rem;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255, 23, 68, 0.05);
        padding: 0.5rem 0;
        display: none;
        animation: none;
    }

    .services-dropdown.active {
        display: block;
    }

    .services-dropdown-item {
        padding: 0.75rem 1.5rem;
        border-left: 2px solid transparent;
    }

    .services-dropdown-item:hover {
        padding-left: 1.5rem;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        min-height: 44px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: calc(100% - 2rem);
        text-align: center;
        border-radius: 8px;
        margin: 0.5rem 1rem 0;
        box-sizing: border-box;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1.5rem 2rem;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-alert {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* All Sections */
    section {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .results-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calculator-container {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .timeline-section {
        padding: 3rem 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .timeline-line {
        display: none;
    }

    /* Global Mobile Container Fixes */
    .section-header,
    .section-content,
    .calculator-container,
    .problem-grid,
    .solution-container,
    .results-comparison,
    .transformation-grid,
    .timeline,
    .cta-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Prevent Text Overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    /* Ensure no horizontal scroll */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .hero::before {
        max-width: 100vw;
    }

    /* Case Study Container - Mobile Fix */
    .case-study-container {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 20px;
    }

    .case-study-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .results-comparison {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .result-percentage {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    /* Annual Revenue Recovered Box - Mobile Fix */
    .annual-savings-box {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 16px;
        margin: 1.5rem auto 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .savings-box-label {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .savings-box-amount {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.1;
        white-space: nowrap;
        overflow: visible;
    }
}

@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;
    }

    .nav-cta {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        margin: 0.5rem 1rem 0;
        width: calc(100% - 2rem);
    }

    .hero {
        padding: 3.5rem 1rem 1.5rem;
    }

    .hero-alert {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .case-study-container {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .annual-savings-box {
        padding: 1.75rem 1.25rem;
        margin: 1rem auto 0;
        border-radius: 14px;
    }

    .savings-box-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .savings-box-amount {
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.1;
    }
}

.footer {
    position: relative;
    background: rgba(10, 10, 26,0.75);
    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;
}