* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0a0e27;
    --deep-blue: #1a1f3a;
    --electric-blue: #00d4ff;
    --blue-gradient-end: #0099cc;
    --coral: #ff6b6b;
    --cream: #f8f6f0;
    --slate: #64748b;
    --light-bg: #f5f7fa;
    --teal: #2dd4bf;
    --cyan: #38bdf8;
    --amber: #fbbf24;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--midnight);
    overflow-x: hidden;
}

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

nav.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: rgba(10, 14, 39, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    height: 36px;
    width: auto;
    display: block;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-text-main {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cream);
}

.logo-text-sub {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--cream);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--electric-blue);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 31, 58, 0.98);
    min-width: 250px;
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section — Dashboard Panel */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--midnight);
    display: flex;
    align-items: center;
}

.hero-sticky {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dashboard Panel */
.dashboard-panel {
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    width: 520px;
    background: rgba(12, 19, 38, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    padding: 16px;
    opacity: 0.22;
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(6px);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.07);
}

.panel-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 700;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 8px;
    color: #2dd4bf;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.panel-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2dd4bf;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Dashboard grid */
.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dash-grid .full {
    grid-column: span 2;
}

.db-card {
    background: rgba(12, 19, 38, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.07);
    border-radius: 6px;
    padding: 12px 14px;
    overflow: hidden;
}

.db-label {
    font-size: 7.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #475569;
    margin-bottom: 5px;
    white-space: nowrap;
}

.db-value {
    font-size: 24px;
    font-weight: 700;
    color: #94a3b8;
    line-height: 1.1;
}

.db-sub {
    font-size: 8px;
    font-weight: 600;
    margin-top: 3px;
}

.db-sub.up { color: #2dd4bf; }
.db-sub.neutral { color: #475569; }

/* Progress bars */
.prog-track {
    height: 3px;
    background: rgba(56, 189, 248, 0.06);
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    border-radius: 2px;
}

/* Horizontal bars */
.h-bars {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.h-bar-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.h-bar-label {
    font-size: 7px;
    color: #475569;
    min-width: 52px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h-bar-track {
    flex: 1;
    height: 3px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.h-bar-fill {
    height: 100%;
    border-radius: 2px;
}

.h-bar-val {
    font-size: 7px;
    font-weight: 700;
    color: #475569;
    min-width: 24px;
    text-align: right;
}

/* Compare bars */
.compare-group {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compare-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.compare-label {
    font-size: 7px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.compare-bar {
    display: flex;
    height: 5px;
    border-radius: 3px;
    overflow: hidden;
    gap: 1px;
}

.compare-seg {
    height: 100%;
}

/* Ring / donut */
.ring-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.ring-label-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ring-legend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    color: #475569;
}

.ring-legend-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

/* Timeline */
.hero .timeline {
    margin-top: 8px;
    position: relative;
    padding-left: 10px;
}

.hero .timeline::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 2px;
    bottom: 2px;
    width: 1px;
    background: rgba(56, 189, 248, 0.1);
}

.tl-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    position: relative;
}

.tl-item:last-child {
    margin-bottom: 0;
}

.tl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 1px;
    flex-shrink: 0;
    position: relative;
    left: -6.5px;
    opacity: 0.2;
}

.tl-content {
    flex: 1;
    margin-left: -5px;
}

.tl-title {
    font-size: 7.5px;
    color: #475569;
    font-weight: 600;
}

.tl-detail {
    font-size: 6.5px;
    color: rgba(71, 85, 105, 0.5);
    margin-top: 1px;
}

/* Overlays */
.overlay-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--midnight) 0%, rgba(10, 14, 39, 0.97) 32%, rgba(10, 14, 39, 0.7) 55%, rgba(10, 14, 39, 0.25) 78%, rgba(10, 14, 39, 0.4) 100%);
    z-index: 2;
}

.overlay-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--midnight) 0%, transparent 15%, transparent 85%, var(--midnight) 100%);
    z-index: 3;
}

.db-glow {
    position: absolute;
    top: 45%;
    right: 15%;
    width: 450px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero dots */
.hero-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--electric-blue);
    z-index: 5;
    animation: heroPulse 3.5s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.6); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 5% 80px;
    width: 100%;
}

.hero-content > * {
    max-width: 620px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 32px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--electric-blue);
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--coral) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-proof {
    font-size: 14px;
    font-weight: 700;
    color: var(--electric-blue);
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    color: var(--midnight);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::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.5s;
}

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

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

/* Buttons */
.btn {
    padding: 16px 35px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    color: var(--midnight);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-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.5s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-disclaimer {
    margin-top: 16px;
    font-size: 13px;
    font-style: italic;
    color: rgba(148, 163, 184, 0.5);
}

/* Background Experience Section */
/* Background Experience Section */
.experience-section {
    padding: 60px 0 40px;
    background: var(--cream);
    overflow: hidden;
}

.experience-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--midnight);
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: none !important; /* Override reveal transform */
    transition: opacity 0.6s ease-out;
}

.experience-title.visible {
    opacity: 1;
    transform: none !important; /* Override reveal transform */
}

.experience-bullets {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 25px auto 40px;
    opacity: 0;
    transform: none !important;
    transition: opacity 0.6s ease-out 0.2s;
}

.experience-bullets.visible {
    opacity: 1;
    transform: none !important;
}

.experience-bullet {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--midnight);
    padding-left: 25px;
    position: relative;
}

.experience-bullet::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
}

.logo-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px;
    margin: 0 8px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: var(--electric-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.15);
}

.exp-logo-icon {
    width: 20px;
    height: 20px;
    opacity: 0.45;
    flex-shrink: 0;
}

.company-logo-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--midnight);
    white-space: nowrap;
}

/* Industries Showcase Section */
.industries-showcase-section {
    padding: 40px 5% 60px;
    background: var(--cream);
}

.industries-showcase-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--slate);
    text-align: center;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.industries-showcase-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.industries-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.industry-showcase-item.visible {
    opacity: 1;
    transform: scale(1);
}

.industry-showcase-item:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.12);
}

.industry-showcase-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.industry-showcase-item span {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--midnight);
    text-align: center;
}

/* Trust/Stats Section */

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--midnight);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.trust-section {
    padding: 80px 5%;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--midnight);
    font-weight: 400;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--slate);
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 120px 5%;
    background: var(--cream);
    position: relative;
}

.section-container {
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--midnight);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.2s;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Problems Section */
.problems-section {
    padding: 100px 5% 80px;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    padding: 30px;
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    background: rgba(26, 31, 58, 0.8);
}

.problem-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--electric-blue);
    margin-bottom: 12px;
}

.problem-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Why Different Section */
.why-different-section {
    padding: 100px 5% 80px;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    padding: 35px 30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.why-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    color: white;
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.why-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Positioning Section */
.positioning-section {
    padding: 100px 5% 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.positioning-content {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.positioning-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.positioning-intro {
    text-align: center;
    font-size: 1.35rem;
    color: var(--slate);
    margin-bottom: 60px;
    line-height: 1.9;
    font-weight: 400;
}

.positioning-content h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 30px;
    text-align: center;
}

.positioning-list {
    list-style: none;
    margin: 0 auto 50px;
    max-width: 700px;
    background: white;
    padding: 35px 45px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.positioning-list li {
    font-size: 1.08rem;
    color: var(--midnight);
    padding: 14px 0 14px 45px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
}

.positioning-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.positioning-list li::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 22px;
    width: 8px;
    height: 4px;
    border-left: 2.5px solid white;
    border-bottom: 2.5px solid white;
    transform: rotate(-45deg);
}

.positioning-tagline {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--electric-blue);
    font-style: italic;
    margin-top: 50px;
    padding: 35px 40px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

/* Who We Serve Section */
.who-we-serve-section {
    padding: 100px 5% 80px;
    background: white;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.who-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    background: var(--cream);
}

.who-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.who-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.who-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.who-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.who-card:hover .who-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.who-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 15px;
}

.who-card p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 100px 5% 80px;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--electric-blue), var(--coral));
    opacity: 0.4;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

/* Connecting dot on the timeline */
.process-step::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 36px;
    width: 10px;
    height: 10px;
    background: var(--electric-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
    z-index: 1;
}

/* Arrow connector between steps */
.process-step::after {
    content: '↓';
    position: absolute;
    left: 50px;
    bottom: -18px;
    transform: translateX(-50%);
    color: rgba(0, 212, 255, 0.3);
    font-size: 1.2rem;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--electric-blue);
    font-weight: 400;
    min-width: 100px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.process-step:hover .step-number::after {
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.step-content p {
    color: #94a3b8;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 100px 5% 80px;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    display: none;
}

.services-section .section-title {
    color: var(--midnight);
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    color: var(--slate);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.2s;
}

.services-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    background: white;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--electric-blue);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--electric-blue);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--slate);
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 50px 40px;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.services-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-cta h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 15px;
}

.services-cta p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Industries Section */
.industries-section {
    padding: 100px 5% 80px;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--cream);
    cursor: default;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.industry-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.industry-badge svg {
    width: 22px;
    height: 22px;
    color: var(--electric-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.industry-badge:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    background: rgba(26, 31, 58, 0.8);
}

.industry-badge:hover svg {
    transform: scale(1.1);
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 80px 0 80px;
    background: var(--cream);
    overflow: hidden;
}

.tech-stack-section .section-title {
    padding: 0 5%;
}

.tech-stack-section .section-subtitle {
    padding: 0 5%;
}

/* Two-row tool icon carousel */
.tool-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.tool-carousel-row {
    overflow: hidden;
    position: relative;
}

.tool-carousel-row::before,
.tool-carousel-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tool-carousel-row::before {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
}

.tool-carousel-row::after {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
}

.tool-track {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.tool-track-left {
    animation: toolScrollLeft 45s linear infinite;
}

.tool-track-right {
    animation: toolScrollRight 45s linear infinite;
}

.tool-track:hover {
    animation-play-state: paused;
}

@keyframes toolScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes toolScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.tool-icon-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 120px;
    height: 110px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 16px 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tool-icon-item:hover {
    border-color: var(--electric-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}

.tool-icon-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.tool-icon-item:hover img {
    opacity: 1;
}

.tool-icon-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--midnight);
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    max-width: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 5% 80px;
    background: var(--midnight);
}

.testimonials-section .section-title {
    color: var(--cream);
    margin-bottom: 10px;
}

.testimonials-section .section-subtitle {
    color: #94a3b8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card-header {
    margin-bottom: 16px;
}

.testimonial-headline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 8px;
}

.testimonial-company {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 400;
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.testimonial-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.02em;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonial section end */

/* Typical Results Section */
.results-section {
    padding: 100px 5% 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* First row - 3 cards span 2 columns each */
.result-card:nth-child(1),
.result-card:nth-child(2),
.result-card:nth-child(3) {
    grid-column: span 2;
}

/* Second row - center 2 cards with gap */
.result-card:nth-child(4) {
    grid-column: 2 / 4;
}

.result-card:nth-child(5) {
    grid-column: 4 / 6;
}

.result-card {
    text-align: center;
    padding: 50px 25px;
    background: white;
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.result-card:hover {
    transform: translateY(-12px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, rgba(0, 212, 255, 0.02) 100%);
}

.result-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.2rem;
    color: var(--electric-blue);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1;
}

.result-card p {
    color: var(--midnight);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.results-tagline {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--midnight);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    padding: 35px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.results-tagline.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.faq-section .section-container {
    padding: 0 5%;
}

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

.faq-item {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--electric-blue);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--electric-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    border: none;
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.faq-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-cta h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 15px;
}

.faq-cta p {
    color: var(--midnight);
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.faq-cta .btn-primary {
    background: var(--midnight);
    color: var(--cream);
}

.faq-cta .btn-primary:hover {
    background: var(--deep-blue);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Our Approach Section */
.approach-section {
    padding: 100px 5% 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.approach-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.approach-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--midnight);
    margin-bottom: 20px;
    text-align: center;
}

.approach-intro {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: center;
}

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

.approach-list li {
    font-size: 1.05rem;
    color: var(--midnight);
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    border-radius: 50%;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    padding: 35px 45px;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approach-card {
        padding: 35px 25px;
    }

    .approach-icon {
        font-size: 2.5rem;
    }

    .approach-card h3 {
        font-size: 1.4rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.final-cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.final-cta-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--midnight);
    margin-bottom: 20px;
}

.final-cta-content > p {
    font-size: 1.25rem;
    color: var(--midnight);
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--midnight);
    opacity: 0.8;
    font-style: italic;
}

.final-cta-content .btn-primary {
    background: var(--midnight);
    color: var(--cream);
}

.final-cta-content .btn-primary:hover {
    background: var(--deep-blue);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--midnight);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--electric-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--electric-blue);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    height: 36px;
    width: auto;
    display: block;
}

.footer-logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.footer-logo-text-main {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cream);
}

.footer-logo-text-sub {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--cream);
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding: 30px 5% 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive */
/* Contact Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px 40px;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Border beam wrapper */
.popup-content-wrapper {
    position: relative;
    max-width: 600px;
    width: 90%;
    border-radius: 18px;
    padding: 2px;
    overflow: hidden;
}

.popup-content-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 60%,
        var(--electric-blue) 75%,
        var(--blue-gradient-end) 80%,
        transparent 90%,
        transparent 100%
    );
    animation: borderBeamSpin 3s linear infinite;
    z-index: 0;
}

@keyframes borderBeamSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--slate);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: var(--midnight);
    transform: rotate(90deg);
}

/* Popup Logo */
.popup-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.popup-logo-icon {
    height: 35px;
    width: auto;
    display: block;
    object-fit: contain;
}

.popup-logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.popup-logo-text-main {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--midnight);
}

.popup-logo-text-sub {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--slate);
}

.popup-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 10px;
}

.popup-subtitle {
    color: var(--slate);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--slate);
    margin-top: 20px;
    font-style: italic;
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 60px 40px;
    animation: fadeInScale 0.5s ease-out;
    position: relative;
}

#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.form-success-message > * {
    position: relative;
    z-index: 1;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.form-success-message h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 15px;
}

.form-success-message p {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.auto-close-notice {
    font-size: 0.9rem !important;
    color: var(--slate);
    margin-top: 20px !important;
    font-style: italic;
    opacity: 0.8;
}

#countdown {
    font-weight: 700;
    color: var(--electric-blue);
}

#contactForm .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Navigation CTA Link */
.nav-menu .cta-link {
    background: linear-gradient(135deg, var(--electric-blue), var(--blue-gradient-end));
    color: white !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-menu .cta-link::after {
    display: none !important;
}

.nav-menu .cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--midnight);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 50px 0 30px;
    }

    .experience-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .experience-bullets {
        flex-direction: column;
        gap: 15px;
        margin: 20px auto 30px;
        padding: 0 5%;
    }

    .experience-bullet {
        font-size: 0.9rem;
    }

    .logo-track {
        gap: 25px;
    }

    .logo-item {
        height: 80px;
        padding: 0 15px;
    }

    .company-logo-text {
        font-size: 0.95rem;
        padding: 20px 30px;
        min-width: 160px;
    }

    .industries-showcase-section {
        padding: 30px 5% 50px;
    }

    .industries-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-showcase-item {
        padding: 20px 15px;
        gap: 10px;
    }

    .industry-showcase-icon {
        font-size: 2rem;
    }

    .industry-showcase-item span {
        font-size: 0.85rem;
    }

    .tool-icon-item {
        width: 90px;
        height: 90px;
        padding: 12px 6px;
        border-radius: 12px;
    }

    .tool-icon-item img {
        width: 28px;
        height: 28px;
    }

    .tool-icon-item span {
        font-size: 0.6rem;
    }

    .tool-carousel-row::before,
    .tool-carousel-row::after {
        width: 60px;
    }

    .logo-icon {
        height: 30px;
    }

    .logo-text-main {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .logo-text-sub {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .footer-logo-icon {
        height: 30px;
    }

    .footer-logo-text-main {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .footer-logo-text-sub {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 120px 5% 60px;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .dashboard-panel {
        right: -20%;
        width: 380px;
        opacity: 0.12;
        top: 55%;
    }

    .badge {
        font-size: 9px;
        padding: 6px 14px;
    }

    .who-we-serve-section,
    .positioning-section,
    .problems-section,
    .why-different-section,
    .services-section,
    .industries-section,
    .process-section,
    .tech-stack-section,
    .testimonials-section,
    .results-section,
    .approach-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 5% 50px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Reset all column spanning on mobile */
    .result-card:nth-child(1),
    .result-card:nth-child(2),
    .result-card:nth-child(3),
    .result-card:nth-child(4),
    .result-card:nth-child(5) {
        grid-column: auto;
    }

    .result-card {
        padding: 30px 20px;
        min-height: auto;
    }

    .result-card h3 {
        font-size: 2.2rem;
    }

    .result-card p {
        font-size: 0.95rem;
    }

    /* Make 5th card same as others on mobile */
    .result-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .positioning-list,
    .approach-list {
        padding: 30px 25px;
    }

    .positioning-list li,
    .approach-list li {
        font-size: 0.98rem;
        padding: 14px 0 14px 38px;
    }

    .positioning-tagline,
    .approach-tagline {
        font-size: 1.15rem;
        padding: 25px 20px;
    }

    .results-tagline {
        font-size: 1.1rem;
        padding: 25px 20px;
    }

    .popup-content {
        padding: 40px 25px;
    }

    .popup-content-wrapper {
        width: 95%;
    }

    .popup-content h2 {
        font-size: 1.6rem;
    }

    .popup-subtitle {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        gap: 20px;
    }

    .process-step::before {
        left: 30px;
        top: 26px;
        width: 8px;
        height: 8px;
    }

    .process-step::after {
        left: 30px;
    }

    .step-number {
        min-width: 60px;
        font-size: 2rem;
    }

    .step-number::after {
        width: 60px;
        height: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        gap: 15px;
    }

    .industry-badge {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .testimonial-headline {
        font-size: 1.1rem;
    }

    .testimonial-stats {
        gap: 24px;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .tech-badges {
        gap: 10px;
    }

    .tech-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safety fallback: show all reveal elements after 3s if JS hasn't fired */
@keyframes showFallback {
    to { opacity: 1; transform: translateY(0); }
}
.reveal:not(.visible) {
    animation: showFallback 0.6s ease-out 3s forwards;
}
