* {
    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-pink: #FF6B9D;
    --accent-orange: #FF8C42;
    --accent-red: #FF4444;
    --accent-purple: #A855F7;
    --gradient-text: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    --gradient-button: linear-gradient(135deg, #FF4444 0%, #FF6B35 50%, #FFB347 100%);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    max-width: 100vw;
    position: relative;
}
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    max-width: 100vw;
}

/* Navigation with glassmorphism */
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;
    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: var(--accent-teal);
    padding-left: 1.75rem;
}

/* 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: 1001;
    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-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);
}

/* 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 - LOSS AVERSION + 3D EFFECTS */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 3rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.15);
    backdrop-filter: blur(10px);
    color: var(--accent-red);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 68, 68, 0.3);
    animation: fadeInUp 0.8s ease-out;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -2px;
}

.hero-title .word {
    display: inline-block;
    animation: wordReveal 1s ease-out forwards;
    opacity: 0;
}

.hero-title .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .word:nth-child(2) { animation-delay: 0.4s; }
.hero-title .word:nth-child(3) { animation-delay: 0.5s; }
.hero-title .word:nth-child(4) { animation-delay: 0.6s; }
.hero-title .word:nth-child(5) { animation-delay: 0.7s; }

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.loss-amount {
    color: var(--accent-red);
    display: block;
    text-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-primary {
    padding: 1.25rem 2.5rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    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.6);
}

.cta-secondary {
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 750px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.3);
    border-color: rgba(255, 68, 68, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Floating scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { top: 10px; opacity: 0; }
    50% { top: 25px; opacity: 1; }
}

/* Animated Section Dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 68, 68, 0.3) 20%, 
        rgba(255, 68, 68, 0.6) 50%, 
        rgba(255, 68, 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, 68, 68, 0.8), 0 0 40px rgba(255, 68, 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;
    }
}

/* CALCULATOR SECTION - SELF DISCOVERY */
.calculator-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-container {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.calculator-form {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-input {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.calculate-btn {
    padding: 1.25rem 2.5rem;
    background: var(--gradient-button);
    color: white;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
    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: 400px;
    height: 400px;
}

.calculate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.6);
}

.calculator-result {
    display: none;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 107, 53, 0.1));
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--accent-red);
    margin-top: 2rem;
    text-align: center;
}

.calculator-result.visible {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.result-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.result-breakdown {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: var(--text-secondary);
}

.breakdown-value {
    color: var(--text-primary);
    font-weight: 700;
}

/* Problem Section - EMPATHY */
.problem-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1150px;
    margin: 0 auto;
    perspective: 1000px;
}

.problem-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    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;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    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.6;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.3);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.problem-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    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.6;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.problem-cost {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.cost-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cost-text {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Solution Section - AUTHORITY */
.solution-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.solution-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.feature-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.results-showcase {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.results-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-comparison {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-box {
    padding: 1.75rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.result-box-before {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(239, 68, 68, 0.1));
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.result-box-after {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(20, 184, 166, 0.1));
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.result-box:hover {
    transform: scale(1.05);
}

.result-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.result-box-before .result-label {
    color: rgba(255, 107, 107, 0.9);
}

.result-box-after .result-label {
    color: rgba(6, 182, 212, 0.9);
}

.result-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-box-before .result-number {
    color: #FF4444;
}

.result-box-after .result-number {
    color: #00D9FF;
}

.result-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.savings-highlight {
    background: var(--gradient-button);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 1.5rem;
    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.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

/* GUARANTEE SECTION - RISK REVERSAL */
.guarantee-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guarantee-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
}

.guarantee-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.guarantee-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.guarantee-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CASE STUDY SECTION */
.case-study-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.case-study-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF8C42, #FFB347);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.challenge-box {
    background: rgba(255, 68, 68, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.challenge-label {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.challenge-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
}

.results-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-column {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-percentage {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-percentage.before {
    color: #dc2626;
}

.result-percentage.after {
    color: #4ECDC4;
}

.result-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.annual-savings-box {
    background: linear-gradient(135deg, #4ECDC4, #38a169);
    padding: 2.5rem;
    border-radius: 14px;
    text-align: center;
    color: white;
}

.savings-box-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.savings-box-amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.social-proof-section .section-title {
    color: var(--text-primary);
}

.social-proof-section .section-subtitle {
    color: var(--text-secondary);
}

/* SOCIAL PROOF */
.social-proof-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1150px;
    margin: 0 auto;
}

.testimonial-card {
    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);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: var(--accent-teal);
}

.testimonial-rating {
    font-size: 1.75rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Process Section - Timeline */
.process-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--accent-teal) 0%, 
        var(--accent-purple) 50%, 
        var(--accent-orange) 100%
    );
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.5);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FINAL CTA - SCARCITY */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scarcity-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50px;
    box-shadow: 0 15px 50px rgba(255, 68, 68, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.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: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 70px rgba(255, 68, 68, 0.7);
}

.cta-features {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.process-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--accent-teal) 0%, 
        var(--accent-purple) 50%, 
        var(--accent-orange) 100%
    );
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
    position: relative;
    z-index: 1;
}

.timeline-content {
    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);
    flex: 1;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.5);
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* FINAL CTA - SCARCITY */
.cta-section {
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scarcity-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-size: clamp(3rem, 6vw, 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: 2rem 4rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 60px;
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.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: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 68, 68, 0.7);
}

.cta-features {
    margin-top: 3rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .solution-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .results-showcase {
        position: static;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0.875rem 1rem;
        flex-wrap: nowrap;
        gap: 0.75rem;
        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: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        padding: 0.75rem 0;
        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-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(0, 217, 255, 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.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.25rem;
        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.25rem;
        font-size: 0.9rem;
        width: calc(100% - 2.5rem);
        text-align: center;
        border-radius: 8px;
        margin: 0.5rem 1.25rem 0;
        box-sizing: border-box;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    /* Section Dividers */
    .section-divider {
        margin: 3rem auto;
        max-width: calc(100% - 2rem);
    }

    .section-divider::after {
        width: 8px;
        height: 8px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-title .word {
        display: inline;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-label {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Calculator Section */
    .calculator-section {
        padding: 3rem 1.5rem;
    }

    .calculator-container {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-group {
        gap: 0.5rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .calculate-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        min-height: 52px;
    }

    .calculator-result {
        padding: 1.5rem;
    }

    .result-amount {
        font-size: 2rem;
    }

    .result-text {
        font-size: 0.95rem;
    }

    /* Commission Breakdown */
    .commission-breakdown-section {
        padding: 3rem 1.5rem;
    }

    .breakdown-grid {
        gap: 1rem;
    }

    .breakdown-card {
        padding: 1.5rem 1.25rem;
    }

    .breakdown-title {
        font-size: 1.1rem;
    }

    .breakdown-amount {
        font-size: 1.75rem;
    }

    .total-disaster {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .disaster-amount {
        font-size: 3rem;
    }

    /* Before/After Section */
    .before-after-section {
        padding: 3rem 1.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .comparison-side {
        padding: 1.5rem 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .comparison-side.before {
        width: 100%;
        max-width: 100%;
    }

    .comparison-header {
        margin-bottom: 1.5rem;
    }

    .comparison-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .comparison-title {
        font-size: 1.35rem;
        word-wrap: break-word;
    }

    .comparison-subtitle {
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    .comparison-chart {
        margin: 1.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .comparison-chart {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .chart-bar {
        padding: 0.875rem 0.75rem;
        font-size: 0.8rem;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        flex-wrap: nowrap;
        overflow: visible;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chart-bar.ota,
    .chart-bar.direct-bad,
    .chart-bar.direct-good,
    .chart-bar.ota-reduced {
        width: 100% !important;
    }

    .chart-bar .chart-label,
    .chart-bar .chart-cost {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: ellipsis;
        flex-shrink: 0;
        display: inline-block;
        max-width: 50%;
    }

    .chart-bar .chart-label {
        margin-right: auto;
        padding-right: 0.5rem;
    }

    .chart-bar .chart-cost {
        margin-left: auto;
        padding-left: 0.5rem;
        flex-shrink: 0;
        text-align: right;
    }

    .comparison-stats {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
        box-sizing: border-box;
    }

    .stat-bad, .stat-good {
        padding: 0.85rem 1rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }

    .savings-explosion {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .explosion-amount {
        font-size: 3rem;
        word-wrap: break-word;
    }

    /* Problem Section */
    .problem-section {
        padding: 3rem 1.5rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card {
        padding: 1.5rem 1.25rem;
    }

    .problem-title {
        font-size: 1.15rem;
    }

    .problem-desc {
        font-size: 0.9rem;
    }

    /* Solution Section */
    .solution-section {
        padding: 3rem 1.5rem;
    }

    .solution-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .results-showcase {
        position: static;
        padding: 2rem 1.5rem;
    }

    .result-number {
        font-size: 2.25rem;
    }

    .savings-amount {
        font-size: 2rem;
    }

    /* Guarantee Section */
    .guarantee-section {
        padding: 3rem 1.5rem;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guarantee-card {
        padding: 1.5rem 1.25rem;
    }

    .guarantee-title {
        font-size: 1.15rem;
    }

    /* Case Study Section */
    .case-study-section {
        padding: 3rem 1.5rem;
    }

    .case-study-container {
        padding: 2rem 1.5rem;
    }

    .case-study-title {
        font-size: 1.5rem;
    }

    .challenge-box {
        padding: 1.5rem;
    }

    .results-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-percentage {
        font-size: 2.5rem;
    }

    .annual-savings-box {
        padding: 2rem 1.5rem;
    }

    .savings-box-amount {
        font-size: 2.5rem;
    }

    /* Social Proof */
    .social-proof-section {
        padding: 3rem 1.5rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Process Section */
    .process-section {
        padding: 3rem 1.5rem;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .scarcity-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .cta-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        width: 100%;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cta-features {
        font-size: 0.95rem;
        margin-top: 2rem;
    }

    /* Hero Stats - Better Mobile Layout */
    .hero-stats {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    /* Global Mobile Container Fixes */
    .section-header,
    .section-content,
    .calculator-container,
    .problem-grid,
    .solution-container,
    .guarantee-grid,
    .case-study-container,
    .testimonial-grid,
    .timeline,
    .cta-content,
    .comparison-container,
    .breakdown-grid,
    .total-disaster,
    .savings-explosion {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }

    /* Prevent Text Overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, li, td, th {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Ensure all containers fit */
    * {
        max-width: 100%;
    }

    /* Fix any absolute positioned elements */
    .hero::before,
    .hero::after {
        max-width: 100vw;
    }
}
/* Trust Section */
.trust-section {
    position: relative;
    z-index: 1;
    margin: 3rem 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 140px;
    transition: all 0.4s;
    animation: floatUp 0.6s ease-out backwards;
}

.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
.trust-badge:nth-child(4) { animation-delay: 0.4s; }

@keyframes floatUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.trust-badge:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-teal);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.trust-text {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Commission Breakdown Section */
.commission-breakdown-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.commission-breakdown-section .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.breakdown-grid {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 1.5rem;
}

.breakdown-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out backwards;
    transition: all 0.4s;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.breakdown-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.breakdown-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breakdown-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}

.breakdown-amount {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF4444, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.breakdown-detail {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.breakdown-bar {
    height: 8px;
    border-radius: 4px;
    margin-top: 1rem;
    animation: barGrow 1.5s ease-out backwards;
}

@keyframes barGrow {
    from { width: 0 !important; }
}

.total-disaster {
    max-width: 700px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2), rgba(255, 179, 71, 0.15));
    border: 2px solid #FF4444;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 68, 68, 0.3); }
    50% { box-shadow: 0 0 60px rgba(255, 68, 68, 0.6); }
}

.disaster-label {
    font-size: 1rem;
    font-weight: 800;
    color: #FF4444;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.disaster-amount {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF4444, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.disaster-compare {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Before/After Section */
.before-after-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.before-after-section .section-header {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.comparison-container {
    max-width: 1100px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.comparison-side {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    border: 2px solid;
    transition: all 0.4s;
}

.comparison-side.before {
    border-color: rgba(255, 68, 68, 0.5);
    animation: slideInLeft 0.8s ease-out;
}

.comparison-side.after {
    border-color: rgba(0, 217, 255, 0.5);
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.comparison-side:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.comparison-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.comparison-icon {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.comparison-chart {
    margin: 1.75rem 0;
}

.chart-bar {
    padding: 1.25rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 0.95rem;
    animation: barSlide 1s ease-out backwards;
}

@keyframes barSlide {
    from { width: 0 !important; opacity: 0; }
    to { opacity: 1; }
}

.chart-bar.ota {
    background: linear-gradient(90deg, rgba(255, 68, 68, 0.3), rgba(255, 68, 68, 0.1));
    border-left: 4px solid #FF4444;
}

.chart-bar.direct-bad {
    background: linear-gradient(90deg, rgba(100, 100, 100, 0.3), rgba(100, 100, 100, 0.1));
    border-left: 4px solid #666;
}

.chart-bar.direct-good {
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.3), rgba(0, 217, 255, 0.1));
    border-left: 4px solid var(--accent-teal);
}

.chart-bar.ota-reduced {
    background: linear-gradient(90deg, rgba(255, 139, 71, 0.3), rgba(255, 139, 71, 0.1));
    border-left: 4px solid #FF8B47;
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.stat-bad, .stat-good {
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-bad {
    background: rgba(255, 68, 68, 0.1);
    border-left: 3px solid #FF4444;
    color: rgba(255, 255, 255, 0.8);
}

.stat-good {
    background: rgba(0, 217, 255, 0.1);
    border-left: 3px solid var(--accent-teal);
    color: rgba(255, 255, 255, 0.9);
}

.savings-explosion {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(168, 85, 247, 0.15));
    border: 2px solid var(--accent-teal);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    animation: explosionPulse 2s ease-in-out infinite;
}

@keyframes explosionPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(0, 217, 255, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 80px rgba(0, 217, 255, 0.6); }
}

.explosion-icon {
    font-size: 3.5rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.explosion-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-teal);
    letter-spacing: 2px;
    margin: 1rem 0;
}

.explosion-amount {
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Trust Section */
    .trust-section {
        margin: 2rem 0;
    }

    .trust-badges {
        gap: 1rem;
        padding: 1rem;
        flex-direction: column;
    }

    .trust-badge {
        min-width: auto;
        width: 100%;
        padding: 1.25rem;
    }

    .trust-icon {
        font-size: 2rem;
    }

    .trust-text {
        font-size: 0.85rem;
    }

    /* Additional Mobile Optimizations */
    .breakdown-bar {
        height: 6px;
    }

    .chart-label,
    .chart-cost {
        font-size: 0.75rem;
    }

    .stat-bad,
    .stat-good {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .comparison-stats {
        gap: 0.5rem;
    }

    /* Form Improvements */
    .form-input::placeholder {
        font-size: 0.9rem;
    }

    /* Better Text Sizing */
    .result-label {
        font-size: 0.85rem;
    }

    .breakdown-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .nav-container {
        padding: 0.75rem 0.875rem;
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-badge {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Section Dividers */
    .section-divider {
        margin: 2.5rem auto;
        max-width: calc(100% - 2rem);
    }

    .section-divider::after {
        width: 6px;
        height: 6px;
    }

    .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-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .calculator-container,
    .case-study-container,
    .results-showcase {
        padding: 1.25rem;
    }

    .disaster-amount,
    .explosion-amount {
        font-size: 2.5rem;
    }

    .result-amount {
        font-size: 1.75rem;
    }

    .trust-badge {
        padding: 1rem;
    }
}

.footer {
    position: relative;
    background: rgba(16, 16, 39, 0.627);
    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;
}