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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --neon-green: #39ff14;
    --neon-green-dim: rgba(57, 255, 20, 0.15);
    --dark-gray: #2a2a2a;
    --light-gray: #888;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-gray: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(57, 255, 20, 0.25);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

/* Scroll-triggered animation base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.logo .highlight {
    color: var(--neon-green);
}

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    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(--neon-green);
}

.cta-nav {
    background: var(--neon-green);
    color: var(--primary-black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
}

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

.cta-nav:hover {
    color: var(--primary-black) !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    margin-top: 80px;
    padding: 100px 2rem;
    background-color: var(--primary-black);
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-black) 0%, rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.03) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}


@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--neon-green);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

/* Hero Stats with Growth Line Charts */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--secondary-black);
    padding: 2rem 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    transform: translateY(-5px);
}

.stat-graph-line {
    width: 100%;
    height: 80px;
    margin-bottom: 1rem;
}

.growth-chart {
    width: 100%;
    height: 80px;
}

.growth-line {
    filter: drop-shadow(0 0 4px rgba(57, 255, 20, 0.5));
    transition: all 1.2s ease-out;
}

.growth-area {
    transition: d 1.2s ease-out;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 0.3rem;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--primary-black);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-secondary:hover {
    background: var(--neon-green);
    color: var(--primary-black);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-gray);
}

.btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   SERVICES PREVIEW
   ========================================== */
.services-preview {
    padding: 100px 2rem;
    background: var(--primary-black);
}

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

.service-card {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-card:hover::after {
    opacity: 0.15;
    transform: scale(1.1);
}

.service-card.strategy-bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%2339ff14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3Cpath d='M19 9v6'/%3E%3Cpath d='M19 9h-6'/%3E%3C/svg%3E");
}

.service-card.process-bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%2339ff14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='8' height='8' x='3' y='3' rx='2'/%3E%3Cpath d='M7 11v4a2 2 0 0 0 2 2h4'/%3E%3Crect width='8' height='8' x='13' y='13' rx='2'/%3E%3C/svg%3E");
}

.service-card.chatbot-bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%2339ff14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 21 1.9-5.7a8.5 8.5 0 1 1 3.8 3.8z'/%3E%3C/svg%3E");
}

.service-card.data-bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%2339ff14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M21 12H3'/%3E%3Cpath d='M12 21V3'/%3E%3C/svg%3E");
}

.service-card.content-bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%2339ff14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20'/%3E%3C/svg%3E");
}

.service-card.training-bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%2339ff14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.service-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.learn-more {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.learn-more:hover {
    text-decoration: underline;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   INDUSTRY SECTION (SYMMETRIC GRID)
   ========================================== */
.industries {
    padding: 100px 2rem;
    background: var(--secondary-black);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Symmetric override: force exactly 3 columns, equal sizing */
.industry-grid-symmetric {
    grid-template-columns: repeat(3, 1fr);
}

.industry-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

.industry-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.08);
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--neon-green);
}

.industry-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==========================================
   TEAM SECTION (ABOUT.HTML)
   ========================================== */
.team-section {
    padding: 100px 2rem;
    background: var(--primary-black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-grid-single {
    grid-template-columns: 1fr;
    max-width: 500px;
}

.team-card {
    background: var(--secondary-black);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    transform: translateY(-5px);
}

.team-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #111;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.team-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
}

.team-placeholder span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.3;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

/* Industry Detail Split Layout */
.industry-detail-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.industry-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.industry-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.15);
    border: 1px solid var(--border-gray);
}

@media (max-width: 992px) {
    .industry-detail-split {
        grid-template-columns: 1fr;
    }

    .industry-image-container {
        margin-top: 2rem;
    }
}

/* ==========================================
   PROCESS SECTION (Timeline)
   ========================================== */
.process {
    padding: 100px 2rem;
    background: var(--primary-black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

/* Connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-gray);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-black);
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TRUST & TESTIMONIALS (INDEX.HTML)
   ========================================== */
.trust-section {
    padding: 100px 2rem;
    background: var(--secondary-black);
    overflow: hidden;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 4rem;
    padding: 1rem 0;
}

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

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary-black) 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary-black) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
    gap: 4rem;
}

.trust-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-gray);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.trust-logo:hover {
    opacity: 1;
    color: var(--neon-green);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

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

.testimonial-card {
    background: var(--primary-black);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.05);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: var(--border-gray);
    font-weight: 900;
    line-height: 1;
    z-index: 0;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
    position: relative;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--dark-gray);
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--neon-green);
}

.author-info h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

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

/* ==========================================
   PRICING TIERS
   ========================================== */
.pricing-tiers {
    padding: 100px 2rem;
    background: var(--secondary-black);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tier-card {
    background: var(--primary-black);
    padding: 3rem 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.4s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--primary-black);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.tier-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.tier-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-gray);
}

.tier-features li:last-child {
    border-bottom: none;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    margin-top: 80px;
    padding: 80px 2rem;
    background: var(--secondary-black);
    border-bottom: 1px solid var(--border-gray);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* ==========================================
   SERVICE DETAIL PAGES
   ========================================== */
.service-section {
    padding: 80px 2rem;
}

.alt-bg {
    background: var(--secondary-black);
}

.service-detail-grid {
    display: grid;
    gap: 2rem;
}

.service-detail-card {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    transition: border-color 0.3s ease;
}

.service-detail-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

.alt-bg .service-detail-card {
    background: var(--primary-black);
}

.service-detail-card h3 {
    font-size: 1.8rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.service-outcome {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-detail-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-card ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-gray);
}

.service-detail-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* ==========================================
   MANAGED SERVICES
   ========================================== */
.managed-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.managed-card {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    transition: border-color 0.3s ease;
}

.managed-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

.managed-card h3 {
    font-size: 1.6rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.managed-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.managed-card ul {
    list-style: none;
}

.managed-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-gray);
}

.managed-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* ==========================================
   INDUSTRY DETAIL PAGES
   ========================================== */
.industry-detail {
    padding: 80px 2rem;
}

.industry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industry-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.industry-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.industry-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-section {
    padding: 80px 2rem;
}

.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content-centered p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-section {
    padding: 80px 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.4s ease;
}

.expertise-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-3px);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.expertise-card p {
    color: var(--text-gray);
}

/* Story Section */
.story-section {
    padding: 80px 2rem;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlight {
    background: var(--secondary-black);
    border-left: 4px solid var(--neon-green);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 5px;
}

.story-highlight p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-white);
    margin: 0;
}

.story-list {
    list-style: none;
    margin: 1.5rem 0;
}

.story-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.story-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.story-conclusion {
    text-align: center;
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-top: 2rem;
}

/* Track Record */
.track-record {
    padding: 80px 2rem;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-large {
    text-align: center;
    padding: 2rem;
}

.stat-large h3 {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.stat-large p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Why Us */
.why-us-section {
    padding: 80px 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    transition: all 0.4s ease;
}

.why-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-3px);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-main {
    padding: 80px 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.contact-info-section>p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-black);
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    transition: border-color 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

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

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.method-details a {
    color: var(--neon-green);
    text-decoration: none;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-details p {
    color: var(--text-gray);
}

.what-to-expect {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.what-to-expect h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.what-to-expect ul {
    list-style: none;
}

.what-to-expect ul li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-centered {
    max-width: 700px;
    margin: 0 auto;
    background: var(--secondary-black);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.contact-form-section {
    background: var(--secondary-black);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--neon-green);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-black);
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Quick Actions */
.quick-actions {
    padding: 80px 2rem;
    background: var(--secondary-black);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-black);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.4s ease;
}

.action-btn:hover {
    border-color: var(--neon-green);
    transform: translateY(-3px);
}

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

.action-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--neon-green);
}

.action-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--primary-black);
    border-top: 1px solid var(--border-gray);
    padding: 60px 2rem 30px;
}

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

.footer-section h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: var(--text-gray);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid,
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Show hamburger, hide nav menu */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary-black);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        border-left: 1px solid var(--border-gray);
        transition: right 0.35s ease;
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-menu a::after {
        display: none;
    }

    .cta-nav {
        text-align: center;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-graph {
        width: 90px;
        height: 90px;
    }

    .circular-chart {
        width: 90px;
        height: 90px;
    }

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

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .services-grid,
    .industry-grid,
    .industry-grid-symmetric,
    .managed-services-grid {
        grid-template-columns: 1fr;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-content-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .action-buttons {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero {
        padding: 60px 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-graph-line {
        height: 50px;
    }

    .growth-chart {
        height: 50px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .trust-features {
        grid-template-columns: 1fr !important;
    }
}