:root {
    /* Theme: Black & Gold (Infinitude Logo) */
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --primary-light: #FFF0B3;
    --secondary: #111111;
    --accent: #FFEB3B;
    --dark: #0a0a0a;
    --dark-medium: #1a1a1a;
    --dark-light: #2a2a2a;
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #404060;
    --gray-600: #555570;
    --gray: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #E6C200 100%);
    --gradient-dark: linear-gradient(135deg, #111111 0%, #1a1a2e 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 24px rgba(255, 215, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing Scale (4px base) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.0625rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2rem;
    --text-5xl: 2.75rem;

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 300;
    --z-fixed: 500;
    --z-modal: 1000;
    --z-tooltip: 1100;

    /* Accessible Text Colors */
    --text-primary: #111111;
    --text-secondary: #4b5563;
    --text-tertiary: #6b7280;
    --text-muted: #6b7280;
    --text-on-dark: #d1d5db;
    --text-on-dark-muted: #9ca3af;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    font-size: var(--text-sm);
    z-index: var(--z-tooltip);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary-dark);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible Styles */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--gray-400);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--primary);
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-left i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.top-bar-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar-right a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.8rem;
}

.top-bar-right a:hover {
    color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-modal);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

@supports (backdrop-filter: blur(20px)) {
    .navbar {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

.has-topbar .navbar {
    top: 36px;
}

.navbar.scrolled {
    top: 0 !important;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 26px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.logo:hover img {
    opacity: 0.8;
}

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

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--secondary);
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-cta {
    margin-left: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-dark:hover {
    background: var(--dark-medium);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 2rem;
    background: var(--white);
}

.has-topbar .hero {
    padding-top: 116px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-pattern {
    display: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-dark);
    bottom: -150px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    animation: fadeIn 0.6s ease-out 0.1s backwards;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.15s;
}

.title-line:nth-child(2) {
    animation-delay: 0.25s;
}

.title-line:nth-child(3) {
    animation-delay: 0.35s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: var(--text-md);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.75;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.7s backwards;
}

/* ===== Hero Figure Visual (right side) ===== */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-figure-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

/* Glow backdrop behind figure */
.hero-figure-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 40%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -55%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -55%) scale(1.12);
        opacity: 0.7;
    }
}

/* The SVG figure */
.hero-figure {
    position: relative;
    z-index: 2;
    width: 320px;
    animation: heroFloat 6s ease-in-out infinite;
}

.bw-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* Ground shadow */
.hero-figure-shadow {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.18) 0%, transparent 70%);
    animation: shadowPulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: translateX(-50%) scaleX(1);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-50%) scaleX(0.85);
        opacity: 0.35;
    }
}

/* Floating particles */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    z-index: 1;
    pointer-events: none;
}

.hero-particle.p1 {
    width: 10px;
    height: 10px;
    top: 12%;
    right: 8%;
    opacity: 0.7;
    animation: floatParticle1 7s ease-in-out infinite;
}

.hero-particle.p2 {
    width: 6px;
    height: 6px;
    top: 28%;
    left: 5%;
    opacity: 0.5;
    animation: floatParticle2 9s ease-in-out infinite;
}

.hero-particle.p3 {
    width: 14px;
    height: 14px;
    bottom: 25%;
    right: 4%;
    opacity: 0.3;
    animation: floatParticle3 8s ease-in-out infinite;
}

.hero-particle.p4 {
    width: 5px;
    height: 5px;
    top: 45%;
    left: 2%;
    opacity: 0.6;
    animation: floatParticle1 11s ease-in-out infinite reverse;
}

.hero-particle.p5 {
    width: 8px;
    height: 8px;
    bottom: 40%;
    right: 15%;
    opacity: 0.4;
    animation: floatParticle2 6s ease-in-out infinite;
}

.hero-particle.p6 {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 12%;
    opacity: 0.5;
    animation: floatParticle3 10s ease-in-out infinite;
}

@keyframes floatParticle1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(12px, -18px) scale(1.1);
    }

    50% {
        transform: translate(-8px, -30px) scale(0.9);
    }

    75% {
        transform: translate(15px, -12px) scale(1.05);
    }
}

@keyframes floatParticle2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-15px, -20px) scale(1.15);
    }

    66% {
        transform: translate(10px, -35px) scale(0.85);
    }
}

@keyframes floatParticle3 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(-12px, -25px);
        opacity: 0.6;
    }
}

/* Geometric decoration elements */
.hero-geo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-geo.geo-ring {
    width: 60px;
    height: 60px;
    top: 8%;
    left: 0;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite, floatParticle2 8s ease-in-out infinite;
}

.hero-geo.geo-diamond {
    width: 20px;
    height: 20px;
    bottom: 18%;
    left: 8%;
    background: rgba(255, 215, 0, 0.15);
    transform: rotate(45deg);
    animation: floatParticle1 9s ease-in-out infinite;
}

.hero-geo.geo-dots {
    width: 50px;
    height: 50px;
    top: 35%;
    right: 0;
    background-image: radial-gradient(circle, rgba(255, 215, 0, 0.25) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    animation: floatParticle3 12s ease-in-out infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== PAGE HEADER (Sub-pages) ===== */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
    background: var(--dark);
    color: var(--white);
}

.has-topbar .page-header {
    padding-top: 108px;
}

.page-header .hero-background {
    opacity: 0.5;
}

.page-header .hero-pattern {
    display: none;
}

.page-header .gradient-orb {
    opacity: 0.08;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.page-header .hero-title {
    color: var(--white);
}

.page-header .hero-subtitle {
    color: var(--gray-400);
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

/* Gold accent line under page header title */
.page-header .hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services {
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--primary-dark);
    transition: all 0.4s ease;
}

.service-icon svg {
    display: block;
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    /* subtle gold border hint */
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    color: var(--primary);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

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

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ===== ABOUT / STATS ===== */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number .gold {
    color: var(--primary-dark);
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* About Visual */
.about-visual {
    position: relative;
    background: transparent;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-visual::before {
    display: none;
}

.visual-box {
    position: absolute;
    border-radius: var(--radius-lg);
    background: var(--gradient);
    opacity: 0.15;
    animation: boxFloat 6s ease-in-out infinite;
}

.box-1 {
    width: 200px;
    height: 200px;
    top: 30px;
    left: 30px;
}

.box-2 {
    width: 150px;
    height: 150px;
    top: 80px;
    right: 40px;
    animation-delay: -2s;
}

.box-3 {
    width: 180px;
    height: 180px;
    bottom: 30px;
    left: 80px;
    animation-delay: -4s;
}

@keyframes boxFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* ===== METRICS BAR ===== */
.metrics-bar {
    background: var(--dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.metrics-bar::before {
    display: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
}

.metric-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-divider {
    width: 1px;
    background: var(--dark-light);
    margin: 0 auto;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--white);
    padding: 6rem 0;
}

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

.why-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    background: var(--white);
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: all 0.4s ease;
}

.why-icon svg {
    display: block;
    transition: transform 0.4s ease, color 0.4s ease;
}

.why-card:hover .why-icon {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.why-card:hover .why-icon svg {
    transform: scale(1.1);
    color: var(--primary);
}

.why-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

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

.cta-section .gradient-orb {
    opacity: 0.06;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--light);
    padding: 6rem 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--gray);
}

/* ===== APPROACH / PROCESS ===== */
.process-section {
    padding: 6rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}

.process-step:hover .step-number {
    border-color: var(--primary);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.process-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-icon {
    color: var(--primary-dark);
    transition: transform 0.4s ease, color 0.4s ease;
    display: block;
}

.process-step:hover .step-icon {
    color: var(--primary);
    transform: scale(1.1);
}

/* ===== CONTENT PAGES ===== */
.content-section {
    padding: 5rem 0;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-body p {
    font-size: var(--text-md);
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.content-body h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 3rem 0 1.25rem;
    letter-spacing: -0.01em;
}

.content-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.content-intro {
    font-size: var(--text-xl);
    text-align: center;
    margin-bottom: var(--space-12);
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Cards */
.info-box {
    background: var(--light);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border-left: 3px solid var(--primary);
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-box h3 i {
    color: var(--primary-dark);
    font-size: 1.125rem;
}

.info-box p {
    margin-bottom: 0;
}

/* Checklist */
.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.check-list li:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.check-list li i {
    color: var(--primary-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Mission / Vision cards */
.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    margin-top: 2rem;
    transition: var(--transition);
}

.mission-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.mission-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-card h3 i {
    color: var(--primary-dark);
}

.mission-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 5rem 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-form .form-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

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

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--secondary);
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.info-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
}

.info-card h4 i {
    color: var(--primary-dark);
    font-size: 1.125rem;
}

.info-card p {
    color: var(--gray);
    font-size: 0.9375rem;
    padding-left: 2.25rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-col p {
    color: var(--text-on-dark-muted);
    line-height: 1.8;
    font-size: 0.9375rem;
}

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

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col a {
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-description {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--dark-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.875rem;
    color: var(--text-on-dark);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    padding-left: 0;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-dark-muted);
    font-size: 0.9375rem;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--dark-light);
    color: var(--text-on-dark-muted);
    font-size: 0.8125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-on-dark-muted);
    font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
    padding-left: 0;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-bottom {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.zoom-in {
    transform: scale(0.95);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-figure-wrapper {
        max-width: 340px;
        height: 480px;
    }

    .hero-figure {
        width: 260px;
    }

    .hero-figure-glow {
        width: 250px;
        height: 250px;
    }

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

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

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

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

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }

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

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

    .about-visual {
        display: none;
    }

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

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

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

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

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--gray-200);
        gap: 0;
    }

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

    .nav-menu .nav-link {
        padding: 1rem;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-menu .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .top-bar {
        display: none;
    }

    .has-topbar .navbar {
        top: 0;
    }

    .has-topbar .hero,
    .has-topbar .page-header {
        padding-top: 72px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .reveal {
        transition-duration: 0.6s;
    }

    .fade-left,
    .fade-right {
        transform: translateY(20px);
    }
}

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header {
        min-height: 40vh;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-figure,
    .hero-figure-glow,
    .hero-figure-shadow,
    .hero-particle,
    .hero-geo {
        animation: none !important;
    }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--text-on-dark);
    padding: var(--space-4) var(--space-6);
    z-index: var(--z-modal);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
}

.cookie-inner p {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.6;
}

.cookie-inner a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== FORM ENHANCEMENTS ===== */
.form-error {
    color: #dc2626;
    font-size: var(--text-xs);
    margin-top: 0.25rem;
    display: none;
}

.form-success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    color: #16a34a;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--space-4);
}

.privacy-notice {
    background: var(--gray-100);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.privacy-notice a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.consent-group label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}