/* Design Tokens */
:root {
    /* Colors */
    --clr-primary-bg: #0B1220;
    --clr-accent-cyan: #22D3EE;
    --clr-accent-indigo: #818CF8;
    --clr-accent-purple: #6D28D9;
    --clr-glass-bg: rgba(255, 255, 255, 0.04);
    --clr-glass-border: rgba(255, 255, 255, 0.1);

    --clr-text-primary: #FFFFFF;
    --clr-text-secondary: rgba(255, 255, 255, 0.75);
    --clr-text-muted: rgba(255, 255, 255, 0.5);

    /* Spacing - Standardized */
    --container-max-width: 1440px;
    --section-padding-lg: 120px;
    --section-padding-md: 80px;
    --section-padding-sm: 40px;

    --container-padding-desktop: 60px;
    --container-padding-tablet: 48px;
    --container-padding-mobile: 24px;

    /* Radius - Consistent */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows - Soft & Premium */
    --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(34, 211, 238, 0.15);

    /* Typography - Fluid */
    --fs-h1: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(2rem, 5vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2rem);
    --fs-body: clamp(1rem, 2vw, 1.125rem);

    --font-heading: 'Space Grotesk',
        sans-serif;
    --font-body: 'Inter',
        sans-serif;
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial;
    /* Lenis handles this */
}

body {
    background-color: var(--clr-primary-bg);
    color: var(--clr-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding-inline: var(--container-padding-desktop);
}

.section-padding {
    padding-block: var(--section-padding-md);
}

.section-padding-lg {
    padding-block: var(--section-padding-lg);
}

.section-padding-sm {
    padding-block: var(--section-padding-sm);
}

.text-accent {
    color: var(--clr-accent-cyan);
}

/* Responsive Utilities */
@media (max-width: 1024px) {
    .container {
        padding-inline: var(--container-padding-tablet);
    }

    .section-padding {
        padding-block: var(--section-padding-tablet);
    }
}

@media (max-width: 768px) {
    .container {
        padding-inline: var(--container-padding-mobile);
    }

    .section-padding {
        padding-block: var(--section-padding-mobile);
    }
}

/* Layout Components */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-glass-border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1rem;
    transition: padding 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-primary-bg);
    background-color: var(--clr-accent-cyan);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--clr-accent-cyan);
    color: var(--clr-primary-bg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--clr-accent-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta .btn-primary {
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-cta .btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    width: 100%;
    background: radial-gradient(circle at center, rgba(109, 40, 217, 0.15) 0%, transparent 60%),
        radial-gradient(circle at center, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: heroGradient 25s ease infinite alternate;
}

@keyframes heroGradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.hero-orb-right {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: orbFloatVertical 15s ease-in-out infinite alternate;
}

.hero-astronaut-v2 {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 380px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    /* Blends the dark background */
    opacity: 0.9;
    animation: astronautFloat 6s ease-in-out infinite alternate;
}

@keyframes astronautFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes orbFloatVertical {
    0% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(30px);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--clr-accent-cyan);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--clr-accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: var(--fs-h1);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-subtitle {
    font-size: var(--fs-body);
    color: var(--clr-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-image-container {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(34, 211, 238, 0.1);
    border: 1px solid var(--clr-glass-border);
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-wrapper:hover .hero-main-img {
    transform: scale(1.03);
}

.hero-img-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* New Centered Hero Styles */
.hero-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.22;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle-main {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--clr-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions-centered {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--clr-accent-cyan);
    color: var(--clr-primary-bg);
}

.btn-primary:hover {
    background: #1ac5dd;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--clr-glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-accent-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--clr-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-astronaut-v2 {
        width: 250px;
        top: 10%;
        right: 0;
        opacity: 0.5;
    }
}

@media (max-width: 500px) {
    .hero-astronaut-v2 {
        display: none;
    }
}


/* Background Orbs & Glows */
.orb,
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.hero-glow {
    filter: blur(120px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--clr-accent-purple), transparent);
    top: 20%;
    right: -100px;
    opacity: 0.2;
    filter: blur(120px);
    animation: orbVertical 20s infinite ease-in-out;
}

@keyframes orbVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(100px);
    }
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--clr-accent-cyan), transparent);
    bottom: 20%;
    left: 10%;
    animation: orbFloat 20s infinite ease-in-out reverse;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--clr-accent-indigo), transparent);
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation: orbPulse 10s infinite alternate ease-in-out;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 40px);
    }
}

@keyframes orbPulse {
    0% {
        transform: scale(1) translate(-50%, -50%);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2) translate(-50%, -50%);
        opacity: 0.5;
    }
}

/* Stats Section */
.stats {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--clr-glass-border);
    border-bottom: 1px solid var(--clr-glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: var(--clr-accent-cyan);
    font-size: 2rem;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    color: var(--clr-text-secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Services Grid Refinement */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--clr-glass-bg);
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(34, 211, 238, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: white;
    background: var(--clr-accent-cyan);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-accent-cyan);
    font-size: 1.25rem;
    transition: all 0.4s ease;
}

/* Process Upgrades */
.process-line-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .process-line-container {
        display: none;
    }
}

.process-step:hover .step-number {
    color: var(--clr-accent-cyan);
    opacity: 0.2;
}

/* CTA Upgrades */
.cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--clr-accent-purple), transparent);
    top: -50%;
    right: -20%;
    filter: blur(120px);
    opacity: 0.3;
}


/* Services Grid Refinement */
.section-header {
    margin-bottom: 2.5rem;
    max-width: 700px;
}


.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--clr-text-secondary);
}

/* Centered Section Headers */
.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-main {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-desc-main {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

/* Clean Service Cards */
.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-clean {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-card-clean:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--clr-accent-cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 211, 238, 0.2);
}

.service-icon-clean {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(34, 211, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-accent-cyan);
    font-size: 1.25rem;
    transition: transform 0.25s ease;
}

.service-card-clean:hover .service-icon-clean {
    transform: scale(1.05);
}

.service-card-clean h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: white;
}

.service-card-clean p {
    font-size: 0.95rem;
    color: var(--clr-text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Process Section - Clean */
.process-grid-clean {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    /* Space for the line */
    position: relative;
}

/* Process Lines */
.process-track {
    position: absolute;
    top: 5px;
    /* Aligned with dots */
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-bar {
    position: absolute;
    top: 5px;
    /* Aligned with dots */
    left: 0;
    width: 0%;
    /* Will be animated */
    height: 1px;
    background: var(--clr-accent-cyan);
    z-index: 0;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

@media (max-width: 1024px) {

    .process-track,
    .process-bar {
        display: none;
    }
}

.process-step-clean {
    position: relative;
    z-index: 1;
    background: transparent;
    opacity: 0;
    /* JS Animation Start State */
    transform: translateY(20px);
    /* JS Animation Start State */
}

/* Timeline Dot */
.process-step-clean::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    /* Aligns with line */
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--clr-primary-bg);
    border: 1px solid var(--clr-accent-cyan);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step-clean:hover::before {
    background: var(--clr-accent-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.step-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.step-number-large::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--clr-accent-cyan);
    opacity: 0.5;
}

.process-step-clean:hover .step-number-large {
    color: rgba(34, 211, 238, 0.1);
    -webkit-text-stroke: 1px var(--clr-accent-cyan);
}

.process-step-clean .step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.process-step-clean .step-desc {
    font-size: 0.95rem;
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-grid-clean::before {
        display: none;
    }
}

@media (max-width: 500px) {
    .process-grid-clean {
        grid-template-columns: 1fr;
    }
}

/* About Section - New Design */
.about-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content-new {
    max-width: 550px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--clr-accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.about-badge i {
    width: 14px;
    height: 14px;
}

.about-description {
    font-size: 1rem;
    color: var(--clr-text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-cyan);
}

.feature-icon-circle i {
    width: 20px;
    height: 20px;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

/* Code Comment Syntax */
.code-comment {
    color: #697098;
    font-style: italic;
}

@media (max-width: 1024px) {
    .about-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content-new {
        max-width: 100%;
    }
}

/* About Section - Clean */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-feature-clean {
    text-align: left;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(34, 211, 238, 0.2);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1rem;
}

.about-feature-clean h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: white;
}

.about-feature-clean p {
    font-size: 0.95rem;
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--clr-glass-bg);
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--clr-accent-cyan);
    box-shadow: 0 10px 40px -10px rgba(34, 211, 238, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--clr-accent-cyan);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: start;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    color: var(--clr-accent-cyan);
    font-weight: 700;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    position: relative;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--clr-accent-cyan);
    background: rgba(34, 211, 238, 0.05);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    background: var(--clr-accent-cyan);
    color: var(--clr-primary-bg);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.2);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.step-desc {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
}

/* Partnership Banner */
.partnership-banner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 500px;
}

.full-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem;
    background: linear-gradient(to top, rgba(11, 18, 32, 0.9), transparent);
    z-index: 2;
}

@media (max-width: 768px) {
    .partnership-banner {
        height: 400px;
    }

    .banner-overlay {
        padding: 2rem;
    }
}

.cta-banner {
    padding-bottom: var(--section-padding-lg);
}

/* Clean CTA Styles */
.cta-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.8), rgba(30, 27, 75, 0.8), rgba(11, 18, 32, 0.8));
    background-size: 200% 200%;
    animation: ctaGradient 10s ease infinite;
    padding: 5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-glass-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

@keyframes ctaGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-title-main {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.cta-subtitle-main {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-content-centered .btn-primary {
    position: relative;
    z-index: 2;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-content-centered .btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.6);
}

/* Optional: Add a glow behind the button */
.cta-content-centered .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.cta-content-centered .btn-primary:hover::before {
    opacity: 0.8;
}

.cta-card {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    border: 1px solid var(--clr-glass-border);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-card p {
    font-size: 1.25rem;
    color: var(--clr-text-secondary);
    margin-bottom: 3rem;
    position: relative;
}

/* Footer */
.footer {
    width: 100%;
    border-top: 1px solid var(--clr-glass-border);
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.partnership-container {
    margin-bottom: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-block: 6rem 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    margin-top: 1.5rem;
    color: var(--clr-text-secondary);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--clr-text-primary);
}

.link-group ul {
    display: grid;
    gap: 1rem;
}

.link-group a {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--clr-accent-cyan);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--clr-glass-border);
    padding-top: 2rem;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    text-align: center;
}

.floating-image {
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Toggle Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header {
        padding-inline: 1.5rem;
    }

    .nav,
    .nav-cta {
        display: none;
    }

    .header.nav-open .nav {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--clr-primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .header.nav-open .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .header.nav-open .mobile-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header.nav-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header.nav-open .mobile-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-toggle {
        display: flex;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin-inline: auto;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Technology Showcase Section */
.tech-showcase {
    background: rgba(255, 255, 255, 0.01);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-header-left {
    text-align: left;
    margin-bottom: 2rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
}

.tech-feature-item i {
    color: var(--clr-accent-cyan);
    width: 20px;
    height: 20px;
}

/* Code Window */
.code-window {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.code-dots span:nth-child(1) {
    background: #ff5f56;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #27c93f;
}

.code-title {
    font-size: 0.875rem;
    color: var(--clr-text-secondary);
    font-family: 'Courier New', monospace;
}

.code-content {
    padding: 1.5rem;
    overflow-x: auto;
    min-height: 380px;
}

.code-content pre {
    margin: 0;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-content code {
    color: #e2e8f0;
}

/* Typing Cursor */
#typing-code::after {
    content: '|';
    color: var(--clr-accent-cyan);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Syntax Highlighting */
.code-keyword {
    color: #22D3EE;
}

.code-variable {
    color: #7dd3fc;
}

.code-string {
    color: #5eead4;
}

.code-function {
    color: #67e8f9;
}

.code-tag {
    color: #22D3EE;
}

.code-attr {
    color: #a5f3fc;
}

/* Footer Updates */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 6rem;
    padding-bottom: 4rem;
}

.footer-brand-section {
    max-width: 350px;
}

.footer-brand-section .logo-icon {
    font-size: 1.25rem;
    padding: 0.4rem 0.8rem;
}

.footer-brand-section .logo-text {
    font-size: 1.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.link-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.link-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-column a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--clr-accent-cyan);
}

.footer-bottom {
    padding-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .code-content {
        font-size: 0.75rem;
    }
}