:root {
    --nav-bg: rgba(3, 0, 20, 0.85);
    --primary-bg: #030014;
    --secondary-bg: rgba(255, 255, 255, 0.01);
    --panel-border: rgba(255, 255, 255, 0.1);
    --panel-shadow: inset 0px 0px 0px 0.93px rgba(255, 255, 255, 0.03);
    --accent-gradient: linear-gradient(90.01deg, #E59CFF -19.95%, #BA9CFF 165.02%, #9CB2FF 350%);
    --accent-hover: linear-gradient(90.01deg, #fcbeff -19.95%, #d1beff 165.02%, #bfceff 350%);
    --text-light: #FFFFFF;
    --text-muted: rgba(239, 237, 253, 0.7);
    --heading-gradient: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --beyond-red: #e31e24;
    --beyond-dark: #030014;
    --beyond-purple: #8b5cf6;
    --beyond-cyan: #06b6d2;
    --transition: all 0.3s cubic-bezier(0.6, 0.04, 0.3, 1);
}

/* Global Subpage Hero Styles */
.services-hero {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--beyond-dark);
}

.services-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('clean_wireframe_earth.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 8rem 2rem 2rem 2rem;
}

.services-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.services-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(37.74% 81.78% at 50% 26.56%, rgba(148, 101, 255, 0.08) 0%, rgba(3, 0, 20, 0) 100%);
    scrollbar-gutter: stable;
    -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.gradient-text {
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    scroll-margin-top: 100px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #030014;
    border: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(186, 156, 255, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186, 156, 255, 0.4);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- NEW SCREENSHOT BASED STYLES --- */

/* NavBar New Layout */
/* --- NEW SCREENSHOT BASED STYLES --- */

/* NavBar New Layout */
.new-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: none;
    border-bottom: none;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.nav-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 3rem;
    max-width: 100%;
    margin: 0;
}

.logo {
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 65px;
    width: auto;
    mix-blend-mode: screen;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    /* Base for underline */
    padding: 10px 0;
    transition: color 0.3s ease;
}

/* Refined sliding underline hover effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, #ef4444, #BA9CFF);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover {
    color: var(--beyond-cyan);
}

.nav-links a.active {
    color: var(--beyond-cyan) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Modern Redesign */
.desktop-centered-hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-overlay-fade {
    position: absolute;
    inset: 0;
    background-image: url('global-earth.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
    /* This mask ensures it fades out entirely allowing body backgrounds to bleed through perfectly flawlessly */
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
}

.hero-overlay-fade::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.hero-layout-centered {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
}

.hero-main-title-centered {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.huge-text-centered {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
    color: #ffffff;
}

.no-wrap-phrase {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .no-wrap-phrase {
        white-space: normal;
        /* Allow wrap only on mobile to avoid horizontal break */
    }
}

.light-gradient-text {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 50%, #94a3b8 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: flowLight 4s ease-in-out infinite alternate;
}

.red-gradient-text {
    background: linear-gradient(135deg, #e31e24 0%, #ff2e35 50%, #e31e24 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    animation: flowRed 4s ease-in-out infinite alternate;
}

.brand-red-text {
    color: #e31e24 !important;
    background: none !important;
    -webkit-text-fill-color: #e31e24 !important;
    /* Removed black drop-shadow to let the red halo shine */
}

.pure-white {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-clip: unset !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

@keyframes exactNeonFlicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow: 0 0 10px rgba(227, 30, 36, 0.9), 0 0 20px rgba(227, 30, 36, 0.7), 0 0 45px rgba(227, 30, 36, 0.6);
        opacity: 1;
    }

    20%,
    24%,
    55% {
        text-shadow: none;
        opacity: 0.3;
    }
}

.neon-flicker {
    animation: exactNeonFlicker 3s infinite alternate;
}

@keyframes flowLight {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

@keyframes flowRed {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

.hero-subtext-centered {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-subtext-centered p {
    font-size: clamp(0.85rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.conic-gradient-btn {
    position: relative;
    padding: 12px 36px;
    border-radius: 50px;
    z-index: 1;
    overflow: hidden;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    /* No more underlines */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* The rotating 'light' layer (Fierce Red/White sweep) */
.conic-gradient-btn::before {
    content: '';
    position: absolute;
    width: 250%;
    height: 500%;
    /* Even longer for sharper flash */
    top: -200%;
    left: -75%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            transparent 80%,
            rgba(255, 255, 255, 0.1) 85%,
            rgba(255, 255, 255, 0.4) 92%,
            rgba(255, 255, 255, 0.1) 97%,
            transparent 100%);
    z-index: -2;
    animation: conicRotate 4s linear infinite;
    opacity: 0.6;
}

/* The inner background layer (Glassmorphic Red) */
.conic-gradient-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-primary-gold.conic-gradient-btn {
    box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.05);
}

.btn-outline-gold.conic-gradient-btn {
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.3);
}

/* Creating a slight 'glow' variance for the outline version */
.btn-outline-gold.conic-gradient-btn::after {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

@keyframes conicRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.conic-gradient-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px -12px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.conic-gradient-btn:hover::after {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.conic-gradient-btn:active {
    transform: translateY(-1px) scale(0.97);
}

@media (max-width: 1000px) {
    .nav-main-container {
        display: flex;
        justify-content: space-between;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 2rem;
        width: 240px;
        height: auto;
        background-color: rgba(15, 23, 42, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        clip-path: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
    }

    .nav-contact,
    .nav-actions,
    .nav-social {
        display: none;
    }

    .logo,
    .hamburger {
        z-index: 1000;
        position: relative;
    }

    .hamburger {
        display: block;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-primary-gold,
    .btn-outline-gold {
        width: 100% !important;
        text-align: center;
    }

    .huge-text-centered {
        font-size: clamp(2.2rem, 8vw, 3rem);
        padding: 0 0.5rem;
    }
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.model-steps {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-bg);
    border: 1px solid var(--panel-border);
    box-shadow: var(--panel-shadow);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.step-num {
    background: var(--secondary-bg);
    border: 1px solid rgba(186, 156, 255, 0.3);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(186, 156, 255, 0.1);
}

.step p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.about-image-placeholder {
    position: relative;
    height: 500px;
    border-radius: 12px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(186, 156, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(186, 156, 255, 0.1);
}

.glass-card {
    background: var(--secondary-bg);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: var(--panel-shadow);
    border: 1px solid var(--panel-border);
}

.location-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.5rem;
    width: 300px;
    text-align: center;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.glass-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.glass-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.glass-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services */
.services-section {
    background-color: var(--primary-navy);
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-navy);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card ul {
    list-style: none;
    color: var(--text-muted);
}

.service-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Pricing */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-card {
    background: var(--secondary-bg);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--panel-shadow);
    border: 1px solid var(--panel-border);
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-value {
    font-size: 6rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: var(--font-heading);
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    background: rgba(186, 156, 255, 0.1);
    border: 1px solid rgba(186, 156, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

/* Footer */
.footer {
    background-color: var(--nav-bg);
    color: var(--text-light);
    padding: 4rem 0 0;
    border-top: 1px solid var(--panel-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer .tagline {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--panel-border);
    border-radius: 4px;
    transition: var(--transition);
}

.social-link:hover {
    border-color: rgba(186, 156, 255, 0.5);
    background: rgba(186, 156, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Transformation Cards Interactivity */
.transformation-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pain-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05) !important;
    transform: translateY(-5px) !important;
}

.solution-card:hover {
    background: rgba(74, 222, 128, 0.08) !important;
    border-color: rgba(74, 222, 128, 0.4) !important;
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.15) !important;
    transform: translateY(-8px) scale(1.01) !important;
}

.core-promise {
    transition: opacity 1s ease 0.8s, transform 1s ease 0.8s !important;
}

/* --- NEW COMPONENTS --- */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(186, 156, 255, 0.1);
    border: 1px solid rgba(186, 156, 255, 0.3);
    color: #BA9CFF;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.text-gradient-primary {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sector Categories */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sector-card {
    position: relative;
    border-radius: 12px;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    box-shadow: var(--panel-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 50, 0.9) 0%, rgba(186, 156, 255, 0.2) 100%);
    transition: background 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(186, 156, 255, 0.15);
}

.sector-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 50, 0.95) 0%, rgba(186, 156, 255, 0.4) 100%);
}

.sector-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.sector-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.explore-link {
    color: #f39c12;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Background Images for Sectors */
.sector-card[data-category="apparel"] {
    background-image: url('https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=600');
}

.sector-card[data-category="home-textiles"] {
    background-image: url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?w=600');
}

.sector-card[data-category="furniture"] {
    background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=600');
}

.sector-card[data-category="engineering"] {
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=600');
}

.sector-card[data-category="handicrafts"] {
    background-image: url('https://images.unsplash.com/photo-1606722590583-6951b5ea92ad?w=600');
}

.sector-card[data-category="footwear"] {
    background-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=600');
}

.sector-card[data-category="jewelry"] {
    background-image: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=600');
}

.sector-card[data-category="chemicals"] {
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=600');
}

.sector-card[data-category="sports"] {
    background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=600');
}

.sector-card[data-category="stationery"] {
    background-image: url('https://images.unsplash.com/photo-1513542789411-b6a5d4f31634?w=600');
}

.sector-card[data-category="beauty"] {
    background-image: url('https://images.unsplash.com/photo-1596462502278-27bf85033e5a?w=600');
}

.sector-card[data-category="packaging"] {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8ed7c663c0?w=600');
}

/* Modal Subcategories */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 10, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--primary-bg);
    width: 90%;
    max-width: 1100px;
    height: 80vh;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.modal-close-btn:hover {
    color: #fff;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--panel-border);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.modal-sidebar {
    width: 250px;
    border-right: 1px solid var(--panel-border);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-cat {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.sidebar-cat:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.sidebar-cat.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
    font-weight: 600;
}

.modal-content-grid {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
    align-content: flex-start;
}

.subcat-item {
    text-align: center;
}

.subcat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--secondary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid var(--panel-border);
}

.subcat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Process Steps (How it Works) */
.process-steps-container {
    margin-top: 3rem;
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
}

.process-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-details-box {
    margin-bottom: 3rem;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    text-align: left !important;
    border-left: 4px solid #f39c12;
    background: rgba(255, 255, 255, 0.03);
}

.step-details-box h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #3498db;
    background: none;
    -webkit-text-fill-color: #3498db;
}

.step-details-box ul {
    list-style: none;
    padding: 0;
}

.step-details-box li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-details-box li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-size: 0.9rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.step-card:hover .step-indicator {
    border-color: #f39c12;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

.step-indicator {
    width: 45px;
    height: 45px;
    background: var(--primary-bg);
    border: 2px solid #BA9CFF;
    color: var(--text-light);
    border-radius: 5px;
    /* Square edges like screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(186, 156, 255, 0.2);
    transition: var(--transition);
}

.step-card.active .step-indicator {
    background: #f39c12;
    /* Orange highlight */
    border-color: #f39c12;
    color: #fff;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
}

.step-card.active h4 {
    color: var(--text-light);
    font-weight: 700;
}

.step-card h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(186, 156, 255, 0.3);
    margin: 0 10px;
    position: relative;
    top: -15px;
    min-width: 30px;
    z-index: 1;
}

/* Certifications */
.certs-section {
    background-image: linear-gradient(180deg, var(--primary-bg) 0%, rgba(186, 156, 255, 0.03) 100%);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.cert-card {
    text-align: center;
    padding: 3rem 2rem;
}

.cert-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: rgba(186, 156, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon {
    font-size: 2.5rem;
}

.cert-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cert-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cert-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Tools (Toolkit & Calculator) */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.w-100 {
    width: 100%;
}

.bg-gradient-subtle {
    background: linear-gradient(to bottom, rgba(3, 0, 20, 1), rgba(186, 156, 255, 0.05), rgba(3, 0, 20, 1));
}

.mb-loose {
    margin-bottom: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
    flex: 1;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(186, 156, 255, 0.6);
    background: rgba(0, 0, 0, 0.4);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select option {
    background: var(--primary-bg);
    color: var(--text-light);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.toolkit-card,
.calculator-card {
    padding: 3rem;
    text-align: left;
}

.toolkit-card p,
.calculator-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.glass-card-small {
    background: var(--secondary-bg);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.info-icon {
    font-size: 1.8rem;
    background: rgba(186, 156, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.info-text p {
    margin: 0;
    font-weight: 500;
}

.info-text small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.quick-response-banner {
    background: rgba(186, 156, 255, 0.1);
    border-left: 4px solid #BA9CFF;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.quick-response-banner strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #BA9CFF;
}

.quick-response-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-form-container {
    padding: 3rem;
    text-align: left;
}

.footer-brand-mini h3 {
    margin-bottom: 0.5rem;
}

.footer-brand-mini p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {

    .about-grid,
    .tools-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-line {
        width: 2px;
        height: 30px;
        margin: 5px 0;
        top: 0;
    }

    .location-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 1rem;
    }

    .about-image-placeholder {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .huge-text-centered {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
        line-height: 1.2;
    }

    .hero-layout-centered {
        padding-top: 12vh;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-value {
        font-size: 4rem;
    }

    .final-cta-section {
        padding: 3rem 1.5rem;
        margin: 4rem auto;
        border-radius: 24px;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    /* Target generic embedded grid columns that overflow */
    .container {
        padding: 0 1rem;
    }

    section {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }
}

.mouse-tracking-active {
    text-shadow: 0 0 15px rgba(227, 30, 36, 0.9), 0 0 35px rgba(227, 30, 36, 0.6);
    transition: text-shadow 0.15s ease-out !important;
}

.flicker-idle {
    text-shadow: 0 0 10px rgba(227, 30, 36, 0.9), 0 0 20px rgba(227, 30, 36, 0.7), 0 0 45px rgba(227, 30, 36, 0.6);
}

/* Social Glass Dock Footer */
.social-glass-dock {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at center, var(--glow-color, rgba(255, 255, 255, 0.2)) 0%, transparent 80%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.social-btn:hover::before {
    opacity: 0.6;
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.sb-linkedin {
    --glow-color: rgba(10, 102, 194, 0.7);
}

.sb-instagram {
    --glow-color: rgba(225, 48, 108, 0.7);
}

.sb-whatsapp {
    --glow-color: rgba(37, 211, 102, 0.7);
}

/* --- Unified CTA Sections --- */
.final-cta-section {
    margin: 8rem auto;
    text-align: center;
    padding: 5rem 3rem;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(3, 0, 20, 0) 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 1200px;
}

.final-cta-section:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.7);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(3, 0, 20, 0.2) 100%);
    box-shadow: 0 40px 100px rgba(6, 182, 212, 0.25), inset 0 0 40px rgba(6, 182, 212, 0.1);
}

.final-cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.final-cta-section p {
    color: #94a3b8;
    font-size: 1.15rem !important;
    max-width: 700px;
    margin: 0 auto 3rem auto !important;
    line-height: 1.6;
}

.btn-beyond-premium {
    background: var(--beyond-red);
    color: #fff;
    padding: 11px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.btn-beyond-premium:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 45px rgba(227, 30, 36, 0.5);
    filter: brightness(1.1);
}

.badge-premium {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: #c084fc;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
