:root {
    --bg-dark: #09090B;
    --bg-darker: #09090B;
    --bg-panel: rgba(255, 255, 255, 0.03);
    --bg-light: #F5F1EC;
    --bg-warm: #FDFAF7;
    --bg-sand: #EDE8E0;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-dark: rgba(0, 0, 0, 0.1);
    --emerald: #FF7A3D;
    --emerald-dim: rgba(255, 122, 61, 0.15);
    --text-pure: #FFFFFF;
    --text-high-contrast: #F4F4F5;
    --text-dark: #0D0D0F;
    --text-muted: #A1A1AA;
    --text-muted-dark: #71717A;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-head: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}



/* ============================================================
   TYPOGRAPHY & UTILITIES
   ============================================================ */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.03em;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-1000 {
    max-width: 1000px;
}

.max-w-1400 {
    max-width: 1400px;
}

.max-w-500 {
    max-width: 500px;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.border-y {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.border-t {
    border-top: 1px solid var(--border-light);
}

.border-b {
    border-bottom: 1px solid var(--border-light);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-emerald {
    color: var(--emerald) !important;
}

.text-white {
    color: #fff !important;
}

.text-muted {
    color: #A1A1AA !important;
}

.text-4xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.text-xl {
    font-size: 1.25rem;
    font-family: var(--font-head);
    font-weight: 500;
}

.text-lg {
    font-size: 1.125rem;
}

.text-2xl {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-head);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.text-sm {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

.space-y-4 li {
    margin-bottom: 1rem;
}

.nodec {
    text-decoration: none;
}

.ml-auto {
    margin-left: auto;
}

.mobile-hide {
    display: initial;
}

.hover-white:hover {
    color: #FFF !important;
}

.hover-emerald:hover {
    color: var(--emerald) !important;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.inline-block {
    display: inline-flex;
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
    justify-content: center;
}

/* Dark & Light section utilities */
.section-light {
    background: var(--bg-light) !important;
}

.section-warm {
    background: var(--bg-warm) !important;
}

.section-sand {
    background: var(--bg-sand) !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgba(5, 5, 8, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid transparent;
    border-radius: 0px;
    box-sizing: border-box;
    transform-origin: top center;
    transform: scaleX(1) scaleY(1);
}

.navbar.sticky-mode {
    top: 1rem;
    width: 95%;
    max-width: 1200px;
    padding: 0.8rem 1.5rem;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.98);
}

.nav-left,
.nav-right,
.nav-center {
    display: flex;
    align-items: center;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-pure);
    background: rgba(255, 255, 255, 0.08);
}

.nav-brand {
    font-size: 1.5rem;
    font-family: var(--font-head);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-pure);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand::before {
    display: none;
}

.nav-cta {
    background: var(--emerald);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(255, 122, 61, 0.3);
}

.nav-cta:hover {
    background: #ff6420;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(255, 122, 61, 0.5);
    color: #fff;
}

/* Override rotating border for nav-cta specifically */
.nav-cta::before,
.nav-cta::after {
    display: none !important;
}

/* Global Mobile Navbar States (Desktop = hidden/inactive, Mobile = active) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 4px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-fs-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    overflow-y: auto;
    padding: 7rem 1rem 3rem;
    justify-content: flex-start;
}

.mobile-fs-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-fs-menu .nav-link {
    font-size: 1.2rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 1.1rem 2rem;
    width: 85%;
    max-width: 320px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    transform: translateY(20px);
    opacity: 0;
    flex-shrink: 0;
}

.mobile-fs-menu.active .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-fs-menu .nav-link:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-fs-menu .nav-link:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-fs-menu .nav-link:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-fs-menu .nav-link:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-fs-menu .nav-link:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-fs-menu .nav-link:nth-child(6) {
    transition-delay: 0.3s;
}

.mobile-fs-menu .nav-link:nth-child(7) {
    transition-delay: 0.35s;
}

.mobile-fs-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
}

.mobile-fs-menu .nav-link[href="contact.html"] {
    background: var(--emerald);
    color: #fff !important;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 122, 61, 0.3);
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
}

.mobile-fs-menu .nav-link[href="contact.html"]:hover {
    background: #FF6420;
    box-shadow: 0 15px 40px rgba(255, 122, 61, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* ============================================================
   BADGE SYSTEM
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 10px var(--emerald);
    animation: pulse 2s infinite;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(255, 122, 61, 0.1);
    border: 1px solid rgba(255, 122, 61, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--emerald);
}

.outline-badge {
    color: var(--text-pure);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.emerald-badge {
    background: rgba(255, 122, 61, 0.1);
    border-color: var(--emerald);
}

.warning-badge {
    background: rgba(255, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.25);
    color: #FF4444;
}

/* For light sections */
.badge-dark {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--text-dark);
}

.section-badge-dark {
    background: rgba(255, 122, 61, 0.12);
    border: 1px solid rgba(255, 122, 61, 0.3);
    color: #C94E10;
}

/* ============================================================
   PREMIUM DESIGNER HERO
   ============================================================ */
/* ============================================================
   PREMIUM AGENTIC HERO
   ============================================================ */
/* ============================================================
   PORTFOLITE HERO (IMAGE-BASED REBUILD)
   ============================================================ */
.hero-premium.portfolite-rebuild {
    min-height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 60px;
}

/* ── Slow Liquid/Smoke Background ── */
.hero-liquid-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #000;
    pointer-events: none;
}

.smoke-layer {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    filter: url(#smokeFilter);
    opacity: 0.8;
}

.layer-1 {
    animation: smokeFloat 60s infinite linear;
}

.layer-2 {
    animation: smokeFloat 90s infinite linear reverse;
    opacity: 0.4;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
}

@keyframes smokeFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(5%, 5%) scale(1.1) rotate(2deg);
    }

    66% {
        transform: translate(-5%, 2%) scale(0.9) rotate(-2deg);
    }

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

/* ── Hero Container ── */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Pill Badge ── */
.hero-pill-wrap {
    margin-bottom: 2.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
}

/* ── Architectural Typography ── */
.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.2rem);
    font-weight: 400 !important;
    /* Satoshi Regular */
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-family: var(--font-head);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* ── Buttons ── */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 6rem;
}

.btn-hero-primary {
    background: #FFFFFF;
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #FFFFFF;
    font-size: 0.95rem;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #FFFFFF;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Surgical Scroll Indicator ── */
.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    width: 100%;
    max-width: 900px;
    opacity: 0.3;
}

.scroll-lab {
    font-size: 0.75rem;
    white-space: nowrap;
    text-transform: none;
    color: #fff;
    font-weight: 400;
}

.scroll-line {
    flex: 1;
    height: 1px;
    background: #fff;
}

.scroll-mouse-icon {
    color: #fff;
    display: flex;
    align-items: center;
}

/* ── Logo Strip ── */
.hero-logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 100%;
    opacity: 0.4;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-head);
    filter: grayscale(1);
    transition: opacity 0.3s;
}

.hero-logo:hover {
    opacity: 1;
}

.logo-sym {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* ── Grain ── */
.grain-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ── Responsive Refinements ── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-logo-strip {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================================
   STATS — HIGH CONTRAST LIGHT SECTION (ENHANCED)
   ============================================================ */

/* ── Shared light-section texture (stats, process, faq) ── */
.light-textured {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.light-textured::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.022) 0px,
            rgba(0, 0, 0, 0.022) 1px,
            transparent 1px,
            transparent 28px);
}

.stats {
    padding: 0;
    background: var(--bg-light);
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.022) 0px,
            rgba(0, 0, 0, 0.022) 1px,
            transparent 1px,
            transparent 28px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 4rem 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    transition: background 0.3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 122, 61, 0.04);
}

/* Orange top accent bar per stat */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--emerald);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s, width 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
    width: 60px;
}

.stat-num {
    font-size: clamp(3rem, 5vw, 5rem);
    font-family: var(--font-head);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1;
    letter-spacing: -0.05em;
    transition: color 0.3s;
}

.stat-item:hover .stat-num {
    color: var(--text-dark);
}

.stat-label {
    color: var(--text-muted-dark);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 140px;
    margin: 0 auto;
}

.highlight-stat .stat-num {
    color: var(--emerald);
}

/* ── DARK SECTIONS: Decorative grid texture ── */
.bg-darker,
.about-wrap,
.services-wrap,
.blogs-wrap {
    position: relative;
}

/* Subtle radial dot grid for dark sections */
.bg-darker::before,
.about-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 10%, transparent 75%);
}

/* Orange corner glow on dark sections */
.services-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 122, 61, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 100% 0%, rgba(255, 122, 61, 0.04) 0%, transparent 60%);
}

/* ============================================================
   SPLIT/ABOUT SECTION
   ============================================================ */
.neuromarketing,
.ai-automation,
.retail-space,
.faq-container {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.reverse-flex {
    direction: rtl;
}

.reverse-flex>* {
    direction: ltr;
}

.section-heading-left {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.section-copy {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Strategy Blueprint */
.strategy-blueprint {
    background: rgba(15, 15, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    position: relative;
    transition: transform 0.6s var(--ease-out-expo);
}

.blueprint-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    color: var(--emerald);
    font-weight: 600;
}

.blueprint-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    transition: background 0.3s, transform 0.3s;
}

.blueprint-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

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

.item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 122, 61, 0.12);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 122, 61, 0.2);
    flex-shrink: 0;
}

.item-text h4 {
    font-size: 1.1rem;
    color: var(--text-pure);
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.item-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   CENTER HEADINGS
   ============================================================ */
.center-content {
    text-align: center;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 800;
}

/* ============================================================
   SERVICES / PROPER GRID
   ============================================================ */
.services {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.proper-card {
    background: rgba(18, 18, 22, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
    text-decoration: none;
}

.proper-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 61, 0.4);
    box-shadow: 0 20px 60px rgba(255, 122, 61, 0.1);
}

.proper-card .card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.proper-card .card-num {
    font-size: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.proper-card h3 {
    font-size: 2rem;
    color: var(--text-pure);
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.proper-card .card-bottom {
    position: relative;
    z-index: 2;
}

.proper-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Hero card — orange */
.card-hero-orange {
    background: var(--emerald) !important;
    border-color: transparent !important;
}

.card-hero-orange .card-num {
    color: rgba(0, 0, 0, 0.3) !important;
}

.card-hero-orange h3 {
    color: #000 !important;
}

.card-hero-orange p {
    color: rgba(0, 0, 0, 0.65) !important;
}

.card-hero-orange .emerald-link {
    color: #000 !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
}

.card-hero-orange:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 122, 61, 0.4);
    border-color: transparent !important;
}

.card-hero-orange .card-bg-graphics {
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px) !important;
}

/* Grid pattern overlay */
.card-bg-graphics {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.emerald-link {
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.proper-card:hover .emerald-link {
    color: #fff;
}

/* ============================================================
   SERVICE CARDS (used on inner pages)
   ============================================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

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

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

/* Orange top-edge glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 61, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 122, 61, 0.25);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 122, 61, 0.1);
}

.card-glow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(60px);
    pointer-events: none;
    border-radius: 50%;
}

.featured-glow {
    background: rgba(255, 122, 61, 0.15);
    width: 250px;
    height: 250px;
}

/* Dot pattern inside card */
.card-content {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-pure);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.price {
    font-size: 3rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 2rem;
    line-height: 1;
}

.highlight-price {
    color: var(--emerald);
    text-shadow: 0 0 30px rgba(255, 122, 61, 0.3);
}

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

.features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.features li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    margin-top: 6px;
    flex-shrink: 0;
}

.featured-card {
    background: rgba(255, 122, 61, 0.04);
    border: 1px solid rgba(255, 122, 61, 0.2);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 0 0 1px rgba(255, 122, 61, 0.08), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featured-card:hover {
    transform: scale(1.03) translateY(-10px);
    border-color: rgba(255, 122, 61, 0.5);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 122, 61, 0.08);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 122, 61, 0.1);
    border: 1px solid var(--emerald-dim);
    color: var(--emerald);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-border-gradient {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, var(--emerald) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── ADD-ON BOX — integrated, no heavy border box ── */
.addon-box {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    padding: 3rem 0;
    position: relative;
}

.addon-box::before {
    display: none;
}

.addon-box::after {
    display: none;
}

.addon-section-title {
    font-size: 1rem;
    color: var(--emerald);
    font-family: var(--font-head);
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0.6rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.addon-section-title::before {
    content: '';
    width: 4px;
    height: 1rem;
    background: var(--emerald);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── CATALOGUE DOWNLOAD BUTTON ── */
.catalogue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 122, 61, 0.08);
    border: 1px solid rgba(255, 122, 61, 0.3);
    color: var(--emerald);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-head);
    letter-spacing: 0.03em;
}

.catalogue-btn:hover {
    background: var(--emerald);
    color: #fff;
    border-color: var(--emerald);
    box-shadow: 0 8px 30px rgba(255, 122, 61, 0.35);
    transform: translateY(-2px);
}

.catalogue-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── CTA ISLAND — transparent wrap, integrated into page ── */
.cta-island-wrap {
    padding: 5rem 2rem 6rem;
    background: transparent;
    /* no black outer box */
}

.cta-island {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    /* shorter / wide */
    display: flex;
    flex-direction: row;
    /* HORIZONTAL: text left, actions right */
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3.5rem 5%;
    background: url('cta.jpg') center center / cover no-repeat;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Dark overlay for readability */
.cta-island::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(15, 6, 2, 0.88) 0%,
            rgba(30, 12, 4, 0.78) 45%,
            rgba(15, 6, 2, 0.45) 100%);
    pointer-events: none;
}

/* Subtle dot grid texture */
.cta-island::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, black 0%, transparent 80%);
}

.cta-island-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.cta-island-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.cta-island-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.cta-island h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.cta-island p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0;
    max-width: 560px;
}

.cta-island .btn-dark {
    background: #fff;
    color: #08080A;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    font-family: var(--font-head);
    white-space: nowrap;
}

.cta-island .btn-dark:hover {
    background: #F5F1EC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-island .btn-outline-white {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    white-space: nowrap;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
}

.cta-island .btn-outline-white:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .cta-island {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-island-actions {
        align-items: flex-start;
        width: 100%;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-pure);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: var(--emerald);
    color: #fff;
    border: none;
    box-shadow: 0 8px 30px rgba(255, 122, 61, 0.35);
}

.btn-primary:hover {
    background: #ff6420;
    box-shadow: 0 12px 40px rgba(255, 122, 61, 0.55);
    transform: translateY(-2px);
    color: #fff;
}

.btn-primary::before,
.btn-primary::after {
    display: none !important;
}

.emerald-glow-btn {
    background: var(--emerald);
    box-shadow: 0 0 40px rgba(255, 122, 61, 0.5);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
}

.emerald-glow-btn:hover {
    box-shadow: 0 0 60px rgba(255, 122, 61, 0.75);
    transform: translateY(-3px) scale(1.02);
}

.emerald-glow-btn::before,
.emerald-glow-btn::after {
    display: none !important;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 0;
    background: #000;
    margin: 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 18s linear infinite;
}

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

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

.ticker-item {
    display: inline-block;
    font-size: 1.6rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-right: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ticker-dot {
    color: var(--emerald);
    margin-right: 2.5rem;
    display: inline-block;
}

/* ============================================================
   PROCESS (LIGHT BG — same as stats)
   ============================================================ */
.process-wrap {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.process-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.022) 0px,
            rgba(0, 0, 0, 0.022) 1px,
            transparent 1px,
            transparent 28px);
}

.roadmap-container {
    position: relative;
    padding-top: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding-left: 2rem;
    padding-right: 2rem;
    z-index: 1;
}

.roadmap-line {
    display: none !important;
}

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

.roadmap-step {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    z-index: 2;
    padding-top: 1.5rem;
}

.roadmap-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.95rem;
    left: calc(1.5rem + 14px + 10px);
    width: calc(100% - 14px + 0.5rem);
    height: 1px;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.roadmap-dot {
    width: 14px;
    height: 14px;
    background: var(--bg-light);
    border: 2px solid var(--emerald);
    border-radius: 50%;
    margin-bottom: 2rem;
    margin-left: 1.5rem;
    box-shadow: 0 0 10px rgba(255, 122, 61, 0.4);
    position: relative;
    z-index: 5;
}

.roadmap-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid var(--emerald);
    animation: pulse 2s infinite;
    pointer-events: none;
}

.hide-line {
    background: var(--bg-light);
}

.step-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 2.5rem;
    flex-grow: 1;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 61, 0.3);
    box-shadow: 0 15px 50px rgba(255, 122, 61, 0.12);
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 122, 61, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    font-size: 5rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: rgba(255, 122, 61, 0.1);
    line-height: 0.8;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.05em;
}

.step-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
    font-family: var(--font-head);
    font-weight: 700;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
    padding: 12rem 2rem 2rem;
    text-align: center;
}

/* ============================================================
   FAQ — SAME LIGHT TEXTURE
   ============================================================ */
.faq-wrap {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.022) 0px,
            rgba(0, 0, 0, 0.022) 1px,
            transparent 1px,
            transparent 28px);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.5rem;
    border-radius: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: rgba(255, 122, 61, 0.3);
    box-shadow: 0 8px 40px rgba(255, 122, 61, 0.08);
}

.faq-q {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    font-family: var(--font-head);
}

.faq-a {
    color: var(--text-muted-dark);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* For dark-themed pages' FAQ */
.faq-item-dark {
    background: rgba(16, 16, 20, 1);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item-dark .faq-q {
    color: var(--text-pure);
}

.faq-item-dark .faq-a {
    color: var(--text-muted);
}

.faq-item-dark:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

/* ============================================================
   MINOR SERVICE GRID (inner pages)
   ============================================================ */
.minor-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.minor-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
}

.minor-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.minor-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-pure);
}

.price-small {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-head);
    color: var(--emerald);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0.8;
    transition: all 0.4s ease;
    text-decoration: none;
    align-items: flex-start;
}

/* ============================================================
   FINAL CALL / CTA
   ============================================================ */
.final-call {
    padding: 8rem 2rem;
    text-align: center;
}

/* ============================================================
   CONTACT FORM (inner pages)
   ============================================================ */
.contact-form {
    margin: 0 auto;
    background: var(--bg-panel);
    padding: 4rem;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-pure);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.2rem;
    color: var(--text-pure);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 15px rgba(255, 122, 61, 0.1);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FF7A3D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 1rem center;
    background-size: 1.2rem;
}

/* ============================================================
   FOOTER — PREMIUM REDESIGN (no orange line)
   ============================================================ */
.site-footer {
    position: relative;
    background: var(--bg-darker);
    overflow: hidden;
    z-index: 10;
    /* Smooth gradient fade-in from dark above */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle radial glow inside footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    pointer-events: none;
}

.ft-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5% 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.ft-logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ft-logo-dot {
    color: var(--emerald);
    font-size: 1.1em;
}

.ft-tagline {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 280px;
}

.ft-socials {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.ft-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.ft-social-link:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    background: rgba(255, 122, 61, 0.08);
    transform: translateY(-2px);
}

.ft-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 1.5rem;
}

.ft-links-list {
    list-style: none;
}

.ft-links-list li {
    margin-bottom: 0.9rem;
}

.ft-links-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.25s;
    position: relative;
}

.ft-links-list a:hover {
    color: #fff;
}

.ft-contact-item {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.25s;
}

.ft-contact-item:hover {
    color: #fff;
}

.ft-contact-addr {
    margin-top: 1.2rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.6;
}

/* Bottom bar */
.ft-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.ft-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.22);
}

.ft-legal {
    display: flex;
    gap: 2rem;
}

.ft-legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: color 0.25s;
}

.ft-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Massive ADDAFY text */
.footer-massive-text {
    width: 100%;
    text-align: center;
    line-height: 0.75;
    margin-bottom: -5%;
    overflow: hidden;
    pointer-events: none;
}

.massive-addafy {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 32vw;
    letter-spacing: -0.06em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legacy classes kept for compat */
.factor-x-footer {
    position: relative;
    border-top: none;
    padding-top: 6rem;
    overflow: hidden;
    background: var(--bg-darker);
    z-index: 10;
}

.footer-px {
    padding-left: 5%;
    padding-right: 5%;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
    padding-bottom: 6rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700 !important;
    font-size: 0.85rem;
}

.footer-contact-link {
    display: block;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: opacity 0.3s;
}

.footer-contact-link:hover {
    opacity: 0.7;
}

.footer-address {
    font-size: 1rem;
    color: #A1A1AA;
    line-height: 1.6;
}

.footer-mission {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
}

.footer-nav-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav-link:hover {
    color: #fff;
}

.hover-scale {
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.hover-scale:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Overrides */
.highlight-cta {
    border: none !important;
    background: #040405 !important;
}

.highlight-cta::before,
.highlight-cta::after {
    display: none !important;
}

.highlight-cta:hover {
    background: #111 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    color: #fff !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
    animation: forceReveal 0.1s forwards;
    animation-delay: 2.5s;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
    animation: forceReveal 0.1s forwards;
    animation-delay: 2.5s;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
    animation: forceReveal 0.1s forwards;
    animation-delay: 2.5s;
}

.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: none !important;
}

@keyframes forceReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* FAQ Smooth Reveal and Icon Rotate */
details[open] summary~* {
    animation: faqSweep 0.5s var(--ease-out-expo);
}

@keyframes faqSweep {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

details summary span:last-child {
    display: inline-block;
    transition: transform 0.4s var(--ease-out-expo);
    transform-origin: center;
}

details[open] summary span:last-child {
    transform: rotate(45deg);
}

.card-delay-1 {
    transition-delay: 0.08s;
}

.card-delay-2 {
    transition-delay: 0.16s;
}

.card-delay-3 {
    transition-delay: 0.24s;
}

/* ============================================================
   MINOR UTILITIES (inner pages)
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-num {
    font-size: 4rem;
    color: rgba(255, 122, 61, 0.15);
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.dock-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 90vw;
}

.dock-inner::-webkit-scrollbar {
    display: none;
}

.emerald-link {
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.service-card:hover .emerald-link {
    color: #fff;
}

/* Timeline (unused on index but used on other pages) */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    border-left: 2px solid var(--border-light);
    padding-left: 4rem;
    margin-left: 1rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    text-align: left;
}

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

.timeline-bullet {
    position: absolute;
    left: -4.65rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 122, 61, 0.5);
}

.timeline-content h4 {
    font-size: 1.8rem;
    color: var(--text-pure);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Master Typography */
h1,
.hero-headline {
    font-weight: 600 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
}

h2,
.section-heading,
.section-heading-left {
    font-weight: 600 !important;
    letter-spacing: -0.025em !important;
}

h3,
.proper-card h3 {
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

h4,
.step-card h4,
.faq-q {
    font-weight: 700 !important;
}

p,
.section-copy {
    font-weight: 400 !important;
    line-height: 1.75 !important;
}

/* Structural spacing */
.section-heading,
.section-heading-left {
    margin-bottom: 1.5rem !important;
}

.section-copy {
    margin-bottom: 2rem !important;
}

h2+p,
h3+p,
h4+p {
    margin-top: 0.8rem !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 3rem 1rem;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
}

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

    .strategy-blueprint {
        transform: none;
        padding: 1.5rem;
    }

    .blueprint-item {
        flex-direction: column;
        gap: 1rem;
    }

    .reverse-flex {
        direction: ltr;
    }

    .section-heading-left {
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .minor-service-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 4rem auto 0;
    }

    .featured-card {
        transform: none;
        box-shadow: none;
    }

    .featured-card:hover {
        transform: translateY(-10px);
    }

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

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

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

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

    .roadmap-dot {
        margin-left: 0;
    }

    .roadmap-step:not(:last-child)::after {
        display: none !important;
    }

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

    .right-col-logic {
        text-align: left !important;
    }

    .footer-link-grid {
        margin-left: 0 !important;
        max-width: 400px;
    }

    .footer-location {
        text-align: left !important;
    }

    .massive-addafy {
        font-size: 36vw;
    }

    .ft-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* Activate Mobile Navbar at 1024px */
    .nav-center {
        display: none !important;
    }

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

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }

    .hero {
        padding-top: 8rem;
    }

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

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

    .span-2 {
        grid-column: span 1;
    }

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

    .step-card {
        padding: 2rem;
    }

    .massive-addafy {
        font-size: 40vw;
        margin-bottom: -10%;
    }

    .factor-x-footer {
        padding-top: 5rem;
    }

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

    .ft-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .navbar {
        padding: 1rem 4%;
    }

    .navbar.sticky-mode {
        width: 95%;
        max-width: 100%;
        padding: 0.8rem;
        border-radius: 100px;
        top: 0.5rem;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
    }

    .cta-cluster {
        flex-direction: column;
        gap: 1.5rem !important;
    }

    .trust-indicator {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

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

    .stat-num {
        font-size: 2.8rem;
    }

    .hero-headline {
        font-size: 2.4rem !important;
    }

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

    .proper-card h3 {
        font-size: 1.6rem;
    }

    .faq-item,
    .faq-q {
        font-size: 1rem;
    }
}


/* ============================================================
   MOVED FROM INDEX.HTML
   ============================================================ */
/* Portfolio styles */
.portfolio-image-wrapper:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0.8;
    transition: all 0.4s ease;
    text-decoration: none;
    align-items: flex-start;
}

.portfolio-image-wrapper:hover .portfolio-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(4, 4, 5, 0.5) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.portfolio-btn {
    background: var(--emerald);
    color: #040405;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 0.92rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
    margin-top: 1.5rem;
    position: absolute;
    pointer-events: none;
}

.portfolio-meta {
    transition: transform 0.4s var(--ease-out-expo);
    text-align: left;
    width: 100%;
}

.portfolio-meta h3 {
    font-size: 1.5rem;
    color: #FFF;
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.portfolio-meta p {
    color: var(--emerald);
    font-size: 0.92rem;
    font-weight: 600;
}

.bento-hero .portfolio-meta h3 {
    font-size: 2.2rem;
}

.portfolio-image-wrapper:hover .portfolio-meta {
    transform: translateY(-40px);
    text-align: center;
}

.portfolio-image-wrapper:hover .portfolio-btn {
    transform: translateY(40px);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 10px 40px rgba(255, 122, 61, 0.35);
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .portfolio-bento {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 260px !important;
    }

    .bento-hero {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .portfolio-bento {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 320px !important;
    }

    .bento-hero,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Blog cards */
.blogs-scroll-container::-webkit-scrollbar {
    display: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 61, 0.35) !important;
    box-shadow: 0 12px 40px rgba(255, 122, 61, 0.1);
}

@media (max-width: 768px) {
    .blog-card {
        min-width: 90vw !important;
        width: 90vw !important;
    }
}

/* ============================================================
   PREMIUM BLOG & PORTFOLIO DETAIL
   ============================================================ */
.blog-detail-hero {
    padding: 4rem 0 6rem;
    text-align: left;
    position: relative;
}

.blog-detail-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.1;
    color: var(--text-pure);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.blog-meta-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content-wrapper {
    position: relative;
    z-index: 2;
    margin-top: -4rem;
    /* Overlap with hero for depth */
}

.glass-card {
    background: rgba(9, 9, 11, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .glass-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .blog-content-wrapper {
        margin-top: 0;
    }
}

.editorial-content {
    color: var(--text-high-contrast);
    font-size: 1.15rem;
    line-height: 1.85;
    font-weight: 400;
}

.editorial-content p {
    margin-bottom: 2rem;
}

.editorial-content h2,
.editorial-content h3 {
    color: var(--text-pure);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.editorial-content ul,
.editorial-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.editorial-content li {
    margin-bottom: 0.8rem;
}

/* Portfolio Specifics */
.case-study-sidebar {
    position: sticky;
    top: 120px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
}

.sidebar-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sidebar-value {
    color: var(--text-pure);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.sidebar-value:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .portfolio-single-container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .case-study-sidebar {
        position: static;
        width: 100%;
        order: -1;
        /* Move sidebar to top on mobile for quick info */
    }
}

/* Animations */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s var(--ease-out-expo) forwards;
}

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

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

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

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

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

/* ============================================================
   TYPOGRAPHY REFINEMENTS — Scattered weight corrections
   These override component-level 800/900 weights set earlier
   ============================================================ */

/* Stats — large numbers should be punchy but not brutal */
.stat-num {
    font-weight: 700 !important;
}

/* Section headings — component-level override */
.section-heading {
    font-weight: 600 !important;
}

/* Service cards — headings were 800, bring to 600 */
.service-card h3 {
    font-weight: 600 !important;
}

/* Price — large display number, 700 is enough */
.price {
    font-weight: 700 !important;
}

/* CTA Island h2 — this was 900, way too heavy */
.cta-island h2 {
    font-weight: 600 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.1 !important;
}

/* CTA button in island — reduce from 800 */
.cta-island .btn-dark {
    font-weight: 600 !important;
}

/* Step numbers — decorative, keep some weight */
.step-number {
    font-weight: 700 !important;
}

/* Footer logo text */
.ft-logo {
    font-weight: 700 !important;
}

/* Footer column headings */
.footer-col h4 {
    font-weight: 600 !important;
}

/* Blog/portfolio detail page title */
.blog-detail-title {
    font-weight: 600 !important;
    letter-spacing: -0.03em !important;
}

/* Buttons — consistent, readable */
.btn-dark,
.btn-cta,
.btn-outline-white,
.nav-cta {
    font-weight: 600 !important;
}

/* Nav links */
.nav-link {
    font-weight: 500 !important;
}

/* Section badge labels */
.section-badge {
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
}

/* Card title in portfolio cards */
.port-card-title {
    font-weight: 600 !important;
}

/* ============================================================
   EDITORIAL BODY — Blog & Portfolio detail content
   Used by dynamic.js with class="editorial-body"
   ============================================================ */
.editorial-body {
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.85;
}

.editorial-body .block-paragraph {
    margin: 0 0 1.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    line-height: 1.85;
    font-weight: 400;
}

.editorial-body .block-heading {
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin: 2.8rem 0 1rem;
}

.editorial-body .block-heading.h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.editorial-body .block-heading.h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.editorial-body .block-heading+.block-paragraph {
    margin-top: 0.5rem;
}

.editorial-body .block-list {
    margin: 0 0 1.6rem;
    padding-left: 1.4rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.editorial-body .block-list li {
    margin-bottom: 0.55rem;
    font-size: 1.02rem;
}

.editorial-body .block-quote {
    border-left: 3px solid #FF7A3D;
    margin: 2rem 0;
    padding: 1rem 0 1rem 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
}

.editorial-body .block-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.editorial-body .block-image-figure {
    margin: 2.5rem 0;
}

.editorial-body .block-image {
    width: 100%;
    border-radius: 14px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.editorial-body .block-image-caption {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.32);
    text-align: center;
    margin-top: 0.65rem;
    font-style: italic;
    letter-spacing: 0.01em;
}

/* ============================================================
   HERO HEADLINE SIZE — slightly more breathing room
   ============================================================ */
.hero-headline {
    font-size: clamp(3rem, 6vw, 5.5rem) !important;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: clamp(2.4rem, 9vw, 3.5rem) !important;
    }

    .editorial-body {
        font-size: 0.98rem;
    }
}