/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    cursor: none;
}



/* Ground State Animation */
.ground-state-animation {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Nucleus */
.nucleus {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 3;
}

.nucleus-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #4ade80 0%, #22d3ee 50%, #4ade80 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(74, 222, 128, 0.6),
        0 0 40px rgba(34, 211, 238, 0.4),
        0 0 60px rgba(74, 222, 128, 0.2);
    animation: nucleusPulse 2s ease-in-out infinite;
}

/* Energy Rings */
.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.energy-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: energyRingPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    border-color: rgba(74, 222, 128, 0.8);
    animation-delay: 0s;
}

.ring-2 {
    width: 130px;
    height: 130px;
    border-color: rgba(34, 211, 238, 0.6);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(74, 222, 128, 0.4);
    animation-delay: 1s;
}

/* Electron Orbits */
.electron-orbits {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.electron-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 180px;
    height: 180px;
    animation: orbitRotate 4s linear infinite;
}

.orbit-2 {
    width: 220px;
    height: 220px;
    animation: orbitRotate 6s linear infinite reverse;
}

.orbit-3 {
    width: 260px;
    height: 260px;
    animation: orbitRotate 8s linear infinite;
}

/* Electrons */
.electron {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #22d3ee 0%, #4ade80 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
}

.electron-1 {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.electron-2 {
    top: -4px;
    left: 25%;
    transform: translateX(-50%);
}

.electron-3 {
    top: -4px;
    right: 25%;
    transform: translateX(50%);
}

.electron-4 {
    top: -4px;
    left: 16.66%;
    transform: translateX(-50%);
}

.electron-5 {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.electron-6 {
    top: -4px;
    right: 16.66%;
    transform: translateX(50%);
}

/* Quantum Field */
.quantum-field {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.field-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.3) 50%, transparent 100%);
    animation: fieldWave 3s ease-in-out infinite;
}

.field-line-1 {
    width: 100%;
    height: 2px;
    top: 25%;
    left: 0;
    animation-delay: 0s;
}

.field-line-2 {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    animation-delay: 0.5s;
}

.field-line-3 {
    width: 100%;
    height: 2px;
    top: 75%;
    left: 0;
    animation-delay: 1s;
}

.field-line-4 {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    background: linear-gradient(0deg, transparent 0%, rgba(74, 222, 128, 0.3) 50%, transparent 100%);
    animation-delay: 1.5s;
}

/* Loader Text */
.loader-text {
    text-align: center;
    max-width: 400px;
}

.loader-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.loader-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    animation: subtitleFade 3s ease-in-out infinite;
}

.loading-progress {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.progress-percentage {
    color: #22d3ee;
    font-weight: 600;
}

.progress-status {
    color: rgba(255, 255, 255, 0.6);
    animation: statusCycle 6s ease-in-out infinite;
}

/* Background Quantum Grid */
.quantum-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.08;
}

.grid-lines-horizontal,
.grid-lines-vertical {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-lines-horizontal .grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.05) 50%, transparent 100%);
    animation: gridPulse 8s ease-in-out infinite;
}

.grid-lines-vertical .grid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, rgba(74, 222, 128, 0.05) 50%, transparent 100%);
    animation: gridPulse 8s ease-in-out infinite;
}

.grid-lines-horizontal .grid-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.grid-lines-horizontal .grid-line:nth-child(2) { top: 35%; animation-delay: 0.5s; }
.grid-lines-horizontal .grid-line:nth-child(3) { top: 50%; animation-delay: 1s; }
.grid-lines-horizontal .grid-line:nth-child(4) { top: 65%; animation-delay: 1.5s; }
.grid-lines-horizontal .grid-line:nth-child(5) { top: 80%; animation-delay: 2s; }

.grid-lines-vertical .grid-line:nth-child(1) { left: 20%; animation-delay: 0.25s; }
.grid-lines-vertical .grid-line:nth-child(2) { left: 35%; animation-delay: 0.75s; }
.grid-lines-vertical .grid-line:nth-child(3) { left: 50%; animation-delay: 1.25s; }
.grid-lines-vertical .grid-line:nth-child(4) { left: 65%; animation-delay: 1.75s; }
.grid-lines-vertical .grid-line:nth-child(5) { left: 80%; animation-delay: 2.25s; }

/* Animations */

@keyframes energyRingPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fieldWave {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1.1);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(74, 222, 128, 0.8);
    }
}

@keyframes subtitleFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes statusCycle {
    0% { opacity: 1; }
    16.66% { opacity: 0.5; }
    33.33% { opacity: 1; }
    50% { opacity: 0.5; }
    66.66% { opacity: 1; }
    83.33% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive Design for Loader */
@media screen and (max-width: 768px) {
    .ground-state-animation {
        width: 250px;
        height: 250px;
    }
    
    .nucleus-core {
        width: 60px;
        height: 60px;
    }
    
    .ring-1 { width: 80px; height: 80px; }
    .ring-2 { width: 110px; height: 110px; }
    .ring-3 { width: 140px; height: 140px; }
    
    .orbit-1 { width: 160px; height: 160px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 240px; height: 240px; }
    
    .loader-title {
        font-size: 1.5rem;
    }
    
    .loader-text {
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .ground-state-animation {
        width: 200px;
        height: 200px;
    }
    
    .nucleus-core {
        width: 50px;
        height: 50px;
    }
    
    .ring-1 { width: 70px; height: 70px; }
    .ring-2 { width: 90px; height: 90px; }
    .ring-3 { width: 110px; height: 110px; }
    
    .orbit-1 { width: 130px; height: 130px; }
    .orbit-2 { width: 160px; height: 160px; }
    .orbit-3 { width: 190px; height: 190px; }
    
    .loader-title {
        font-size: 1.5rem;
    }
    
    .loader-container {
        gap: 2rem;
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #22d3ee;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid #22d3ee;
    border-radius: 12px;
    color: #22d3ee;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #22d3ee;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('hero-back.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: -0.6rem auto 0.75rem auto;
    padding: 0.4rem 1rem;
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #22d3ee;
}

.hero-badge .badge-text {
    font-size: 0.85rem;
    color: inherit;
    line-height: 1;
}

.hero-announcement {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
}

.rocket-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    flex-shrink: 0;
    animation: rocketPulse 2s ease-in-out infinite;
    width: 16px;
    height: 16px;
    transform: translateY(3px);
}

@keyframes rocketPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-announcement .rocket-icon {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
    display: block;
}

.announcement-text {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* CTA Process Flow */
.cta-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.process-header {
    color: #4ade80 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.process-step {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.25rem 0 !important;
}

.step-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.step-text {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.process-bubble:hover {
    background: rgba(74, 222, 128, 0.15) !important;
    border-color: rgba(74, 222, 128, 0.4) !important;
    transform: translateY(-2px) !important;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    padding: 0.1em 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-credibility {
    margin-bottom: 2rem;
}

.credibility-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
}


.highlight {
    color: #ffffff;
}

.hero-features {
    margin-bottom: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: #d1d5db;
}

.feature-bullet {
    width: 20px;
    height: 20px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-bullet:after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.primary-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(34, 211, 238, 0.3),
        0 0 20px rgba(74, 222, 128, 0.2);
    animation: breathe 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4);
    animation-play-state: paused;
}

.cta-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    transform: translateY(-2px);
}

.hero-content .privacy-text {
    font-size: 0.75rem !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-top: 1rem !important;
    font-weight: 300 !important;
    display: block !important;
    width: 100% !important;
    opacity: 0.8 !important;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.score-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    cursor: pointer;
}

.score-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.score-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.score-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.overall-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 12px;
    gap: 0.5rem;
}

.score-left {
    flex: 1;
    text-align: left;
}

.score-right {
    text-align: center;
    min-width: 120px;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.score-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-version {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-weight: 400;
}

.featured-metric {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

.featured-metric-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
}

.featured-metric-bar {
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.featured-metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.featured-metric-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-status {
    font-size: 0.85rem;
    color: #9ca3af;
}

.metric-percentage {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
}

.metric-rating {
    font-size: 0.85rem;
    color: #9ca3af;
}

.featured-metric-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.metric-card {
    background: transparent;
    border: none;
    border-radius: 8px;
    height: 60px;
    perspective: 1000px;
    cursor: pointer;
}

.metric-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.metric-card.flipped .metric-card-inner {
    transform: rotateY(180deg);
}

.metric-card-front,
.metric-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-card-front {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-card-front {
    background: rgba(255, 255, 255, 0.05);
    border-color: #4ade80;
    transform: translateY(-2px);
}

.metric-card-back {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(74, 222, 128, 0.3);
    transform: rotateY(180deg);
    text-align: left;
}

.metric-card-back p {
    color: #e5e7eb;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
}

.metric-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 2px;
    transition: width 1s ease-in-out;
}

.video-preview {
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-thumbnail:hover {
    border-color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

.thumbnail-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(34, 211, 238, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .thumbnail-overlay {
    background: rgba(74, 222, 128, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: #000;
    margin-left: 2px;
}

.video-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.video-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e7eb;
}

.video-duration {
    font-size: 0.8rem;
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0 5rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 25px 50px rgba(74, 222, 128, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    border: 2px solid rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-icon svg {
    color: #4ade80;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-color: rgba(74, 222, 128, 0.5);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.benefit-card:hover .benefit-icon svg {
    color: #22d3ee;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes benefitIconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(74, 222, 128, 0);
    }
}

.benefit-card:hover .benefit-icon {
    animation: benefitIconPulse 2s infinite;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Before/After Section */
.before-after-section {
    padding: 3rem 0 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.before-card {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.before-card::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.before-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.after-card {
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.after-card::before {
    background: linear-gradient(90deg, #4ade80, #22d3ee);
}

.after-card:hover {
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.status-icon.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid #ef4444;
}

.status-icon.success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 2px solid #4ade80;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #e5e7eb;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.list-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.list-icon.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.list-icon.success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

/* groundstate Stack Section */
.stack-section {
    padding: 3rem 2rem 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stack-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stack-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stack-subtitle {
    font-size: 1rem;
    color: #4ade80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.stack-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Module Cards */
.stack-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22d3ee, #4ade80);
    border-radius: 20px 20px 0 0;
}

.module-card[data-module="2"]::before {
    background: linear-gradient(90deg, #4ade80, #22d3ee);
}

.module-card[data-module="3"]::before {
    background: linear-gradient(90deg, #a855f7, #22d3ee);
}

.module-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.module-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22d3ee, #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-card[data-module="2"] .module-icon {
    background: linear-gradient(135deg, #4ade80, #10b981);
}

.module-card[data-module="3"] .module-icon {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
}

.module-number {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.module-meta {
    flex: 1;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.module-duration {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.module-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.module-deliverables {
    margin-bottom: 0.75rem;
}

.module-deliverables h4 {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverable-list li {
    color: #e5e7eb;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.deliverable-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.module-preview {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.preview-label {
    color: #a1a1aa;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 40px;
}

.mini-bar {
    width: 8px;
    background: linear-gradient(to top, #22d3ee, #4ade80);
    border-radius: 2px;
    animation: miniBarGrow 1s ease-out;
}

@keyframes miniBarGrow {
    from { height: 0; }
}

/* Mini Interface */
.mini-interface {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.interface-line {
    height: 8px;
    border-radius: 4px;
}

.interface-line.input {
    background: rgba(34, 211, 238, 0.3);
    width: 80%;
}

.interface-line.output {
    background: rgba(74, 222, 128, 0.3);
    width: 90%;
}

/* Mini Roadmap */
.mini-roadmap {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.roadmap-step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.5);
    position: relative;
}

.roadmap-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2px;
    background: rgba(168, 85, 247, 0.3);
}

/* Benefits Section */
.stack-benefits {
    text-align: center;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    border-color: rgba(74, 222, 128, 0.3);
}

.benefit-card .benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.benefit-card p {
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies-section {
    padding: 3rem 2rem 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 2rem;
}

.case-studies-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.case-studies-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 20px 20px 0 0;
}

.case-study-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.case-study-header {
    margin-bottom: 2rem;
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-type {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.company-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-label {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.challenge-section p,
.shift-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    color: #e5e7eb;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.outcome-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.deliverables-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-study-card .deliverable-tag {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

/* Team Section */
.team-section {
    padding: 3rem 2rem 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 2rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    margin: 0;
    line-height: 1.6;
}

.team-content {
    display: flex;
    justify-content: center;
}

.team-member-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 1000px;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.member-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.member-photo {
    position: relative;
}

.photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.credential-badge {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.member-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.member-title {
    font-size: 1.125rem;
    color: #22d3ee;
    margin: 0;
    font-weight: 600;
}

.member-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-section.highlight-section {
    background: rgba(74, 222, 128, 0.05);
    border-left: 4px solid #4ade80;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.story-paragraph {
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.story-paragraph strong {
    color: #ffffff;
    font-weight: 600;
}

.story-paragraph em {
    color: #4ade80;
    font-style: italic;
}

.member-impact {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.impact-item {
    text-align: center;
    padding: 1rem;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 0.25rem;
}

.impact-label {
    font-size: 0.875rem;
    color: #a1a1aa;
    font-weight: 500;
}

.impact-description {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.member-philosophy {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    position: relative;
    padding: 1rem 2rem;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 2rem;
    color: #4ade80;
    font-weight: 700;
}

.philosophy-quote::before {
    position: absolute;
    left: 0;
    top: 0;
}

.philosophy-quote::after {
    position: absolute;
    right: 0;
    bottom: -0.5rem;
}

/* Services Section */
.services-section {
    padding: 3rem 2rem 6rem 2rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.03) 0%, rgba(34, 211, 238, 0.03) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card[data-service="1"]::before {
    background: linear-gradient(90deg, #4ade80, #10b981);
}

.service-card[data-service="2"]::before {
    background: linear-gradient(90deg, #22d3ee, #0891b2);
}

.service-card[data-service="3"]::before {
    background: linear-gradient(90deg, #a855f7, #7c3aed);
}

.service-card[data-service="4"]::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-number {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    color: #000;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-card[data-service="1"] .service-number {
    background: linear-gradient(135deg, #4ade80, #10b981);
}

.service-card[data-service="2"] .service-number {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.service-card[data-service="3"] .service-number {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.service-card[data-service="4"] .service-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-title-group {
    flex: 1;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.service-tagline {
    font-size: 1rem;
    color: #4ade80;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-description {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.service-includes,
.service-solves {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.includes-title,
.solves-title {
    color: #22d3ee;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solves-title {
    color: #f59e0b;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    color: #e5e7eb;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.includes-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solves-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.solve-tag {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.services-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    cursor: none;
}



/* Ground State Animation */
.ground-state-animation {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Nucleus */
.nucleus {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 3;
}

.nucleus-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #4ade80 0%, #22d3ee 50%, #4ade80 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(74, 222, 128, 0.6),
        0 0 40px rgba(34, 211, 238, 0.4),
        0 0 60px rgba(74, 222, 128, 0.2);
    animation: nucleusPulse 2s ease-in-out infinite;
}

/* Energy Rings */
.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.energy-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: energyRingPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    border-color: rgba(74, 222, 128, 0.8);
    animation-delay: 0s;
}

.ring-2 {
    width: 130px;
    height: 130px;
    border-color: rgba(34, 211, 238, 0.6);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(74, 222, 128, 0.4);
    animation-delay: 1s;
}

/* Electron Orbits */
.electron-orbits {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.electron-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 180px;
    height: 180px;
    animation: orbitRotate 4s linear infinite;
}

.orbit-2 {
    width: 220px;
    height: 220px;
    animation: orbitRotate 6s linear infinite reverse;
}

.orbit-3 {
    width: 260px;
    height: 260px;
    animation: orbitRotate 8s linear infinite;
}

/* Electrons */
.electron {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #22d3ee 0%, #4ade80 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
}

.electron-1 {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.electron-2 {
    top: -4px;
    left: 25%;
    transform: translateX(-50%);
}

.electron-3 {
    top: -4px;
    right: 25%;
    transform: translateX(50%);
}

.electron-4 {
    top: -4px;
    left: 16.66%;
    transform: translateX(-50%);
}

.electron-5 {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.electron-6 {
    top: -4px;
    right: 16.66%;
    transform: translateX(50%);
}

/* Quantum Field */
.quantum-field {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.field-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.3) 50%, transparent 100%);
    animation: fieldWave 3s ease-in-out infinite;
}

.field-line-1 {
    width: 100%;
    height: 2px;
    top: 25%;
    left: 0;
    animation-delay: 0s;
}

.field-line-2 {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    animation-delay: 0.5s;
}

.field-line-3 {
    width: 100%;
    height: 2px;
    top: 75%;
    left: 0;
    animation-delay: 1s;
}

.field-line-4 {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    background: linear-gradient(0deg, transparent 0%, rgba(74, 222, 128, 0.3) 50%, transparent 100%);
    animation-delay: 1.5s;
}

/* Loader Text */
.loader-text {
    text-align: center;
    max-width: 400px;
}

.loader-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.loader-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    animation: subtitleFade 3s ease-in-out infinite;
}

.loading-progress {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.progress-percentage {
    color: #22d3ee;
    font-weight: 600;
}

.progress-status {
    color: rgba(255, 255, 255, 0.6);
    animation: statusCycle 6s ease-in-out infinite;
}

/* Background Quantum Grid */
.quantum-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.08;
}

.grid-lines-horizontal,
.grid-lines-vertical {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-lines-horizontal .grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.05) 50%, transparent 100%);
    animation: gridPulse 8s ease-in-out infinite;
}

.grid-lines-vertical .grid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, rgba(74, 222, 128, 0.05) 50%, transparent 100%);
    animation: gridPulse 8s ease-in-out infinite;
}

.grid-lines-horizontal .grid-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.grid-lines-horizontal .grid-line:nth-child(2) { top: 35%; animation-delay: 0.5s; }
.grid-lines-horizontal .grid-line:nth-child(3) { top: 50%; animation-delay: 1s; }
.grid-lines-horizontal .grid-line:nth-child(4) { top: 65%; animation-delay: 1.5s; }
.grid-lines-horizontal .grid-line:nth-child(5) { top: 80%; animation-delay: 2s; }

.grid-lines-vertical .grid-line:nth-child(1) { left: 20%; animation-delay: 0.25s; }
.grid-lines-vertical .grid-line:nth-child(2) { left: 35%; animation-delay: 0.75s; }
.grid-lines-vertical .grid-line:nth-child(3) { left: 50%; animation-delay: 1.25s; }
.grid-lines-vertical .grid-line:nth-child(4) { left: 65%; animation-delay: 1.75s; }
.grid-lines-vertical .grid-line:nth-child(5) { left: 80%; animation-delay: 2.25s; }

/* Animations */

@keyframes energyRingPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fieldWave {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1.1);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(74, 222, 128, 0.8);
    }
}

@keyframes subtitleFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes statusCycle {
    0% { opacity: 1; }
    16.66% { opacity: 0.5; }
    33.33% { opacity: 1; }
    50% { opacity: 0.5; }
    66.66% { opacity: 1; }
    83.33% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive Design for Loader */
@media screen and (max-width: 768px) {
    .ground-state-animation {
        width: 250px;
        height: 250px;
    }
    
    .nucleus-core {
        width: 60px;
        height: 60px;
    }
    
    .ring-1 { width: 80px; height: 80px; }
    .ring-2 { width: 110px; height: 110px; }
    .ring-3 { width: 140px; height: 140px; }
    
    .orbit-1 { width: 160px; height: 160px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 240px; height: 240px; }
    
    .loader-title {
        font-size: 1.5rem;
    }
    
    .loader-text {
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .ground-state-animation {
        width: 200px;
        height: 200px;
    }
    
    .nucleus-core {
        width: 50px;
        height: 50px;
    }
    
    .ring-1 { width: 70px; height: 70px; }
    .ring-2 { width: 90px; height: 90px; }
    .ring-3 { width: 110px; height: 110px; }
    
    .orbit-1 { width: 130px; height: 130px; }
    .orbit-2 { width: 160px; height: 160px; }
    .orbit-3 { width: 190px; height: 190px; }
    
    .loader-title {
        font-size: 1.5rem;
    }
    
    .loader-container {
        gap: 2rem;
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #22d3ee;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid #22d3ee;
    border-radius: 12px;
    color: #22d3ee;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #22d3ee;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('hero-back.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-announcement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 0.75rem auto;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 12px;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-announcement:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.5);
    transform: translateY(-2px);
}

.announcement-badge {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.announcement-link:hover {
    color: #4ade80;
}

.hero-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rocket-icon {
    color: #4ade80;
    flex-shrink: 0;
    animation: rocketPulse 2s ease-in-out infinite;
    width: 16px;
    height: 16px;
}

@keyframes rocketPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.announcement-text {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* CTA Process Flow */
.cta-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.process-header {
    color: #4ade80 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.process-step {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.25rem 0 !important;
}

.step-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.step-text {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.process-bubble:hover {
    background: rgba(74, 222, 128, 0.15) !important;
    border-color: rgba(74, 222, 128, 0.4) !important;
    transform: translateY(-2px) !important;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    padding: 0.1em 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-credibility {
    margin-bottom: 2rem;
}

.credibility-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
}


.highlight {
    color: #ffffff;
}

.hero-features {
    margin-bottom: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: #d1d5db;
}

.feature-bullet {
    width: 20px;
    height: 20px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-bullet:after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.primary-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(34, 211, 238, 0.3),
        0 0 20px rgba(74, 222, 128, 0.2);
    animation: breathe 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4);
    animation-play-state: paused;
}

.cta-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    transform: translateY(-2px);
}

.hero-content .privacy-text {
    font-size: 0.75rem !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-top: 1rem !important;
    font-weight: 300 !important;
    display: block !important;
    width: 100% !important;
    opacity: 0.8 !important;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.score-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    cursor: pointer;
}

.score-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.score-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.score-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.overall-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 12px;
    gap: 0.5rem;
}

.score-left {
    flex: 1;
    text-align: left;
}

.score-right {
    text-align: center;
    min-width: 120px;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.score-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-version {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-weight: 400;
}

.featured-metric {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

.featured-metric-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
}

.featured-metric-bar {
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.featured-metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.featured-metric-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-status {
    font-size: 0.85rem;
    color: #9ca3af;
}

.metric-percentage {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
}

.metric-rating {
    font-size: 0.85rem;
    color: #9ca3af;
}

.featured-metric-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.metric-card {
    background: transparent;
    border: none;
    border-radius: 8px;
    height: 60px;
    perspective: 1000px;
    cursor: pointer;
}

.metric-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.metric-card.flipped .metric-card-inner {
    transform: rotateY(180deg);
}

.metric-card-front,
.metric-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-card-front {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-card-front {
    background: rgba(255, 255, 255, 0.05);
    border-color: #4ade80;
    transform: translateY(-2px);
}

.metric-card-back {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(74, 222, 128, 0.3);
    transform: rotateY(180deg);
    text-align: left;
}

.metric-card-back p {
    color: #e5e7eb;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
}

.metric-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 2px;
    transition: width 1s ease-in-out;
}

.video-preview {
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-thumbnail:hover {
    border-color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

.thumbnail-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(34, 211, 238, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .thumbnail-overlay {
    background: rgba(74, 222, 128, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: #000;
    margin-left: 2px;
}

.video-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.video-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e7eb;
}

.video-duration {
    font-size: 0.8rem;
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0 5rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 25px 50px rgba(74, 222, 128, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    border: 2px solid rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-icon svg {
    color: #4ade80;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-color: rgba(74, 222, 128, 0.5);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.benefit-card:hover .benefit-icon svg {
    color: #22d3ee;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes benefitIconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(74, 222, 128, 0);
    }
}

.benefit-card:hover .benefit-icon {
    animation: benefitIconPulse 2s infinite;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Before/After Section */
.before-after-section {
    padding: 3rem 0 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.before-card {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.before-card::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.before-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.after-card {
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.after-card::before {
    background: linear-gradient(90deg, #4ade80, #22d3ee);
}

.after-card:hover {
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.status-icon.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid #ef4444;
}

.status-icon.success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 2px solid #4ade80;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #e5e7eb;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.list-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.list-icon.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.list-icon.success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

/* groundstate Stack Section */
.stack-section {
    padding: 3rem 2rem 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stack-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stack-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stack-subtitle {
    font-size: 1rem;
    color: #4ade80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.stack-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Module Cards */
.stack-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22d3ee, #4ade80);
    border-radius: 20px 20px 0 0;
}

.module-card[data-module="2"]::before {
    background: linear-gradient(90deg, #4ade80, #22d3ee);
}

.module-card[data-module="3"]::before {
    background: linear-gradient(90deg, #a855f7, #22d3ee);
}

.module-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.module-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22d3ee, #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-card[data-module="2"] .module-icon {
    background: linear-gradient(135deg, #4ade80, #10b981);
}

.module-card[data-module="3"] .module-icon {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
}

.module-number {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.module-meta {
    flex: 1;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.module-duration {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.module-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.module-deliverables {
    margin-bottom: 0.75rem;
}

.module-deliverables h4 {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverable-list li {
    color: #e5e7eb;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.deliverable-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.module-preview {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.preview-label {
    color: #a1a1aa;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 40px;
}

.mini-bar {
    width: 8px;
    background: linear-gradient(to top, #22d3ee, #4ade80);
    border-radius: 2px;
    animation: miniBarGrow 1s ease-out;
}

@keyframes miniBarGrow {
    from { height: 0; }
}

/* Mini Interface */
.mini-interface {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.interface-line {
    height: 8px;
    border-radius: 4px;
}

.interface-line.input {
    background: rgba(34, 211, 238, 0.3);
    width: 80%;
}

.interface-line.output {
    background: rgba(74, 222, 128, 0.3);
    width: 90%;
}

/* Mini Roadmap */
.mini-roadmap {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.roadmap-step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.5);
    position: relative;
}

.roadmap-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2px;
    background: rgba(168, 85, 247, 0.3);
}

/* Benefits Section */
.stack-benefits {
    text-align: center;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    border-color: rgba(74, 222, 128, 0.3);
}

.benefit-card .benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.benefit-card p {
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies-section {
    padding: 3rem 2rem 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 2rem;
}

.case-studies-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.case-studies-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 20px 20px 0 0;
}

.case-study-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.case-study-header {
    margin-bottom: 2rem;
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-type {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.company-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-label {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.challenge-section p,
.shift-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    color: #e5e7eb;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.outcome-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.deliverables-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-study-card .deliverable-tag {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

/* Team Section */
.team-section {
    padding: 3rem 2rem 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 2rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    margin: 0;
    line-height: 1.6;
}

.team-content {
    display: flex;
    justify-content: center;
}

.team-member-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 1000px;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.member-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.member-photo {
    position: relative;
}

.photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.credential-badge {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.member-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.member-title {
    font-size: 1.125rem;
    color: #22d3ee;
    margin: 0;
    font-weight: 600;
}

.member-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-section.highlight-section {
    background: rgba(74, 222, 128, 0.05);
    border-left: 4px solid #4ade80;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.story-paragraph {
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.story-paragraph strong {
    color: #ffffff;
    font-weight: 600;
}

.story-paragraph em {
    color: #4ade80;
    font-style: italic;
}

.member-impact {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.impact-item {
    text-align: center;
    padding: 1rem;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 0.25rem;
}

.impact-label {
    font-size: 0.875rem;
    color: #a1a1aa;
    font-weight: 500;
}

.impact-description {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.member-philosophy {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    position: relative;
    padding: 1rem 2rem;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 2rem;
    color: #4ade80;
    font-weight: 700;
}

.philosophy-quote::before {
    position: absolute;
    left: 0;
    top: 0;
}

.philosophy-quote::after {
    position: absolute;
    right: 0;
    bottom: -0.5rem;
}

/* Services Section */
.services-section {
    padding: 3rem 2rem 6rem 2rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.03) 0%, rgba(34, 211, 238, 0.03) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card[data-service="1"]::before {
    background: linear-gradient(90deg, #4ade80, #10b981);
}

.service-card[data-service="2"]::before {
    background: linear-gradient(90deg, #22d3ee, #0891b2);
}

.service-card[data-service="4"]::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-number {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    color: #000;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-card[data-service="1"] .service-number {
    background: linear-gradient(135deg, #4ade80, #10b981);
}

.service-card[data-service="2"] .service-number {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.service-card[data-service="3"] .service-number {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.service-card[data-service="4"] .service-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-title-group {
    flex: 1;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.service-tagline {
    font-size: 1rem;
    color: #4ade80;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-description {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.service-includes,
.service-solves {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.includes-title,
.solves-title {
    color: #22d3ee;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solves-title {
    color: #f59e0b;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    color: #e5e7eb;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.includes-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solves-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.solve-tag {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.services-footer {
    text-align: center;
    padding: 2rem 0;
}

.services-footer-text {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Philosophy Section */
.philosophy-section {
    padding: 3rem 2rem 6rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 2rem;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.philosophy-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.philosophy-principles {
    max-width: 800px;
    margin: 0 auto;
}

.principle-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.principle-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #a1a1aa;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.principle-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #d1d5db;
}

.principle-tab.active {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    color: #fbbf24;
}

.principle-tab.active .tab-icon {
    filter: grayscale(0);
}

.tab-icon {
    font-size: 1.5rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.principle-content {
    position: relative;
    min-height: 500px;
}

.principle-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.principle-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-icon {
    font-size: 2rem;
}

.panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.panel-description {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    padding: 0 2rem;
}

.principle-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 41, 59, 0.5);
}

.detail-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.detail-title:hover {
    color: #fbbf24;
}

.detail-icon {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.expand-icon {
    font-size: 1.5rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.detail-item.expanded .expand-icon {
    transform: rotate(90deg);
    color: #fbbf24;
}

.detail-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 2rem;
}

.detail-item.expanded .detail-content {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.detail-content p {
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Reimagined 1:1 Impact Section */
.impact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Impact Hero */
.impact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.impact-hero-content {
    max-width: 500px;
}

.impact-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(74, 222, 128, 0.2));
    color: #22d3ee;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.impact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #22d3ee 50%, #4ade80 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.impact-subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Impact Visual */
.impact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-equation {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.equation-part {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.client-part {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.05));
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.nonprofit-part {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.05));
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.equation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.equation-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.equation-sublabel {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
}

.equation-equals {
    font-size: 2rem;
    font-weight: 800;
    color: #22d3ee;
}

/* Impact Dashboard */
.impact-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 6rem;
    backdrop-filter: blur(10px);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-metric {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.impact-metric:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.1);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

/* Impact Process */
.impact-process {
    margin-bottom: 6rem;
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 280px;
}

.step-visual {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #22d3ee, #4ade80);
    color: #000;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
}

.step-animation {
    position: relative;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(34, 211, 238, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.step-icon {
    font-size: 1.5rem;
    background: rgba(34, 211, 238, 0.1);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.process-arrow {
    font-size: 1.5rem;
    color: #22d3ee;
    font-weight: 600;
}

/* Impact Partners */
.impact-partners {
    margin-bottom: 6rem;
}

.partners-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.partner-category {
    display: inline-block;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.partner-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.partner-impact {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

/* Impact Manifesto */
.impact-manifesto {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(74, 222, 128, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-quote {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
}

.manifesto-quote::before,
.manifesto-quote::after {
    content: '"';
    color: #22d3ee;
    font-size: 3rem;
    font-weight: 800;
}

.attribution-text {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
    padding: 3rem 2rem 6rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content {
    margin-bottom: 2rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.final-cta-description {
    font-size: 1.1rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.final-cta-button-container {
    margin-bottom: 0.75rem;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    color: black;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, #22d3ee 0%, #4ade80 100%);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.final-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.final-cta-subtext {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.cta-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.step-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.step-arrow {
    color: #9ca3af;
    font-size: 1.8rem;
    margin: 0 1rem;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-close {
    color: #a1a1aa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0.5rem;
    margin: -0.5rem;
}

.modal-close:hover {
    color: #4ade80;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6b6b !important;
    margin-bottom: 1rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.4;
    font-weight: 500;
}

/* Trusted By Section */
.trusted-by {
    padding: 0.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trusted-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: center;
    color: #ffffff !important;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0.05rem 0;
    margin-top: -0.2rem;
}

.white-logo {
    filter: brightness(0) invert(1) !important;
    max-height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.white-logo:hover {
    opacity: 1;
}

.ibm-logo {
    max-height: 50px;
    filter: brightness(0) invert(1) !important;
}

.ey-logo {
    max-height: 60px !important;
    height: 60px !important;
    filter: brightness(0) invert(1) !important;
}

.logo-item:nth-child(4) img {
    max-height: 70px !important;
    height: 70px !important;
    width: auto !important;
    transform: scale(1.2) !important;
    filter: brightness(0) invert(1) !important;
}

.logo-item {
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 110px;
}

.logo-item:hover {
    opacity: 1;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.company-logo {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    background: transparent;
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
    border-radius: 4px;
    padding: 8px;
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.ibm-logo {
    max-height: 70px;
    max-width: 200px;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: var(--width, 100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-announcement {
        padding: 0.375rem 0.75rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .announcement-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .announcement-link {
        font-size: 0.8rem;
    }

    .hero-visual {
        order: -1;
    }

    .score-card {
        transform: none;
        margin: 0 auto;
        max-width: 400px;
    }

    .hero-cta {
        justify-content: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
    }

    .company-logos {
        gap: 1.5rem;
    }

    .trusted-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .section-intro {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stack-modules {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stack-title {
        font-size: 2rem;
    }

    .stack-description {
        font-size: 1rem;
    }

    .module-card {
        padding: 1.5rem;
    }

    .module-header {
        margin-bottom: 1rem;
    }

    .module-icon {
        width: 40px;
        height: 40px;
    }

    .module-number {
        font-size: 1rem;
    }

    .module-title {
        font-size: 1.1rem;
    }

    .benefits-section {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .benefit-title {
        font-size: 1.3rem;
    }

    .benefit-description {
        font-size: 0.95rem;
    }

    .cta-process {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .process-arrow {
        display: none;
    }

    .process-step {
        width: 100%;
        justify-content: flex-start;
    }

    .case-studies-section {
        padding: 4rem 1rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-study-card {
        padding: 1.5rem;
    }

    .case-study-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .company-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .case-studies-title {
        font-size: 2rem;
    }

    .services-section {
        padding: 4rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .service-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-footer {
        padding: 1.5rem;
    }

    .team-section {
        padding: 4rem 1rem;
    }

    .team-member-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .member-visual {
        order: -1;
    }

    .photo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .member-credentials {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .credential-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .member-name {
        font-size: 1.75rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .impact-item {
        padding: 0.75rem;
    }

    .team-title {
        font-size: 2rem;
    }

    .philosophy-section {
        padding: 4rem 1rem;
    }

    .principle-tabs {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .principle-tab {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .principle-content {
        min-height: 400px;
    }

    .panel-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .panel-title {
        font-size: 1.5rem;
    }

    .panel-description {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .detail-title {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .detail-item.expanded .detail-content {
        padding: 0 1.5rem 1rem 1.5rem;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .impact-section {
        padding: 4rem 0;
    }

    .impact-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .impact-title {
        font-size: 2.5rem;
    }

    .impact-subtitle {
        font-size: 1.125rem;
    }

    .impact-equation {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .equation-equals {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .impact-dashboard {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .impact-metrics {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .impact-metric {
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .process-flow {
        flex-direction: column;
        gap: 3rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .impact-manifesto {
        padding: 3rem 1.5rem;
    }

    .manifesto-quote {
        font-size: 1.5rem;
    }

    .manifesto-quote::before,
    .manifesto-quote::after {
        font-size: 2rem;
    }

    .final-cta-section {
        padding: 4rem 1rem;
    }

    .final-cta-title {
        font-size: 2.5rem;
    }

    .final-cta-description {
        font-size: 1.125rem;
    }

    .final-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .cta-steps {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cta-step {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .cta-step:last-child .step-arrow {
        display: none;
    }

    .step-title {
        white-space: normal;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body p {
        font-size: 1rem;
    }
}



@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        white-space: nowrap;
    }

    .feature-item {
        font-size: 1rem;
    }

    .score-card {
        padding: 0.25rem;
    }

    .score-number {
        font-size: 2.5rem;
    }

    .overall-score {
        margin-bottom: 0.75rem;
        padding-bottom: 1rem;
    }

    .company-logos {
        gap: 1.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .stats-section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    background: #4ade80;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 25px rgba(74, 222, 128, 0.7);
    left: 50%;
    top: 50%;
    opacity: 1;
}

.cursor-follower {
    position: fixed;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    background: transparent;
    left: 50%;
    top: 50%;
    opacity: 0;
}

.cursor.expand {
    width: 6px;
    height: 6px;
    background: #22d3ee;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.8);
}

.cursor-follower.expand {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    scale: 1;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4ade80;
    color: #000;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    white-space: nowrap;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4ade80;
}

.newsletter-description {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.5rem 1.5rem;
    background: #4ade80;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #22d3ee;
    transform: translateY(-1px);
}

.newsletter-privacy {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.location {
    color: #6b7280;
    font-size: 0.9rem;
}

.location {
    color: #9ca3af;
}

/* Footer Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

/* ===========================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   =========================================== */

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.75rem 0;
        display: block;
    }

    .contact-btn {
        margin-top: 1rem;
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        display: inline-block;
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 100px 1rem 60px;
        text-align: center;
    }

    .hero-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }

    .cta-primary {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    /* Company Logos */
    .company-logos {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }

    .company-logo {
        max-height: 45px;
        transition: transform 0.2s ease;
    }

    .logo-item {
        padding: 0.5rem;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .logo-item:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .white-logo {
        max-height: 45px !important;
    }

    .ibm-logo {
        max-height: 50px !important;
    }

    .ey-logo {
        max-height: 55px !important;
        height: 55px !important;
    }

    /* Content Sections */
    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    /* Cards and Grids */
    .benefits-grid,
    .metrics-grid,
    .philosophy-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card,
    .metric-card,
    .principle-card,
    .service-card {
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .score-card {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 20px;
    }

    /* Before/After Section */
    .before-after-section {
        padding: 3rem 1rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .before-after-card {
        padding: 1.5rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    /* Floating Button */
    .floating-ai-score {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .floating-ai-score-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        border-radius: 50px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .benefit-card,
    .metric-card,
    .principle-card,
    .service-card {
        padding: 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-primary, .cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .company-logo {
        max-height: 40px;
        transition: transform 0.2s ease;
    }

    .logo-item {
        padding: 0.4rem;
        border-radius: 6px;
        transition: background-color 0.2s ease;
    }

    .logo-item:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .white-logo {
        max-height: 40px !important;
    }

    .ibm-logo {
        max-height: 45px !important;
    }

    .ey-logo {
        max-height: 50px !important;
        height: 50px !important;
    }
}

/* Floating AI Score Button - Match home page style */
.floating-ai-score {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-ai-score-btn {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
    transition: all 0.3s ease;
}

.floating-ai-score-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.6);
}

.floating-ai-score-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.floating-ai-score-btn:hover .floating-ai-score-arrow {
    transform: translateX(3px);
}

/* Mobile responsiveness for floating button */
@media (max-width: 768px) {
    .floating-ai-score {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .floating-ai-score-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 1.5rem;
    }
}

/* Navigation Email Styling */
.nav-email {
    color: #22d3ee !important;
    font-weight: 500;
}

.nav-email:hover {
    color: #4ade80 !important;
}

/* Modern Services Section */
.services-note {
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(34, 211, 238, 0.1);
}

.service-card.expanded {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(34, 211, 238, 0.2);
}

.service-card.expanded::before {
    opacity: 1;
}

.service-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.service-header-left {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.service-number {
    background: linear-gradient(135deg, #22d3ee, #4ade80);
    color: #000;
    font-size: 1rem;
    font-weight: 800;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.service-title-group {
    flex: 1;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.service-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.service-expand {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: #22d3ee;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    flex-shrink: 0;
}

.service-header:hover .service-expand {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.3);
    transform: scale(1.05);
}

.service-card.expanded .service-expand {
    background: rgba(34, 211, 238, 0.2);
    border-color: rgba(34, 211, 238, 0.4);
    transform: rotate(45deg) scale(1.05);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.service-card.expanded .service-content {
    max-height: 800px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
}

.service-description {
    padding: 0 2rem 1.5rem;
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.service-details {
    padding: 0 2rem 2rem;
    display: grid;
    gap: 2rem;
}

.service-includes,
.service-solves {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-includes:hover,
.service-solves:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.includes-title,
.solves-title {
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.includes-title::before {
    content: '✨';
    font-size: 1rem;
}

.solves-title::before {
    content: '🎯';
    font-size: 1rem;
}

.includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.includes-list li {
    color: #f1f5f9;
    font-size: 0.9rem;
    padding: 0.75rem 1rem 0.75rem 3rem;
    position: relative;
    line-height: 1.5;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4ade80;
    font-weight: 500;
    transition: all 0.2s ease;
}

.includes-list li:hover {
    background: rgba(74, 222, 128, 0.08);
    transform: translateX(2px);
}

.includes-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.solves-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.solve-tag {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.05));
    color: #22d3ee;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solve-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.solve-tag:hover {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(34, 211, 238, 0.1));
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.2);
}

.solve-tag:hover::before {
    left: 100%;
}

/* Modern Responsive Services */
@media screen and (max-width: 1024px) {
    .services-grid {
        gap: 1.25rem;
    }
    
    .service-header {
        padding: 1.75rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .service-card {
        border-radius: 16px;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
    }
    
    .service-header {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .service-header-left {
        gap: 1rem;
    }
    
    .service-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .service-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .service-tagline {
        font-size: 0.85rem;
    }
    
    .service-expand {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.1rem;
    }
    
    .service-description {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .service-details {
        padding: 0 1.5rem 1.5rem;
        gap: 1.5rem;
    }
    
    .service-includes,
    .service-solves {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .includes-list li {
        padding: 0.625rem 0.875rem 0.625rem 2.5rem;
        font-size: 0.85rem;
    }
    
    .includes-list li::before {
        left: 0.875rem;
        top: 0.625rem;
        width: 1rem;
        height: 1rem;
        font-size: 0.7rem;
    }
    
    .solve-tag {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 16px;
    }
    
    .solves-tags {
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .service-header {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-header-left {
        width: 100%;
    }
    
    .service-expand {
        align-self: flex-end;
        margin-top: -2.5rem;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .service-tagline {
        font-size: 0.8rem;
    }
    
    .service-description {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-details {
        padding: 0 1.25rem 1.25rem;
        gap: 1.25rem;
    }
    
    .service-includes,
    .service-solves {
        padding: 1rem;
    }
    
    .includes-title,
    .solves-title {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .includes-list {
        gap: 0.5rem;
    }
    
    .includes-list li {
        padding: 0.5rem 0.75rem 0.5rem 2.25rem;
        font-size: 0.8rem;
    }
    
    .includes-list li::before {
        left: 0.75rem;
        top: 0.5rem;
        width: 0.875rem;
        height: 0.875rem;
        font-size: 0.65rem;
    }
    
    .solve-tag {
        padding: 0.3rem 0.625rem;
        font-size: 0.7rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
    font-size: 1.5rem;
    color: #22d3ee;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: #d1d5db;
    list-style: none;
}

.faq-answer li {
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
}

.faq-answer li::before {
    content: '•';
    color: #22d3ee;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.faq-answer strong {
    color: #4ade80;
}

/* Simplified Philosophy Cards */
.principle-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.1);
}

.principle-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.principle-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.principle-card-description {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.philosophy-cta {
    text-align: center;
}

.philosophy-link {
    color: #22d3ee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.philosophy-link:hover {
    color: #4ade80;
    transform: translateX(5px);
}

/* Responsive principle cards */
@media screen and (max-width: 768px) {
    .principle-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .principle-card {
        padding: 1.5rem;
    }
    
    .principle-card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .principle-card-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .principle-card-description {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .principle-card {
        padding: 1.75rem;
    }
    
    .principle-card-title {
        font-size: 1.375rem;
    }
}

/* Assessment Demo Popup Styles */
.assessment-demo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 2rem 6rem 2rem;
}

.popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 99998;
}

.assessment-demo-container {
    position: relative;
    max-width: 595px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: popupSlideIn 0.3s ease-out;
    z-index: 99999;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10001;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.demo-steps {
    margin-bottom: 2rem;
}

.demo-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.demo-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Demo Form Styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-input {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
}

.demo-input option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.demo-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Demo Questions Styles */
.demo-questions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.question-item label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.demo-rating, .demo-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rating-option, .option-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: default;
    transition: all 0.2s ease;
}

.rating-option.selected, .option-item.selected {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    color: #ffffff;
    border-color: transparent;
}

/* Demo Checklist Styles */
.demo-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4ade80;
}

.checklist-item label {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

/* Demo Slider Styles */
.demo-slider-container {
    margin-bottom: 0.75rem;
}

.demo-slider-container label {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.demo-slider {
    position: relative;
}

.slider-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: default;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Demo Results Styles */
.demo-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.result-score {
    display: flex;
    justify-content: center;
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    border-radius: 50%;
    color: #ffffff;
}

.score-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-align: center;
}

.result-insights, .result-actions {
    width: 100%;
}

.result-insights h4, .result-actions h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.result-insights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-insights li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.result-insights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.action-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-icon {
    font-size: 1.1rem;
}

.action-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Demo Navigation Styles */
.demo-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.demo-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.demo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.demo-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.demo-btn-primary {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    color: #ffffff;
    border: none;
}

.demo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.demo-btn-accent {
    background: linear-gradient(135deg, #22d3ee 0%, #4ade80 100%);
    color: #ffffff;
    border: none;
}

.demo-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}

/* Demo Footer */
.demo-footer {
    text-align: center;
}

.demo-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Design for Assessment Demo */
@media screen and (max-width: 768px) {
    .assessment-demo-popup {
        padding: 3.5rem 1rem 5rem 1rem;
    }
    
    .assessment-demo-container {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0;
    }
    
    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .demo-title {
        font-size: 1.5rem;
        padding-right: 2rem; /* Make room for close button */
    }
    
    .demo-rating, .demo-options {
        flex-direction: column;
    }
    
    .rating-option, .option-item {
        text-align: center;
    }
    
    .demo-navigation {
        flex-direction: column;
    }
    
    .demo-btn {
        width: 100%;
    }
    
    .score-circle {
        width: 100px;
        height: 100px;
    }
    
    .score-number {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .assessment-demo-popup {
        padding: 3rem 0.5rem 4rem 0.5rem;
    }
    
    .assessment-demo-container {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .demo-title {
        font-size: 1.5rem;
    }
    
    .demo-subtitle {
        font-size: 0.9rem;
    }
}

/* Home button styling */
.nav-link:first-child {
    color: #ffffff !important;
    font-size: 1.1rem;
}

/* Modern Static Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

/* Hide scroll indicator when popup is open */
body.popup-open .scroll-indicator {
    display: none !important;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(-50%) translateY(-3px);
}

.scroll-indicator:hover .scroll-arrow {
    transform: translateY(2px);
}

.scroll-indicator:hover .scroll-text {
    opacity: 1;
    transform: translateY(0);
}

/* Modern scroll arrow with subtle effects */
.scroll-arrow {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: modernPulse 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow::before {
    opacity: 1;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

/* Scroll text with fade-in effect */
.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

/* Progress dots indicator */
.scroll-progress {
    display: flex;
    gap: 4px;
    margin-top: 0.5rem;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: rgba(34, 211, 238, 0.8);
    transform: scale(1.2);
}

/* Modern animations */
@keyframes modernPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(34, 211, 238, 0.4);
        border-color: rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(34, 211, 238, 0.2);
        border-color: rgba(34, 211, 238, 0.6);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator show/hide animations */
.scroll-indicator.show {
    animation: slideInUp 0.4s ease-out;
}

.scroll-indicator.hide {
    animation: slideOutDown 0.3s ease-in;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Enhanced mobile scroll indicator states */
@media screen and (max-width: 768px) {
    .scroll-indicator {
        animation: fadeInUp 0.6s ease-out 1s both;
    }
    
    .scroll-indicator.show {
        animation: slideInUp 0.3s ease-out;
    }
    
    .scroll-indicator.hide {
        animation: slideOutDown 0.2s ease-in;
    }
    
    /* Improve touch targets */
    .scroll-indicator {
        min-height: 60px;
        min-width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    /* Subtle parallax effect on mobile */
    .scroll-indicator {
        will-change: transform, opacity;
        transform-style: preserve-3d;
    }
    
    /* Enhanced backdrop blur for better visibility */
    .scroll-arrow {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    /* Better contrast for mobile */
    .scroll-text {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    /* Ensure no old animations are applied on mobile */
    .scroll-indicator * {
        animation-duration: 4s !important;
        animation-timing-function: ease-in-out !important;
        animation-iteration-count: infinite !important;
    }
    
    /* Override any potential old bounce animations */
    @media screen and (max-width: 768px) {
        .scroll-arrow {
            animation: modernPulse 4s ease-in-out infinite !important;
            animation-name: modernPulse !important;
        }
    }
}

/* Logo Image Styling */
.logo-image {
    height: 40px;
    width: auto;
}

/* Case Study Modal */
.case-study-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.case-study-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Preview-only styling for case study cards */
.case-study-card {
    cursor: pointer;
}

.case-study-preview {
    display: block;
}

.case-study-full {
    display: none !important;
}

.case-study-card.expanded .case-study-preview {
    display: none;
}

.case-study-card.expanded .case-study-full {
    display: block !important;
}

/* Mobile Scroll Lock - Prevent Horizontal Scrolling */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    /* Show scroll indicator on mobile with adjusted positioning */
    .scroll-indicator {
        display: flex !important;
        bottom: 1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: absolute !important;
        z-index: 10 !important;
    }
    
    .scroll-indicator:active {
        transform: translateX(-50%) scale(0.95);
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(25px);
        border: 2px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        animation: modernPulse 4s ease-in-out infinite !important;
        /* Ensure no old bounce animations */
        animation-name: modernPulse !important;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.5;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .scroll-progress {
        gap: 6px;
    }
    
    .scroll-dot {
        width: 6px;
        height: 6px;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all containers don't exceed viewport width */
    .container, .hero-container, .stack-container, 
    .faq-container, .team-container, .footer-container {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Prevent any element from causing horizontal overflow */
    img, video, iframe, canvas, svg {
        max-width: 100% !important;
        height: auto;
    }
    
    /* Lock table scrolling if any exist */
    table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}

/* Additional mobile scroll prevention for very small screens */
@media screen and (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y; /* Allow only vertical panning */
    }
    
    /* Prevent horizontal scrolling on touch devices */
    body {
        position: fixed;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    /* Allow scrolling for main content */
    main, section {
        position: relative;
        overflow-x: hidden;
    }
}