
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

:root {
    --bg-dark: #0A0A1A;
    --bg-card: #1a1a2e;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D1;
    --text-muted: #8A8AA3;
    --accent-cyan: #06B6D4;
    --accent-blue: #3B82F6;
    --accent-indigo: #6366F1;
    --accent-teal: #14B8A6;
    --accent-sky: #0EA5E9;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --gradient-text: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    --gradient-primary: linear-gradient(135deg, #06B6D4 0%, #3B82F6 50%, #6366F1 100%);
    --gradient-button: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 50%, #3B82F6 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --border-color: rgba(6, 182, 212, 0.2);
    --glow-cyan: rgba(6, 182, 212, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Circuit board pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Tech glow orbs */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse 800px 1000px at 10% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 900px 700px at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 700px 900px at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: techPulse 12s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 60px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(6, 182, 212, 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);
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(90deg, #FF4444 0%, #FF6B35 50%, #FFB347 100%);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(168, 85, 247, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #FFFFFF;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.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;
    max-width: 1400px;
    margin: 0 auto;
}

.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;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mobile-menu-links a:hover {
    color: #FFFFFF;
    padding-left: 1rem;
}

.mobile-menu-links .nav-cta {
    background: var(--gradient-button);
    color: white !important;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    border: none;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    animation: heroRotate 20s linear infinite;
    border-radius: 50%;
}

@keyframes heroRotate {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

.hero-content {
    max-width: 1300px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.alert-icon {
    font-size: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero-title-line1 {
    display: block;
    color: var(--text-primary);
}

.hero-title-line2 {
    display: block;
    font-size: clamp(3.5rem, 8vw, 7rem);
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.hero-title-line3 {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-urgency {
    display: inline-block;
    background: rgba(239, 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 8px 30px rgba(6, 182, 212, 0.3);
    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 15px 40px rgba(6, 182, 212, 0.4);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.4);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
}

/* Load Time Visualization - NEW! */
.speed-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-pretitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

.speed-comparison {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.speed-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
}

.speed-card.slow {
    border-color: rgba(239, 68, 68, 0.4);
}

.speed-card.fast {
    border-color: rgba(6, 182, 212, 0.4);
}

.speed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.3);
}

.speed-label {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.speed-card.slow .speed-label {
    color: var(--accent-red);
}

.speed-card.fast .speed-label {
    color: var(--accent-cyan);
}

.speed-time {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.speed-card.slow .speed-time {
    color: var(--accent-red);
}

.speed-card.fast .speed-time {
    color: var(--accent-cyan);
}

.speed-bar-container {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

.speed-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease-out;
}

.speed-bar.slow {
    width: 100%;
    background: linear-gradient(90deg, var(--accent-red), #DC2626);
}

.speed-bar.fast {
    width: 31.25%; /* 2.5s out of 8s */
    background: var(--gradient-primary);
}

.speed-stats {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.speed-stat {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.speed-stat-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.speed-stat-value {
    font-weight: 800;
}

.speed-card.slow .speed-stat-value {
    color: var(--accent-red);
}

.speed-card.fast .speed-stat-value {
    color: var(--accent-green);
}

/* Conversion Funnel - NEW! */
.funnel-container {
    max-width: 900px;
    margin: 0 auto;
}

.funnel-stage {
    position: relative;
    margin-bottom: 2rem;
}

.funnel-bar {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.funnel-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: width 1.5s ease-out;
}

.funnel-stage:nth-child(1) .funnel-bar::before { width: 100%; }
.funnel-stage:nth-child(2) .funnel-bar::before { width: 30%; }
.funnel-stage:nth-child(3) .funnel-bar::before { width: 12%; }
.funnel-stage:nth-child(4) .funnel-bar::before { width: 12%; }

.funnel-bar:hover {
    transform: translateX(10px);
    border-color: var(--accent-cyan);
}

.funnel-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.funnel-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.funnel-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.funnel-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.funnel-drop {
    text-align: center;
    padding: 1rem 0;
    color: var(--accent-red);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Mobile vs Desktop - NEW! */
.device-comparison {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.device-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
}

.device-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(6, 182, 212, 0.3);
}

.device-header {
    padding: 2rem;
    text-align: center;
    background: var(--gradient-primary);
}

.device-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.device-name {
    font-size: 1.8rem;
    font-weight: 900;
}

.device-body {
    padding: 2.5rem;
}

.device-problem {
    background: rgba(239, 68, 68, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    margin-bottom: 2rem;
}

.problem-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-red);
    margin-bottom: 0.75rem;
}

.problem-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.device-solution {
    background: rgba(6, 182, 212, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-cyan);
}

.solution-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
}

.solution-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tech Stack - NEW! */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tech-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient-button);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.problem-card:hover::before {
    opacity: 0.8;
}

.problem-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(6, 182, 212, 0.4);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.problem-cost-box {
    background: rgba(6, 182, 212, 0.15);
    border-left: 4px solid var(--accent-cyan);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.problem-cost {
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Solution Features */
.solution-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-list-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.feature-item::after {
    content: '→';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-cyan);
    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(6, 182, 212, 0.6);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.4);
}

.feature-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.results-showcase {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    position: sticky;
    top: 120px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.results-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-box {
    padding: 2rem 1.75rem;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
}

.result-box-before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
    border: 2px solid rgba(239, 68, 68, 0.4);
}

.result-box-after {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(20, 184, 166, 0.15));
    border: 2px solid rgba(6, 182, 212, 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: var(--accent-red);
}

.result-box-after .result-label {
    color: var(--accent-cyan);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.result-box-before .result-number {
    color: var(--accent-red);
}

.result-box-after .result-number {
    color: var(--accent-cyan);
}

.result-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.savings-highlight {
    background: var(--gradient-success);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    text-align: center;
}

.savings-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.savings-amount {
    font-size: 3rem;
    font-weight: 900;
}

/* Case Study */
.case-study-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 4rem 3.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
}

.case-study-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.case-study-badge {
    display: inline-block;
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    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(239, 68, 68, 0.15);
    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(239, 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;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
}

.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;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.result-percentage.before {
    color: var(--accent-red);
}

.result-percentage.after {
    color: var(--accent-cyan);
}

.result-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.annual-savings-box {
    background: var(--gradient-success);
    padding: 3rem 2.5rem;
    border-radius: 18px;
    text-align: center;
    color: white;
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

.savings-box-label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.savings-box-amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(6, 182, 212, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.4);
    border-color: var(--accent-cyan);
}

.testimonial-rating {
    font-size: 2rem;
    color: #FFB84D;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.guarantee-card {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
}

.guarantee-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.5);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.guarantee-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guarantee-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.final-cta-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scarcity-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.2);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.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 10px 35px rgba(6, 182, 212, 0.35);
    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 18px 45px rgba(6, 182, 212, 0.45);
}

.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;
    }

    .speed-comparison, .device-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
    }

    .nav-container {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .nav-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
        margin-left: auto;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1.4rem;
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .results-comparison {
        grid-template-columns: 1fr;
    }

    /* Case Study Mobile Optimizations */
    .case-study-container {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .case-study-badge {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
        margin-bottom: 1.5rem;
    }

    .case-study-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .challenge-box {
        padding: 2.25rem 1.75rem;
        margin-bottom: 1.5rem;
    }

    .challenge-label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .challenge-text {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .results-comparison {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .result-column {
        padding: 2.25rem 1.75rem;
    }

    .result-period {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .result-percentage {
        font-size: clamp(2.5rem, 8vw, 3.75rem);
        margin-bottom: 0.4rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .result-desc {
        font-size: 1.1rem;
    }

    .annual-savings-box {
        padding: 2.75rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .savings-box-label {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        padding: 0 0.5rem;
    }

    .savings-box-amount {
        font-size: clamp(2.5rem, 8vw, 4.25rem);
        line-height: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        width: 100vw;
        max-width: 100vw;
    }

    .nav-container {
        padding: 0.75rem 1rem;
        width: 100%;
        max-width: 100%;
    }

    .logo-text {
        font-size: 1.2rem;
        flex-shrink: 1;
        min-width: 0;
    }

    .mobile-menu-btn {
        font-size: 1.5rem;
        padding: 0.4rem;
        flex-shrink: 0;
        margin-left: 0.5rem;
    }

    .mobile-menu {
        top: 55px;
        max-height: calc(100vh - 55px);
        padding: 1rem 1.5rem;
        width: 100vw;
        left: 0;
        right: 0;
    }

    /* Case Study Small Mobile Optimizations */
    .case-study-container {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .case-study-badge {
        font-size: 0.85rem;
        padding: 0.7rem 1.75rem;
        margin-bottom: 1.25rem;
    }

    .case-study-title {
        font-size: 1.9rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }

    .challenge-box {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .challenge-label {
        font-size: 0.85rem;
        margin-bottom: 0.55rem;
    }

    .challenge-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .results-comparison {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .result-column {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .result-period {
        font-size: 0.8rem;
        margin-bottom: 0.55rem;
    }

    .result-percentage {
        font-size: clamp(2rem, 9vw, 3.25rem);
        margin-bottom: 0.35rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .result-desc {
        font-size: 1rem;
    }

    .annual-savings-box {
        padding: 2rem 1.25rem;
        border-radius: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .savings-box-label {
        font-size: 0.95rem;
        margin-bottom: 0.55rem;
        padding: 0 0.25rem;
        letter-spacing: 1.5px;
    }

    .savings-box-amount {
        font-size: clamp(2rem, 10vw, 3.5rem);
        line-height: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.25rem;
        letter-spacing: -1px;
    }
}

.footer {
    position: relative;
    background: rgba(10, 10, 26,0.85);
    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;
}
