/* ==========================================================================
   Magnustic — Cybernetic Tech Design System (v2)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Fira+Code:wght@400;500&display=swap');

:root {
    /* Brand gold — sampled from logo-bgless.png */
    --gold: #fcc705;
    --gold-rgb: 252, 199, 5;
    --gold-soft: #ffe27a;
    /* quiet cool utility color for links/data — not a glow color */
    --link: #4c6ef5;
    --link-rgb: 76, 110, 245;

    /* Dark theme (default) */
    --paper: #000000;
    --paper-dim: #000000;
    --card-bg: rgba(255, 255, 255, 0.04);
    --ink: #ffffff;
    --ink-soft: #dcdce0;
    --deep: #000000;
    --rule: rgba(255, 255, 255, 0.1);
    --rule-strong: rgba(255, 255, 255, 0.2);
    --white: #ffffff;
    --btn-text: #101012;
    --glow-alpha: 0.35;
    --grid-line: rgba(255, 255, 255, 0.02);

    --font-head: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-data: 'Fira Code', monospace;

    --max: 1600px;
    --gap: clamp(1.25rem, 2.5vw, 2.5rem);
    --radius: 8px;

    /* Legacy names kept so the rest of this file (which references them
       ~68 times) repoints to the new brand palette without a line-by-line
       rewrite. --teal-deep was "primary brand" (cyan) -> now gold.
       --teal was "accent" (rose) -> now the cool link color. */
    --teal-deep: var(--gold);
    --teal: var(--link);
    --amber: var(--gold);
    --header-bg: rgba(5, 5, 5, 0.85);
}

[data-theme="light"] {
    --paper: #f7f7f5;
    --paper-dim: #ffffff;
    --card-bg: rgba(16, 16, 18, 0.03);
    --ink: #14141a;
    --ink-soft: #5b5b63;
    --deep: #ffffff;
    --rule: rgba(20, 20, 26, 0.1);
    --rule-strong: rgba(20, 20, 26, 0.18);
    --white: #14141a;
    --btn-text: #14141a;
    --glow-alpha: 0.12;
    --grid-line: rgba(20, 20, 26, 0.03);
    --header-bg: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .btn-solid {
    color: #101012;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--paper);
    transition: background-color 0.25s ease, color 0.25s ease;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--teal-deep);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--teal);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--teal-deep);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gap);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--ink);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h3 {
    font-size: 1.15rem;
}

p {
    max-width: 62ch;
    margin: 0 0 1em;
    color: var(--ink-soft);
}

.eyebrow-label {
    font-family: var(--font-data);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
}

/* Glows read as light leaking off a surface in the dark — on a white
   background the same rule just looks like blurry text, so it's off,
   not dialed down, in light mode. */
[data-theme="light"] * {}

/* ═══ COOKIE BANNER ══════════════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, calc(100vw - 2rem));
    background: rgba(10, 15, 30, 0.96);
    border: 1px solid var(--rule-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    z-index: 999;
}

.cookie-banner-inner {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 220px;
}

.cookie-title {
    font-family: var(--font-data);
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.cookie-banner-text p {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin: 0;
    max-width: 100%;
}

.cookie-banner-text a {
    color: var(--teal-deep);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
}

/* ═══ HEADER ════════════════════════════════════════════════════════ */

.site-header {
    border-bottom: 1px solid var(--rule);
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.wordmark-logo {
    text-decoration: none;
}

.site-logo-img {
    height: clamp(58px, 5vw, 72px);
    width: auto;
    max-width: 320px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.site-logo-img:hover {
    transform: scale(1.03);
}

.site-logo-img.light-logo {
    display: none;
}

.site-logo-img.dark-logo {
    display: block;
}

[data-theme="light"] .site-logo-img.light-logo {
    display: block;
}

[data-theme="light"] .site-logo-img.dark-logo {
    display: none;
}

.footer-logo-img {
    height: clamp(65px, 6vw, 85px);
    width: auto;
    max-width: 360px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.footer-logo-img:hover {
    transform: scale(1.04);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav a {
    color: var(--ink-soft);
    font-family: var(--font-body); /* Same clean sans-serif font family */
    font-size: 0.95rem;           /* Same font size */
    font-weight: 500;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    text-transform: none;          /* Normal / Title case matching screenshot */
    letter-spacing: -0.01em;
    transition: all 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--teal-deep);
    border-bottom-color: var(--teal-deep);
    text-decoration: none;
}

.main-nav .btn {
    border-bottom: none;
    padding: 0.55rem 1.3rem;
    margin-left: 0.5rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--rule-strong);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--teal-deep);
}

.btn {
    display: inline-block;
    font-family: var(--font-body); /* Same font family as menu links */
    font-weight: 600;
    font-size: 0.95rem;           /* Same font size as menu links */
    padding: 0.55rem 1.3rem;
    border: 1px solid var(--teal-deep);
    color: var(--teal-deep);
    background: rgba(var(--gold-rgb), 0.04);
    cursor: pointer;
    text-transform: none;          /* Normal / Title case matching screenshot */
    letter-spacing: -0.01em;
    transition: all 0.2s;
    border-radius: 50px;
}

.btn:hover {
    text-decoration: none;
    background: rgba(var(--gold-rgb), 0.12);
    color: var(--teal-deep);
}

.btn-solid {
    background: var(--teal-deep);
    border-color: var(--teal-deep);
    color: var(--btn-text);
}

.btn-solid:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--btn-text);
}

/* ═══ HERO ══════════════════════════════════════════════════════════ */

.hero {
    padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.hero-copy h1 {}

.hero-copy p.lede {
    font-size: 1.1rem;
    max-width: 48ch;
    color: var(--ink-soft);
}

.route {
    border-top: 1px solid var(--rule-strong);
    padding-top: 1.1rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.route::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--teal-deep);
    animation: route-draw 2s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    .route::before {
        animation: none;
        width: 100%;
    }
}

@keyframes route-draw {
    to {
        width: 100%;
    }
}

.route-stop {
    flex: 1;
    text-align: left;
}

.route-stop .stop-index {
    font-family: var(--font-data);
    font-size: 0.76rem;
    color: var(--teal);
    display: block;
    margin-bottom: 0.25rem;
}

.route-stop .stop-label {
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.route-stop:last-child .stop-label {
    color: var(--teal-deep);
    font-weight: 500;
}

.hero-manifest {
    border: 1px solid var(--rule-strong);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    font-family: var(--font-data);
    font-size: 0.84rem;
}

.hero-manifest .m-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--rule);
    gap: 1rem;
}

.hero-manifest .m-row:last-child {
    border-bottom: none;
}

.hero-manifest .m-key {
    color: var(--ink-soft);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.hero-manifest .m-val {
    color: var(--ink);
    text-align: right;
}

.stamp {
    display: inline-block;
    font-family: var(--font-data);
    font-size: 0.7rem;
    border: 1px solid var(--teal-deep);
    color: var(--teal-deep);
    padding: 0.1rem 0.5rem;
    transform: rotate(-2deg);
}

/* ═══ STATS BAR ═════════════════════════════════════════════════════ */

.stats-bar {
    padding: 2rem 0;
    background: rgba(var(--gold-rgb), 0.03);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--teal-deep);
    line-height: 1;
}

.stat-plus {
    font-size: 0.6em;
    vertical-align: super;
}

.stat-label {
    display: block;
    font-family: var(--font-data);
    font-size: 0.76rem;
    color: var(--ink-soft);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ═══ SECTION RHYTHM ════════════════════════════════════════════════ */

.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--rule);
    position: relative;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-head p {
    margin: 0;
}

/* ═══ WHY GRID ══════════════════════════════════════════════════════ */

.why-us-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../why-us.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 6.5rem 0 7.5rem;
    min-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

[data-theme="light"] .why-us-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../why-us.png');
}

.why-us-head {
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    gap: 0.5rem;
}

.why-us-head h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-us-head p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0.5rem 0 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.why-us-section .eyebrow-label {
    font-size: 1.1rem;
    background-color: #000000;
    color: var(--gold);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.services-section .section-head h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.services-section .eyebrow-label {
    font-size: 1.1rem;
    background-color: #000000;
    color: var(--gold);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 0.9rem 1.4rem 0.9rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    letter-spacing: 2px;
}

[data-theme="light"] .why-card {
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #173256 0%, #0b1c34 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(15, 30, 60, 0.3);
    margin: 0;
}

.why-card-content {
    flex: 1;
}

.why-card-content h3 {
    margin: 0 0 3px 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0C1E36;
    line-height: 1.25;
    letter-spacing: 2px;
}

.why-card-content p {
    margin: 0;
    font-size: 0.84rem;
    color: #53647B;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 2px;
}

.why-us-banner {
    background: #000000;
    backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 1.1rem 2.2rem;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex-wrap: wrap;
    letter-spacing: 2px;
}

.why-us-banner-text {
    color: #fcc705;
    font-size: 1.05rem;
    line-height: 1.4;
    flex: 1 1 400px;
    letter-spacing: 2px;
}

.why-us-banner-btn {
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.45);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    letter-spacing: 2px;
}

.why-us-banner-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.6);
}

/* ═══ SERVICES IMAGE CARDS SECTION ═══════════════════════════════════ */

.services-section {
    padding: 5.5rem 0 6.5rem;
}

.services-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.services-head h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0.4rem 0 0.8rem 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-subheadline {
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0;
    line-height: 1.55;
    font-weight: 500;
}

.services-view-all {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.services-view-all:hover {
    transform: translateX(4px);
    color: var(--gold-soft);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
    border-color: rgba(252, 199, 5, 0.4);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.12) 0%, rgba(8, 12, 20, 0.58) 45%, rgba(8, 12, 20, 0.95) 85%);
    transition: background 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.05) 0%, rgba(8, 12, 20, 0.48) 40%, rgba(8, 12, 20, 0.97) 80%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 2.4rem;
    width: 100%;
    color: #ffffff;
}

.service-pill {
    display: inline-block;
    background: rgba(252, 199, 5, 0.18);
    border: 1px solid rgba(252, 199, 5, 0.4);
    color: #fcc705;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.85rem;
    backdrop-filter: blur(6px);
}

.service-card-content h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-tagline {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffe27a;
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
}

.service-deliver {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.1rem 0;
    line-height: 1.55;
    font-weight: 400;
}

.service-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    color: #e2e8f0;
    font-weight: 600;
}

.service-value-badge .badge-icon {
    font-size: 1rem;
}

@media (max-width: 900px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: 420px;
    }
    .service-card-content {
        padding: 1.8rem;
    }
}
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    padding: 0.3rem 0.6rem;
    background: rgba(var(--gold-rgb), 0.04);
    justify-self: start;
}

/* ═══ PRODUCTS MANIFEST ═════════════════════════════════════════════ */

.manifest-list {
    border-top: 1px solid var(--rule-strong);
}

.product-row {
    display: grid;
    grid-template-columns: 100px 1fr 160px 100px;
    gap: 1.5rem;
    padding: 1.35rem 0.75rem;
    border-bottom: 1px solid var(--rule);
    align-items: center;
    transition: background 0.2s;
}

.product-row:hover {
    background: rgba(255, 255, 255, 0.018);
}

.product-row a.title-link {
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 500;
}

.product-row a.title-link:hover {
    color: var(--teal-deep);
    text-decoration: none;
}

.product-row .cat {
    font-family: var(--font-data);
    font-size: 0.74rem;
    color: var(--ink-soft);
    text-transform: uppercase;
}

.product-row .tagline {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.status-chip {
    font-family: var(--font-data);
    font-size: 0.72rem;
    border: 1px solid var(--teal-deep);
    color: var(--teal-deep);
    padding: 0.2rem 0.55rem;
    display: inline-block;
    justify-self: start;
    background: rgba(var(--gold-rgb), 0.05);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-chip.dev {
    border-color: var(--amber);
    color: var(--amber);
    background: rgba(251, 191, 36, 0.05);
}

/* ═══ INTERACTIVE PROCESS COMMAND DECK ══════════════════════════════ */

.process-section {
    position: relative;
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background: linear-gradient(180deg, var(--paper) 0%, rgba(var(--gold-rgb), 0.02) 50%, var(--paper) 100%);
    overflow: hidden;
}

.process-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-data);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.08);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 12px rgba(var(--gold-rgb), 0.1);
}

.eyebrow-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--gold);
    display: inline-block;
    box-shadow: 0 0 8px var(--gold);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px var(--gold); }
    50% { transform: scale(1.4); opacity: 0.6; box-shadow: 0 0 16px var(--gold); }
}

.process-title-main {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-top: 0.2rem;
    margin-bottom: 0.85rem;
}

.text-gold-accent {
    background: linear-gradient(135deg, var(--gold) 0%, #ffd85c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

[data-theme="light"] .text-gold-accent {
    background: linear-gradient(135deg, #d9a500 0%, #b88b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-deck-container {
    margin-top: 2rem;
}

/* Horizontal Track Nav */
.process-track-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.process-track-line {
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--rule-strong);
    z-index: 1;
    border-radius: 4px;
}

.process-track-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: var(--gold);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.5);
}

.process-stage-tabs {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.stage-tab {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0;
    outline: none;
    transition: all 0.3s ease;
}

.stage-tab-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--paper-dim);
    border: 3px solid var(--rule-strong);
    transition: all 0.3s ease;
    margin-top: 4px;
}

.stage-tab-num {
    font-family: var(--font-data);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--card-bg);
    border: 1px solid var(--rule);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.stage-tab-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-align: center;
    transition: all 0.3s ease;
}

.stage-tab:hover .stage-tab-label,
.stage-tab:hover .stage-tab-num {
    color: var(--ink);
}

.stage-tab.active .stage-tab-dot {
    background: var(--gold);
    border-color: var(--paper);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(var(--gold-rgb), 0.8);
}

.stage-tab.active .stage-tab-num {
    color: #101012;
    background: var(--gold);
    border-color: var(--gold);
    font-weight: 700;
}

.stage-tab.active .stage-tab-label {
    color: var(--gold);
    font-weight: 600;
}

/* Spotlight Box Display */
.process-spotlight-box {
    background: var(--card-bg);
    border: 1px solid var(--rule-strong);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.spotlight-panel {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.spotlight-badge-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.spotlight-phase-tag {
    font-family: var(--font-data);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.1);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.spotlight-time-tag {
    font-size: 0.825rem;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--rule);
}

.spotlight-title {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.spotlight-desc {
    font-size: 1.025rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.spotlight-checklist-title {
    font-family: var(--font-data);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.spotlight-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--rule);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.checklist-item:hover {
    background: rgba(var(--gold-rgb), 0.04);
    border-color: rgba(var(--gold-rgb), 0.2);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.15);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.checklist-item p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.4;
}

/* Spotlight Side Visual & Action */
.spotlight-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 1.5rem;
}

.spotlight-card-visual {
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    font-family: var(--font-data);
}

.visual-header {
    background: #18181c;
    padding: 0.6rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.visual-dot.red { background: #ff5f56; }
.visual-dot.yellow { background: #ffbd2e; }
.visual-dot.green { background: #27c93f; }

.visual-title {
    font-size: 0.75rem;
    color: #888894;
    margin-left: 0.4rem;
}

.visual-code {
    margin: 0;
    padding: 1rem;
    font-size: 0.825rem;
    color: #e0e0e0;
    line-height: 1.5;
    overflow-x: auto;
}

.spotlight-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    background: var(--gold);
    color: #101012 !important;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.3);
    text-align: center;
}

.spotlight-action-btn:hover {
    background: #ffffff;
    color: #101012 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

/* Light Theme Overrides */
[data-theme="light"] .process-spotlight-box {
    background: #ffffff;
    border-color: rgba(20, 20, 26, 0.12);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .checklist-item {
    background: #f8f8f6;
    border-color: rgba(20, 20, 26, 0.08);
}

[data-theme="light"] .spotlight-side {
    background: #f4f4f2;
    border-color: rgba(20, 20, 26, 0.1);
}

[data-theme="light"] .spotlight-action-btn {
    background: #14141a;
    color: #ffffff !important;
}

[data-theme="light"] .spotlight-action-btn:hover {
    background: #d9a500;
    color: #14141a !important;
}

/* Responsive breakpoint */
@media (max-width: 900px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
    }
    .process-track-line {
        display: none;
    }
    .process-stage-tabs {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .stage-tab {
        flex: 1 1 30%;
        background: var(--card-bg);
        border: 1px solid var(--rule);
        padding: 0.75rem 0.5rem;
        border-radius: 8px;
    }
    .stage-tab-dot {
        display: none;
    }
}

/* ═══ TESTIMONIALS ══════════════════════════════════════════════════ */

.testimonials-section {
    background: rgba(var(--gold-rgb), 0.015);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    padding: 1.75rem 1.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--teal-deep);
    opacity: 0.12;
    font-family: var(--font-head);
}

.testimonial-quote {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px dashed var(--rule-strong);
    padding-top: 1rem;
}

.t-name {
    display: block;
    font-family: var(--font-data);
    font-size: 0.8rem;
    color: var(--teal-deep);
}

.t-company {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin-top: 0.15rem;
}

/* ═══ TECH PILLS ════════════════════════════════════════════════════ */

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-pill {
    font-family: var(--font-data);
    font-size: 0.8rem;
    border: 1px solid var(--rule-strong);
    color: var(--ink-soft);
    padding: 0.4rem 0.9rem;
    background: rgba(var(--gold-rgb), 0.03);
    transition: all 0.2s;
}

.tech-pill:hover {
    border-color: var(--teal-deep);
    color: var(--teal-deep);
    background: rgba(var(--gold-rgb), 0.07);
}

/* ═══ BLOG ══════════════════════════════════════════════════════════ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.25s;
}

.blog-card:hover {
    border-color: var(--rule-strong);
}

.blog-card-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.blog-cat {
    font-family: var(--font-data);
    font-size: 0.7rem;
    color: var(--teal-deep);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    padding: 0.15rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-read-time {
    font-family: var(--font-data);
    font-size: 0.7rem;
    color: var(--ink-soft);
}

.blog-card h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.blog-card h3 a {
    color: var(--ink);
}

.blog-card h3 a:hover {
    color: var(--teal-deep);
}

.blog-card p {
    margin: 0;
    font-size: 0.88rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-family: var(--font-data);
}

.blog-read-more {
    font-family: var(--font-data);
    font-size: 0.8rem;
    color: var(--teal-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.blog-read-more:hover {
    color: var(--teal);
}

.blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-pill {
    font-family: var(--font-data);
    font-size: 0.78rem;
    border: 1px solid var(--rule-strong);
    color: var(--ink-soft);
    padding: 0.35rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.filter-pill:hover {
    color: var(--teal-deep);
    border-color: var(--teal-deep);
}

.filter-pill.active {
    background: var(--teal-deep);
    color: var(--btn-text);
    border-color: var(--teal-deep);
}

.pagination {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.page-link {
    font-family: var(--font-data);
    font-size: 0.85rem;
    color: var(--teal-deep);
    text-transform: uppercase;
}

.page-info {
    font-family: var(--font-data);
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* ═══ BLOG ARTICLE ══════════════════════════════════════════════════ */

.article-header {
    padding: clamp(2rem, 5vw, 4rem) 0 2rem;
    border-bottom: 1px solid var(--rule);
}

.back-link {
    font-family: var(--font-data);
    font-size: 0.8rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.back-link:hover {
    color: var(--teal-deep);
}

.article-meta-top {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.article-byline {
    font-family: var(--font-data);
    font-size: 0.82rem;
    color: var(--ink-soft);
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.byline-sep {
    color: var(--rule-strong);
}

.article-body {
    padding: 3rem 0;
}

.article-share {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--rule-strong);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.share-label {
    color: var(--ink-soft);
    font-family: var(--font-data);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.share-link {
    font-family: var(--font-data);
    font-size: 0.78rem;
    color: var(--teal-deep);
    text-transform: uppercase;
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    padding: 0.25rem 0.65rem;
}

.share-link:hover {
    background: rgba(var(--gold-rgb), 0.08);
}

/* ═══ PROSE ═════════════════════════════════════════════════════════ */

.prose {
    max-width: 68ch;
}

.prose h2 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
}

.prose h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--teal-deep);
}

.prose p {
    color: var(--ink-soft);
    line-height: 1.75;
    max-width: 100%;
}

.prose ul,
.prose ol {
    color: var(--ink-soft);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.35rem;
    line-height: 1.7;
}

.prose strong {
    color: var(--ink);
    font-weight: 600;
}

.prose a {
    color: var(--teal-deep);
}

.prose code {
    font-family: var(--font-data);
    font-size: 0.88em;
    background: rgba(var(--gold-rgb), 0.07);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    padding: 0.15rem 0.4rem;
    color: var(--teal-deep);
}

.prose blockquote {
    border-left: 3px solid var(--teal-deep);
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background: rgba(var(--gold-rgb), 0.03);
}

.prose blockquote p {
    font-style: italic;
    margin: 0;
}

.legal-prose h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* ═══ CTA BANNER ════════════════════════════════════════════════════ */

.cta-banner {
    background: linear-gradient(135deg, rgba(0, 20, 30, 0.95) 0%, rgba(0, 10, 20, 0.98) 100%);
    border-top: 1px solid var(--rule-strong);
    border-bottom: 1px solid var(--rule);
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-inner p {
    max-width: 48ch;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ═══ ABOUT PAGE ════════════════════════════════════════════════════ */

.about-mission {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.mission-block h2 {
    margin-bottom: 1rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mission-stat {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    padding: 1.25rem;
    text-align: center;
}

.mission-stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal-deep);
}

.mission-stat-label {
    display: block;
    font-family: var(--font-data);
    font-size: 0.72rem;
    color: var(--ink-soft);
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pillar-card {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    padding: 1.75rem;
    transition: border-color 0.25s;
}

.pillar-card:hover {
    border-color: var(--rule-strong);
}

.pillar-icon {
    font-size: 1.8rem;
    color: var(--teal-deep);
    margin-bottom: 1rem;
    display: block;
}

.pillar-card h3 {
    margin-bottom: 0.5rem;
}

.pillar-card p {
    margin: 0;
    font-size: 0.92rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    padding: 1.75rem;
}

.team-avatar {
    margin-bottom: 1.25rem;
}

.team-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--rule-strong);
    object-fit: cover;
}

.team-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.08);
    border: 1px solid var(--rule-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-deep);
}

.team-info h3 {
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.team-role {
    font-family: var(--font-data);
    font-size: 0.78rem;
    color: var(--teal-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.88rem;
}

.team-linkedin {
    font-family: var(--font-data);
    font-size: 0.78rem;
    color: var(--teal-deep);
    text-transform: uppercase;
}

/* ═══ PRODUCT DETAIL ════════════════════════════════════════════════ */

.product-hero {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2rem;
}

.product-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--rule);
}

.feature-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--rule);
    padding-left: 1.4rem;
    position: relative;
    color: var(--ink-soft);
}

.feature-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.1rem;
    line-height: 1;
}

.linked-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--rule-strong);
    border-left: 3px solid var(--teal-deep);
    font-size: 0.92rem;
}

/* ═══ CONSULTATION FORM ═════════════════════════════════════════════ */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 640px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

label {
    display: block;
    font-size: 0.78rem;
    color: var(--teal-deep);
    margin-bottom: 0.35rem;
    font-family: var(--font-data);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input,
textarea,
select {
    width: 100%;
    font-family: var(--font-data);
    font-size: 0.92rem;
    padding: 0.75rem 0.8rem;
    border: 1px solid var(--rule-strong);
    background: rgba(15, 23, 42, 0.3);
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--teal-deep);
    outline: none;
}

select option {
    background: #0a0f1e;
    color: var(--ink);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.field {
    margin-bottom: 0;
}

.form-note {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 1rem;
}

.alert {
    padding: 0.9rem 1.1rem;
    border-left: 3px solid var(--teal-deep);
    background: var(--card-bg);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.alert.error {
    border-color: var(--teal);
}

/* ═══ FOOTER ════════════════════════════════════════════════════════ */

.site-footer {
    border-top: 1px solid var(--rule-strong);
    padding: 3.5rem 0 2rem;
    margin-top: 0;
    background: rgba(2, 6, 23, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 2rem;
}

.footer-brand .wordmark {
    font-size: 1.4rem;
}

.footer-brand>p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin-top: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--rule-strong);
    color: var(--ink-soft);
    transition: all 0.2s;
}

.social-link:hover {
    color: var(--teal-deep);
    border-color: var(--teal-deep);
    background: rgba(var(--gold-rgb), 0.05);
}

.footer-grid h4 {
    font-family: var(--font-data);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 0.5rem;
}

.footer-grid a {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: var(--teal-deep);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--rule);
    font-size: 0.78rem;
    color: var(--ink-soft);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: var(--font-data);
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
}

.footer-legal-links a {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.footer-legal-links a:hover {
    color: var(--teal-deep);
}

/* ═══ ADMIN ═════════════════════════════════════════════════════════ */

.admin-body {
    background: var(--paper-dim);
}

.admin-shell {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
}

.admin-side {
    background: var(--deep);
    color: var(--ink);
    padding: 1.5rem 1.25rem;
    border-right: 1px solid var(--rule);
}

.admin-side .wordmark {
    color: var(--ink);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: block;
}

.admin-side nav a {
    display: block;
    color: var(--ink-soft);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.85rem;
    font-family: var(--font-data);
    text-transform: uppercase;
}

.admin-side nav a:hover,
.admin-side nav a.active {
    color: var(--teal-deep);
    text-decoration: none;
}

.admin-main {
    padding: 2rem clamp(1.25rem, 3vw, 2.5rem);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--rule-strong);
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--rule);
    font-size: 0.88rem;
}

.admin-table th {
    font-family: var(--font-data);
    font-weight: 500;
    color: var(--teal-deep);
    background: rgba(var(--gold-rgb), 0.04);
    text-transform: uppercase;
    font-size: 0.76rem;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-actions a {
    margin-right: 0.75rem;
    font-size: 0.82rem;
    color: var(--teal);
}

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 100%;
    max-width: 360px;
    background: var(--card-bg);
    border: 1px solid var(--rule-strong);
    padding: 2.5rem 2rem;
}

.login-box h1 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.admin-field-group {
    margin-bottom: 1.25rem;
}

/* ═══ RESPONSIVE ════════════════════════════════════════════════════ */

@media (max-width: 960px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: row;
    }

    .about-mission {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }

    .route {
        flex-wrap: wrap;
        gap: 1rem 0;
    }

    .route-stop {
        flex: 0 0 50%;
    }

    .ledger-row,
    .product-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .product-row .cat,
    .status-chip {
        justify-self: start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-side {
        display: none;
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }

    .mission-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem var(--gap);
        gap: 0;
        display: none;
        overflow-y: auto;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--rule);
        font-size: 1rem;
    }

    .nav-toggle {
        display: block;
    }
}

    .cookie-banner-inner {
        flex-direction: column;
    }

    .cookie-banner-actions {
        width: 100%;
    }
}

/* ═══ THEME TOGGLE ══════════════════════════════════════════════════ */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--rule-strong);
    border-radius: var(--radius);
    background: var(--card-bg);
    color: var(--ink);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.theme-toggle:hover {
    border-color: var(--gold);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

/* ═══ QIYADAH PRODUCT SECTION STYLES ═════════════════════════════════ */

@keyframes qiyadahYellowGlow {
    0%, 100% {
        border-color: rgba(252, 199, 5, 0.85);
        box-shadow: 0 0 25px rgba(252, 199, 5, 0.25), inset 0 0 15px rgba(252, 199, 5, 0.08);
    }
    50% {
        border-color: #fcc705;
        box-shadow: 0 0 45px rgba(252, 199, 5, 0.5), inset 0 0 25px rgba(252, 199, 5, 0.15);
    }
}

@keyframes badgeYellowPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes shimmerLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.qiyadah-box {
    background-color: #000000;
    background-image: radial-gradient(circle at 50% 0%, rgba(252, 199, 5, 0.08) 0%, rgba(0, 0, 0, 0.98) 75%);
    border-top: 2px solid #fcc705;
    border-bottom: 2px solid #fcc705;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 5rem 0 5.5rem;
    margin: 3.5rem 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: qiyadahYellowGlow 4s infinite ease-in-out;
}

.qiyadah-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fcc705, transparent);
    animation: shimmerLine 3s infinite linear;
}

.qiyadah-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3.5rem;
}

.qiyadah-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.qiyadah-brand-logo img {
    height: clamp(50px, 8vw, 75px);
    width: auto;
    object-fit: contain;
}

.qiyadah-logo-text {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: 6px;
    color: #ffffff;
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 1;
}

.qiyadah-sub {
    color: #b0b0b5;
    font-size: 1.08rem;
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto;
}

.qiyadah-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 980px) {
    .qiyadah-product-grid {
        grid-template-columns: 1fr;
    }
}

.qiyadah-showcase-card {
    background: #08080a;
    border: 1.5px solid rgba(252, 199, 5, 0.3);
    border-radius: 28px;
    padding: 2.2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qiyadah-showcase-card:hover {
    transform: translateY(-8px);
    border-color: #fcc705;
    box-shadow: 0 16px 40px rgba(252, 199, 5, 0.22);
    background: #0d0d12;
}

.qiyadah-showcase-img-holder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(252, 199, 5, 0.25);
    margin-bottom: 1.8rem;
    position: relative;
    background: #000000;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.qiyadah-showcase-card:hover .qiyadah-showcase-img-holder {
    border-color: #fcc705;
    box-shadow: 0 10px 28px rgba(252, 199, 5, 0.35);
}

.qiyadah-showcase-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.qiyadah-showcase-card:hover .qiyadah-showcase-img-holder img {
    transform: scale(1.06);
}

.qiyadah-card-header {
    margin-bottom: 1.8rem;
    padding-bottom: 0;
    border-bottom: none;
}

.qiyadah-product-badge {
    display: inline-block;
    background: #fcc705;
    color: #000000;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.qiyadah-product-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
    font-family: var(--font-head);
    line-height: 1.2;
}

.qiyadah-product-desc {
    color: #b5b5c0;
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0;
}

.qiyadah-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.2rem;
}

@media (max-width: 600px) {
    .qiyadah-features-grid {
        grid-template-columns: 1fr;
    }
}

.qiyadah-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1rem 1.1rem;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.qiyadah-showcase-card:hover .qiyadah-feature-box {
    border-color: rgba(252, 199, 5, 0.25);
    background: rgba(252, 199, 5, 0.04);
}

.qiyadah-feature-box-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.qiyadah-feat-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.qiyadah-feature-box-head strong {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.qiyadah-feature-box p {
    color: #aaaaae;
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0;
}

.qiyadah-card-action {
    margin-top: auto;
}

.qiyadah-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #fcc705;
    color: #000000;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.95rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(252, 199, 5, 0.3);
}

.qiyadah-action-btn:hover {
    background: #ffe066;
    color: #000000;
    box-shadow: 0 10px 28px rgba(252, 199, 5, 0.5);
    transform: translateY(-2px);
}

/* ==========================================================================
   Site Footer — Cybernetic Theme Styling
   ========================================================================== */

/* Ensure Footer is ALWAYS Pure Black Background & Pure White Text */
.site-footer,
[data-theme="light"] .site-footer {
    background: #000000 !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 4.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 35%, var(--gold-soft) 50%, var(--gold) 65%, transparent 100%);
    opacity: 0.85;
}

/* Footer CTA Card */
.footer-cta-card,
[data-theme="light"] .footer-cta-card {
    background: #0d0d10 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.footer-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-card:hover {
    border-color: rgba(var(--gold-rgb), 0.4) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--gold-rgb), 0.1) !important;
}

.footer-cta-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.footer-cta-content p {
    font-size: 0.98rem;
    color: #e0e0e6 !important;
    margin: 0;
    max-width: 54ch;
}

.footer-cta-action {
    flex-shrink: 0;
}

.footer-cta-action .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(var(--gold-rgb), 0.25);
}

/* Main Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
    gap: 3rem 2.5rem;
    margin-bottom: 4rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease;
    margin-bottom: 1rem;
}

.footer-wordmark:hover {
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.footer-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--gold-rgb), 0.08);
    border: 1px solid rgba(var(--gold-rgb), 0.28);
    box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.15);
    transition: all 0.3s ease;
}

.footer-wordmark:hover .footer-logo-mark {
    background: rgba(var(--gold-rgb), 0.2);
    border-color: var(--gold);
    box-shadow: 0 6px 22px rgba(var(--gold-rgb), 0.35);
    transform: scale(1.04);
}

.footer-logo-title .logo-dot {
    color: var(--gold);
}

.footer-brand-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #e0e0e6 !important;
    margin: 0 0 1.5rem;
    max-width: 36ch;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.6rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: #ffffff !important;
}

.footer-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #ffffff !important;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--gold) !important;
    text-decoration: none;
}

/* Social Links */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social .social-link,
[data-theme="light"] .footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social .social-link:hover,
[data-theme="light"] .footer-social .social-link:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.35);
}

/* Navigation Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin-top: 0.4rem;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--gold) !important;
    transform: translateX(4px);
    text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #ffffff !important;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-tech-stack {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.tech-badge,
[data-theme="light"] .tech-badge {
    font-family: var(--font-data);
    font-size: 0.73rem;
    padding: 0.18rem 0.55rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--gold) !important;
    letter-spacing: 0.02em;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-legal-links a {
    color: #ffffff !important;
    transition: color 0.2s ease;
    font-size: 0.88rem;
}

.footer-legal-links a:hover {
    color: var(--gold) !important;
    text-decoration: none;
}

.back-to-top-btn,
[data-theme="light"] .back-to-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.25s ease;
}

.back-to-top-btn:hover,
[data-theme="light"] .back-to-top-btn:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    background: rgba(var(--gold-rgb), 0.15) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(var(--gold-rgb), 0.25);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .footer-col:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 3rem 0 2rem;
    }
    .footer-cta-card {
        padding: 1.75rem 1.25rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-cta-content p {
        max-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .footer-bottom-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Redesigned "Let's Talk About Your Project" Section
   ========================================================================== */

.lets-talk-section {
    background-color: #000000;
    background-image: radial-gradient(circle at 50% 0%, rgba(252, 199, 5, 0.08) 0%, #000000 75%);
    border-top: 1px solid rgba(252, 199, 5, 0.25);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.lets-talk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fcc705, transparent);
}

.lets-talk-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.lets-talk-info {
    display: flex;
    flex-direction: column;
}

.lets-talk-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-family: var(--font-head);
    letter-spacing: -0.02em;
}

.lets-talk-desc {
    color: #d0d0d8;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 52ch;
}

/* Contact Cards / Sales Email Highlights */
.sales-email-card {
    background: rgba(252, 199, 5, 0.06);
    border: 1.5px solid rgba(252, 199, 5, 0.3);
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sales-email-card:hover {
    border-color: #fcc705;
    background: rgba(252, 199, 5, 0.12);
    box-shadow: 0 8px 24px rgba(252, 199, 5, 0.2);
    transform: translateY(-2px);
}

.sales-email-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fcc705;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.sales-email-details label {
    display: block;
    font-family: var(--font-data);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fcc705;
    margin-bottom: 0.2rem;
}

.sales-email-link {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sales-email-link:hover {
    color: #fcc705;
    text-decoration: none;
}

.contact-meta-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: #dcdce0;
}

.contact-meta-item svg {
    color: #fcc705;
    flex-shrink: 0;
}

/* Contact Form Card */
.lets-talk-form-card {
    background: #08080a;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.lets-talk-form-card:hover {
    border-color: rgba(252, 199, 5, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(252, 199, 5, 0.1);
}

.form-header-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.form-response-time {
    font-family: var(--font-data);
    font-size: 0.78rem;
    color: #fcc705;
    background: rgba(252, 199, 5, 0.1);
    border: 1px solid rgba(252, 199, 5, 0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.talk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.talk-field-full {
    grid-column: span 2;
}

.talk-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.talk-form-group label {
    font-size: 0.86rem;
    font-weight: 600;
    color: #ffffff;
}

.talk-form-group input,
.talk-form-group select,
.talk-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.talk-form-group input:focus,
.talk-form-group select:focus,
.talk-form-group textarea:focus {
    outline: none;
    border-color: #fcc705;
    background: rgba(252, 199, 5, 0.04);
    box-shadow: 0 0 0 3px rgba(252, 199, 5, 0.15);
}

.talk-form-group select option {
    background: #101012;
    color: #ffffff;
}

.talk-form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.talk-submit-btn {
    width: 100%;
    background: #fcc705;
    color: #000000;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 6px 20px rgba(252, 199, 5, 0.3);
    margin-top: 0.5rem;
}

.talk-submit-btn:hover {
    background: #ffe066;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(252, 199, 5, 0.5);
}

.talk-success-alert {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.4);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.talk-success-alert h4 {
    color: #2ecc71;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.talk-success-alert p {
    color: #dcdce0;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .lets-talk-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .talk-form-grid {
        grid-template-columns: 1fr;
    }
    .talk-field-full {
        grid-column: span 1;
    }
    .lets-talk-form-card {
        padding: 1.75rem 1.25rem;
    }
}

/* ==========================================================================
   Detailed Product Pages & Product Catalog Styling
   ========================================================================== */

/* Products Listing Page */
.products-hero {
    padding: 3.5rem 0 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.products-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-chip {
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--rule-strong);
    text-decoration: none;
    transition: all 0.25s ease;
}

.filter-chip:hover,
.filter-chip.active {
    color: #000000;
    background: var(--gold);
    border-color: var(--gold);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(252, 199, 5, 0.25);
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .products-catalog-grid {
        grid-template-columns: 1fr;
    }
}

.catalog-card {
    background: #08080a;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card:hover {
    border-color: #fcc705;
    box-shadow: 0 16px 40px rgba(252, 199, 5, 0.2);
    transform: translateY(-6px);
}

.catalog-card-img-holder {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #000000;
}

.catalog-card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-card-img-holder img {
    transform: scale(1.05);
}

.catalog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.product-status-tag {
    font-family: var(--font-data);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.product-cat-tag {
    font-family: var(--font-data);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.catalog-card-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: var(--font-head);
}

.catalog-card-tagline {
    color: #b0b0b8;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.catalog-features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    margin-top: auto;
}

.feat-tag {
    font-size: 0.78rem;
    color: #d0d0d8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.catalog-card-footer {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.catalog-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: var(--gold);
    color: #000000;
}

.catalog-card-btn:hover {
    background: #ffe066;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(252, 199, 5, 0.35);
}

/* Single Product Detail Page */
.product-detail-hero {
    padding: 3rem 0 2rem;
    position: relative;
}

.product-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.product-breadcrumb:hover {
    color: var(--gold);
    transform: translateX(-3px);
    text-decoration: none;
}

.product-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.product-detail-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-head);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.product-detail-lede {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #d0d0d8;
    max-width: 60ch;
    margin: 0;
}

.product-metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

@media (max-width: 800px) {
    .product-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.metric-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.25s ease;
}

.metric-box:hover {
    border-color: rgba(252, 199, 5, 0.3);
}

.metric-val {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
    display: block;
}

.metric-lbl {
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.product-showcase-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(252, 199, 5, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    margin-bottom: 3.5rem;
    position: relative;
    background: #000000;
}

.product-showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3.5rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

@media (max-width: 960px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
}

.product-main-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.product-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-family: var(--font-head);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--gold);
    border-radius: 2px;
}

.product-desc-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d0d0d8;
}

.detail-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .detail-features-grid {
        grid-template-columns: 1fr;
    }
}

.detail-feat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.25s ease;
}

.detail-feat-card:hover {
    border-color: rgba(252, 199, 5, 0.3);
    background: rgba(252, 199, 5, 0.04);
}

.detail-feat-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
}

.detail-feat-head svg {
    color: var(--gold);
    flex-shrink: 0;
}

.detail-feat-desc {
    font-size: 0.88rem;
    color: #a0a0a8;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar Box */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #08080a;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
}

.sidebar-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: var(--font-head);
}

.sidebar-card-desc {
    font-size: 0.9rem;
    color: #a0a0a8;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-key {
    color: #888890;
}

.spec-val {
    color: #ffffff;
    font-weight: 600;
}

/* ═══ INTERACTIVE MODULE CONFIGURATOR & MATRIX ══════════════════════ */

.configurator-nav-deck {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    background: #08080c;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.5rem;
    max-width: 980px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.configurator-tab-btn {
    flex: 1 1 200px;
    background: transparent;
    border: none;
    color: #a0a0a8;
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    outline: none;
}

.configurator-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.configurator-tab-btn.active {
    background: var(--gold);
    color: #000000 !important;
    box-shadow: 0 4px 20px rgba(252, 199, 5, 0.4);
}

.module-display-card {
    background: #08080a;
    border: 1.5px solid rgba(252, 199, 5, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    margin-bottom: 4rem;
}

.module-panel {
    display: none;
    animation: fadeInModule 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-panel.active {
    display: block;
}

@keyframes fadeInModule {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Feature Matrix Table */
.matrix-container {
    background: #08080a;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow-x: auto;
    margin-bottom: 4rem;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 750px;
    background: #08080a;
}

.matrix-table th, .matrix-table td {
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    color: #ffffff !important;
}

.matrix-table th {
    background: #0f0f14;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff !important;
    border-bottom: 1.5px solid rgba(252, 199, 5, 0.3);
}

.matrix-table td strong {
    color: #ffffff !important;
    font-weight: 700;
}

.matrix-table td:first-child,
.matrix-table th:first-child {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.matrix-table th:first-child {
    color: var(--gold) !important;
    background: #14141c;
}

.matrix-table tr:hover td {
    background: rgba(252, 199, 5, 0.03);
}

.matrix-table tr:hover td:first-child {
    background: rgba(252, 199, 5, 0.08);
}

.matrix-check {
    color: #2ecc71 !important;
    font-weight: 800;
    font-size: 1.1rem;
}

.matrix-cross {
    color: #888898 !important;
    font-size: 0.88rem;
}

.matrix-highlight-val {
    color: var(--gold) !important;
    font-weight: 700;
    font-family: var(--font-data);
}

/* Custom Module Configurator Builder */
.builder-box {
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.98) 0%, rgba(5, 5, 8, 0.98) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 24px 60px rgba(252, 199, 5, 0.15);
}

.builder-module-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .builder-module-checkboxes {
        grid-template-columns: 1fr;
    }
}

.builder-checkbox-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.builder-checkbox-item:hover, .builder-checkbox-item.selected {
    background: rgba(252, 199, 5, 0.08);
    border-color: rgba(252, 199, 5, 0.4);
}

.builder-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    margin-top: 3px;
    cursor: pointer;
}

/* ═══ ACUITAS360 STYLE PRODUCT FEATURE LAYOUTS ═════════════════════ */

.acuitas-feature-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.acuitas-feature-section.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.acuitas-heading {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-head);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.acuitas-paragraph {
    font-size: 1.08rem;
    color: #b0b0c0;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.acuitas-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.acuitas-card {
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.2rem 1.35rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.acuitas-card:hover {
    border-color: rgba(252, 199, 5, 0.4);
    transform: translateY(-3px);
}

.acuitas-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.acuitas-card-desc {
    font-size: 0.86rem;
    color: #a0a0a8;
    line-height: 1.5;
    margin: 0;
}

.acuitas-visual {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    background: #000000;
    aspect-ratio: 4 / 3;
}

.acuitas-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fullscreen CTA Section */
.fullscreen-cta-section {
    background: linear-gradient(135deg, rgba(252, 199, 5, 0.08) 0%, rgba(5, 5, 8, 0.98) 100%);
    border-top: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

/* USP Cards */
.usp-card {
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(252, 199, 5, 0.15);
    transform: translateY(-4px);
}

@media (max-width: 960px) {
    .acuitas-feature-section,
    .acuitas-feature-section.reverse {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    .acuitas-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   Product Tab Switcher Component
   ══════════════════════════════════════════════════════════════════════════ */
.product-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0 1rem;
    flex-wrap: wrap;
}

.product-tab-btn {
    background: #0d0d14;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #e0e0e8;
    padding: 1.15rem 2.4rem;
    border-radius: 16px;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    outline: none;
}

.product-tab-btn:hover {
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(252, 199, 5, 0.2);
}

.product-tab-btn.active {
    background: linear-gradient(135deg, rgba(252, 199, 5, 0.25) 0%, rgba(15, 15, 22, 0.98) 100%);
    border-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 14px 40px rgba(252, 199, 5, 0.3);
}

.product-tab-pill {
    background: var(--gold);
    color: #000000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-tab-btn:not(.active) .product-tab-pill {
    background: rgba(255, 255, 255, 0.12);
    color: #d0d0d8;
}

/* High Contrast Input & Select Fixes */
select option {
    background-color: #101018 !important;
    color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   Services Page Redesign Styles (Cybernetic Gold & Dark System)
   ══════════════════════════════════════════════════════════════════════════ */

.services-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 2.5rem auto 1.5rem;
    flex-wrap: wrap;
    max-width: 1100px;
}

.services-filter-btn {
    background: rgba(13, 13, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cfd0dc;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    outline: none;
    backdrop-filter: blur(8px);
}

.services-filter-btn svg {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.2s ease;
}

.services-filter-btn:hover {
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 199, 5, 0.15);
}

.services-filter-btn:hover svg {
    transform: scale(1.15);
}

.services-filter-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, #e5b000 100%);
    border-color: var(--gold);
    color: #050508;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(252, 199, 5, 0.35);
}

.services-filter-btn.active svg {
    color: #050508;
}

.services-count-indicator {
    text-align: center;
    color: #8e8ea4;
    font-size: 0.82rem;
    font-family: var(--font-data);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detailed-card {
    background: linear-gradient(145deg, rgba(14, 14, 22, 0.88) 0%, rgba(8, 8, 12, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 199, 5, 0.45);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.7), 0 0 30px rgba(252, 199, 5, 0.12);
}

.service-detailed-card:hover::before {
    opacity: 1;
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
}

.service-top-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(252, 199, 5, 0.16) 0%, rgba(252, 199, 5, 0.04) 100%);
    border: 1.5px solid rgba(252, 199, 5, 0.35);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(252, 199, 5, 0.15);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.service-icon-box svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-icon-box {
    transform: scale(1.08) rotate(4deg);
    background: rgba(252, 199, 5, 0.22);
    border-color: var(--gold);
}

.service-detailed-card:hover .service-icon-box svg {
    transform: scale(1.1);
}

.service-cat-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cfd0dc;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-family: var(--font-data);
}

.service-status-badge {
    background: rgba(252, 199, 5, 0.12);
    border: 1px solid rgba(252, 199, 5, 0.35);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.28rem 0.7rem;
    border-radius: 20px;
    font-family: var(--font-data);
}

.service-card-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.4rem;
    line-height: 1.25;
    font-family: var(--font-head);
    transition: color 0.2s ease;
}

.service-detailed-card:hover .service-card-title {
    color: var(--gold-soft);
}

.service-card-tagline {
    font-size: 0.98rem;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 0.85rem;
    line-height: 1.45;
}

.service-card-desc {
    font-size: 0.93rem;
    color: #b4b4c8;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

/* 2x3 Structured Capabilities Grid */
.service-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.1rem;
    margin: 1.25rem 0 1.5rem;
    padding: 1.25rem 1.4rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.cap-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.84rem;
    color: #e0e0ea;
    font-weight: 500;
    line-height: 1.35;
}

.cap-item .cap-bullet {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.service-tech-stack {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
}

.service-tech-label {
    font-family: var(--font-data);
    font-size: 0.72rem;
    color: #8a8a9e;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 0.25rem;
}

.service-tech-tag {
    font-family: var(--font-data);
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d8d8ea;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.service-detailed-card:hover .service-tech-tag {
    border-color: rgba(252, 199, 5, 0.35);
    color: var(--gold-soft);
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.4rem;
    margin-top: 1.4rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-card-guarantee {
    font-size: 0.84rem;
    color: #a8a8c0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.service-inquire-btn {
    background: var(--gold);
    color: #050508;
    border: 1px solid var(--gold);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 18px rgba(252, 199, 5, 0.25);
    text-decoration: none;
}

.service-inquire-btn:hover {
    background: #ffe27a;
    border-color: #ffe27a;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(252, 199, 5, 0.4);
}

/* 4-Phase Delivery Framework */
.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.lifecycle-card {
    background: #09090f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    position: relative;
    transition: all 0.3s ease;
}

.lifecycle-card:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 199, 5, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.lifecycle-number {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-data);
    color: var(--gold);
    opacity: 0.85;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.lifecycle-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.6rem;
    font-family: var(--font-head);
}

.lifecycle-desc {
    font-size: 0.88rem;
    color: #b0b0c4;
    line-height: 1.55;
    margin: 0 0 1.2rem;
}

.lifecycle-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(252, 199, 5, 0.12);
    border: 1px solid rgba(252, 199, 5, 0.3);
    padding: 0.25rem 0.65rem;
    border-radius: 14px;
}

/* Comparison Table */
.comparison-table-wrapper {
    background: #09090f;
    border: 1px solid rgba(252, 199, 5, 0.35);
    border-radius: 20px;
    overflow-x: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    margin-top: 2.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 680px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
    background: rgba(13, 13, 20, 0.95);
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
}

.comparison-table th.highlight-col {
    background: rgba(252, 199, 5, 0.12);
    border-left: 1px solid rgba(252, 199, 5, 0.3);
    border-right: 1px solid rgba(252, 199, 5, 0.3);
    color: var(--gold);
}

.comparison-table td.highlight-col {
    background: rgba(252, 199, 5, 0.04);
    border-left: 1px solid rgba(252, 199, 5, 0.2);
    border-right: 1px solid rgba(252, 199, 5, 0.2);
    font-weight: 600;
    color: #ffffff;
}

.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:hover td.highlight-col {
    background-color: rgba(252, 199, 5, 0.08);
}

/* FAQ Accordion */
.faq-accordion-box {
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: #09090f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(252, 199, 5, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
    padding: 1.25rem 1.6rem;
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.6rem 1.4rem;
    font-size: 0.93rem;
    color: #b8b8ce;
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .services-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lifecycle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    .lifecycle-grid {
        grid-template-columns: 1fr;
    }
    .services-filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

/* Light Theme Adaptations */
[data-theme="light"] .service-detailed-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .service-card-title {
    color: #14141a;
}

[data-theme="light"] .service-card-desc {
    color: #4a4a58;
}

[data-theme="light"] .service-checklist li {
    color: #2e2e38;
}

[data-theme="light"] .service-tech-tag {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: #383845;
}

[data-theme="light"] .lifecycle-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .lifecycle-title {
    color: #14141a;
}

[data-theme="light"] .lifecycle-desc {
    color: #4a4a58;
}

[data-theme="light"] .comparison-table-wrapper {
    background: #ffffff;
    border-color: rgba(252, 199, 5, 0.5);
}

[data-theme="light"] .comparison-table th {
    background: #f4f4f8;
    color: #14141a;
}

[data-theme="light"] .comparison-table td {
    color: #383845;
}

[data-theme="light"] .comparison-table td.highlight-col {
    color: #14141a;
    background: rgba(252, 199, 5, 0.08);
}

[data-theme="light"] .faq-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .faq-question {
    color: #14141a;
}

[data-theme="light"] .faq-answer {
    color: #4a4a58;
}

/* ══════════════════════════════════════════════════════════════════════════
   About Us Page Redesign Styles (Skills & Products Showcase)
   ══════════════════════════════════════════════════════════════════════════ */

/* Milestones Bar */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    text-align: left;
}

.milestone-item {
    background: rgba(13, 13, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.milestone-item:hover {
    transform: translateY(-3px);
    border-color: rgba(252, 199, 5, 0.35);
}

.milestone-val {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-data);
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.milestone-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.milestone-sub {
    font-size: 0.8rem;
    color: #a0a0b8;
    line-height: 1.4;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.skill-card {
    background: linear-gradient(145deg, rgba(14, 14, 22, 0.88) 0%, rgba(8, 8, 12, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 199, 5, 0.45);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(252, 199, 5, 0.12);
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.skill-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(252, 199, 5, 0.16) 0%, rgba(252, 199, 5, 0.04) 100%);
    border: 1.5px solid rgba(252, 199, 5, 0.35);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(252, 199, 5, 0.12);
    transition: transform 0.3s ease;
}

.skill-icon-box svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
}

.skill-card:hover .skill-icon-box {
    transform: scale(1.08) rotate(4deg);
    border-color: var(--gold);
}

.skill-badge {
    background: rgba(252, 199, 5, 0.12);
    border: 1px solid rgba(252, 199, 5, 0.35);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.28rem 0.7rem;
    border-radius: 20px;
    font-family: var(--font-data);
}

.skill-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.35rem;
    line-height: 1.25;
    font-family: var(--font-head);
    transition: color 0.2s ease;
}

.skill-card:hover .skill-title {
    color: var(--gold-soft);
}

.skill-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 0.8rem;
}

.skill-desc {
    font-size: 0.9rem;
    color: #b0b0c4;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.skill-competencies-block {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.25rem;
}

.skill-competencies-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.skill-competencies-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.skill-competencies-list li {
    font-size: 0.83rem;
    color: #dcdce8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.35;
}

.skill-competencies-list li .bullet {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.skill-tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

.skill-tech-chip {
    font-family: var(--font-data);
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d8d8ea;
    padding: 0.22rem 0.55rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.skill-card:hover .skill-tech-chip {
    border-color: rgba(252, 199, 5, 0.35);
    color: var(--gold-soft);
}

/* About Products Showcase Grid */
.about-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 2.5rem auto 0;
}

.about-product-card {
    background: linear-gradient(145deg, rgba(14, 14, 22, 0.92) 0%, rgba(8, 8, 12, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.about-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 199, 5, 0.45);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.75), 0 0 35px rgba(252, 199, 5, 0.15);
}

.about-product-img-wrap {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.about-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.about-product-card:hover .about-product-img-wrap img {
    transform: scale(1.05);
}

.about-product-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.15) 0%, rgba(8, 12, 20, 0.85) 100%);
}

.about-product-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(252, 199, 5, 0.45);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    font-family: var(--font-data);
}

.about-product-body {
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.about-product-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.35rem;
    font-family: var(--font-head);
    line-height: 1.25;
    transition: color 0.2s ease;
}

.about-product-card:hover .about-product-title {
    color: var(--gold-soft);
}

.about-product-tagline {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 0.85rem;
}

.about-product-desc {
    font-size: 0.92rem;
    color: #b0b0c4;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.about-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1rem;
}

.about-product-features li {
    font-size: 0.84rem;
    color: #dcdce8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-product-features li .check {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.4rem;
    margin-top: auto;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-product-btn {
    background: var(--gold);
    color: #050508;
    border: 1px solid var(--gold);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(252, 199, 5, 0.25);
}

.about-product-btn:hover {
    background: #ffe27a;
    border-color: #ffe27a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 199, 5, 0.4);
    color: #000000;
}

/* Philosophy Tenets */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    margin-top: 2.5rem;
}

.philosophy-card {
    background: #09090f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 199, 5, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.philosophy-num {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-data);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.philosophy-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem;
    font-family: var(--font-head);
}

.philosophy-desc {
    font-size: 0.88rem;
    color: #b0b0c4;
    line-height: 1.6;
    margin: 0;
}

/* Team Grid V2 */
.team-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.team-card-v2 {
    background: #09090f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-v2:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 199, 5, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(252, 199, 5, 0.1);
}

.team-avatar-v2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(252, 199, 5, 0.25) 0%, rgba(15, 15, 22, 0.95) 100%);
    border: 2px solid var(--gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-head);
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 20px rgba(252, 199, 5, 0.2);
    overflow: hidden;
}

.team-avatar-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name-v2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.3rem;
    font-family: var(--font-head);
}

.team-role-v2 {
    display: inline-block;
    background: rgba(252, 199, 5, 0.12);
    border: 1px solid rgba(252, 199, 5, 0.35);
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-family: var(--font-data);
    margin-bottom: 1rem;
}

.team-bio-v2 {
    font-size: 0.88rem;
    color: #b0b0c4;
    line-height: 1.6;
    margin: 0 0 1.2rem;
}

.team-linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-linkedin-btn:hover {
    color: var(--gold-soft);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-products-grid {
        grid-template-columns: 1fr;
    }
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .milestones-grid {
        grid-template-columns: 1fr;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .team-grid-v2 {
        grid-template-columns: 1fr;
    }
    .about-product-features {
        grid-template-columns: 1fr;
    }
}

/* Light Mode Overrides */
[data-theme="light"] .milestone-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .milestone-title {
    color: #14141a;
}

[data-theme="light"] .milestone-sub {
    color: #4a4a58;
}

[data-theme="light"] .skill-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .skill-title {
    color: #14141a;
}

[data-theme="light"] .skill-desc {
    color: #4a4a58;
}

[data-theme="light"] .skill-competencies-block {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .skill-competencies-list li {
    color: #2e2e38;
}

[data-theme="light"] .skill-tech-chip {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: #383845;
}

[data-theme="light"] .about-product-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .about-product-title {
    color: #14141a;
}

[data-theme="light"] .about-product-desc {
    color: #4a4a58;
}

[data-theme="light"] .about-product-features li {
    color: #2e2e38;
}

[data-theme="light"] .philosophy-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .philosophy-title {
    color: #14141a;
}

[data-theme="light"] .philosophy-desc {
    color: #4a4a58;
}

[data-theme="light"] .team-card-v2 {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .team-name-v2 {
    color: #14141a;
}

[data-theme="light"] .team-bio-v2 {
    color: #4a4a58;
}

/* ═══ CONSULTATION PAGE (CONSULTANT + FORM ARENA) ═════════════════ */

.consult-hero {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.consult-hero .section-subheadline {
    margin: 0 auto 2rem;
    text-align: center;
    max-width: 780px;
}

.consult-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.consult-trust-item {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.3s ease;
}

.consult-trust-item:hover {
    border-color: rgba(var(--gold-rgb), 0.35);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
}

.consult-trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--gold-rgb), 0.12);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consult-trust-text strong {
    display: block;
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 700;
}

.consult-trust-text span {
    display: block;
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 0.15rem;
}

/* Consultation Arena (2-Column Grid) */
.consultation-arena-grid {
    display: grid;
    grid-template-columns: minmax(360px, 440px) 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Left Column: Consultant Standing Profile Card */
.consultant-profile-card {
    background: rgba(14, 14, 22, 0.92);
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 100px;
    transition: border-color 0.3s ease;
}

.consultant-profile-card:hover {
    border-color: rgba(var(--gold-rgb), 0.45);
}

.consultant-img-container {
    position: relative;
    width: 100%;
    background: #09090e;
    overflow: hidden;
}

.consultant-standing-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultant-profile-card:hover .consultant-standing-img {
    transform: scale(1.02);
}

.consultant-status-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #4ade80;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseGlow 2s infinite ease-in-out;
}

.consultant-img-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.8rem 1.2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 16, 0.7) 40%, rgba(14, 14, 22, 1) 100%);
    z-index: 2;
}

.consultant-name {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.consultant-role {
    font-family: var(--font-data);
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.35rem;
    font-weight: 600;
}

.consultant-card-body {
    padding: 1.4rem 1.8rem 1.8rem;
}

.consultant-body-title {
    font-family: var(--font-data);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consult-value-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.consult-val-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

.consult-val-item strong {
    color: var(--ink);
    font-weight: 600;
}

.val-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.14);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.consult-direct-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.2rem;
}

.consult-direct-head {
    font-size: 0.8rem;
    font-family: var(--font-data);
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.consult-direct-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.consult-direct-row:last-child {
    margin-bottom: 0;
}

.consult-direct-row:hover {
    color: var(--gold);
}

.consult-direct-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--rule);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Right Column: Consultation Form Card */
.consultation-form-card {
    background: rgba(14, 14, 22, 0.94);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    border-radius: 22px;
    padding: 2.8rem 2.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
}

.form-card-head {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule);
}

.form-card-head h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.form-card-head p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.form-section-title {
    font-family: var(--font-data);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 1.8rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
}

/* Budget and Timeline Pill Selector Grids */
.pill-selector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.pill-option {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.pill-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pill-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--rule);
    border-radius: 10px;
    text-align: center;
    transition: all 0.2s ease;
}

.pill-option:hover .pill-box {
    background: rgba(var(--gold-rgb), 0.04);
    border-color: rgba(var(--gold-rgb), 0.3);
}

.pill-option input[type="radio"]:checked + .pill-box {
    background: rgba(var(--gold-rgb), 0.14);
    border-color: var(--gold);
    box-shadow: 0 0 14px rgba(var(--gold-rgb), 0.25);
}

.pill-main {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.2s ease;
}

.pill-option input[type="radio"]:checked + .pill-box .pill-main {
    color: var(--gold);
}

.pill-sub {
    font-family: var(--font-data);
    font-size: 0.7rem;
    color: var(--ink-soft);
    margin-top: 0.15rem;
}

/* NDA Checkbox */
.nda-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    background: rgba(var(--gold-rgb), 0.04);
    border: 1px solid rgba(var(--gold-rgb), 0.18);
    border-radius: 10px;
    cursor: pointer;
    margin: 1.2rem 0 1.8rem 0;
    transition: all 0.2s ease;
}

.nda-checkbox-label:hover {
    background: rgba(var(--gold-rgb), 0.08);
    border-color: rgba(var(--gold-rgb), 0.35);
}

.nda-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    margin-top: 2px;
    cursor: pointer;
}

.nda-checkbox-text {
    font-size: 0.86rem;
    color: var(--ink);
    line-height: 1.45;
}

.nda-checkbox-text span {
    display: block;
    font-size: 0.76rem;
    color: var(--ink-soft);
    margin-top: 0.2rem;
}

/* Submit Consultation CTA Button */
.btn-submit-consultation {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #fcc705 0%, #e5b300 100%);
    color: #040406 !important;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.35);
    letter-spacing: 0.02em;
}

.btn-submit-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(var(--gold-rgb), 0.55);
    background: linear-gradient(135deg, #ffd738 0%, #fcc705 100%);
}

.btn-submit-consultation:active {
    transform: translateY(0);
}

.form-privacy-note {
    font-size: 0.8rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Success Card */
.consult-success-card {
    text-align: center;
    padding: 3rem 2rem;
}

.success-badge-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    animation: pulseGlow 3s infinite ease-in-out;
}

.success-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.8rem 0;
}

.success-msg {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.success-steps-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.8rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.success-steps-box h4 {
    font-family: var(--font-data);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem 0;
}

.success-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.success-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.step-check-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.success-step-item strong {
    color: var(--ink);
}

/* Discovery 3-Phase Process Section */
.consult-process-section {
    padding: 4.5rem 0 3.5rem;
    border-top: 1px solid var(--rule);
}

.consult-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.consult-phase-card {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.consult-phase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--gold-rgb), 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.consult-phase-num {
    font-family: var(--font-data);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.12);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.consult-phase-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.consult-phase-desc {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

/* Consultation FAQs Section */
.consult-faq-section {
    padding: 4rem 0;
    border-top: 1px solid var(--rule);
}

.consult-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.consult-faq-item {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.consult-faq-item:hover {
    border-color: rgba(var(--gold-rgb), 0.35);
}

.consult-faq-btn {
    width: 100%;
    padding: 1.3rem 1.6rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    outline: none;
}

.consult-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--rule);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.consult-faq-item.active .consult-faq-icon {
    transform: rotate(45deg);
    background: rgba(var(--gold-rgb), 0.15);
}

.consult-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 1.6rem;
}

.consult-faq-item.active .consult-faq-answer {
    max-height: 300px;
    padding: 0 1.6rem 1.4rem;
}

.consult-faq-answer p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}

/* Regional Delivery Hubs Grid */
.consult-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.consult-office-card {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 1.6rem;
    transition: all 0.3s ease;
}

.consult-office-card:hover {
    border-color: rgba(var(--gold-rgb), 0.3);
    transform: translateY(-3px);
}

.consult-office-flag {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    display: block;
}

.consult-office-card h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.3rem 0;
}

.consult-office-card p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin: 0 0 0.85rem 0;
    line-height: 1.5;
}

.consult-office-meta {
    font-family: var(--font-data);
    font-size: 0.78rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Responsive Media Queries for Consultation Arena */
@media (max-width: 1080px) {
    .consultation-arena-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .consultant-profile-card {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    .consult-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .consult-process-grid {
        grid-template-columns: 1fr;
    }
    .consult-offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .consult-trust-bar {
        grid-template-columns: 1fr;
    }
    .pill-selector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .consultation-form-card {
        padding: 2rem 1.4rem;
    }
    .consultant-card-body {
        padding: 1.2rem;
    }
    .consultant-standing-img {
        height: 380px;
    }
}

/* Light Theme Overrides for Consultation Arena */
[data-theme="light"] .consult-trust-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .consult-trust-text strong {
    color: #14141a;
}

[data-theme="light"] .consult-trust-text span {
    color: #555566;
}

[data-theme="light"] .consultant-profile-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .consultant-card-body {
    background: #ffffff;
}

[data-theme="light"] .consult-val-item {
    color: #444455;
}

[data-theme="light"] .consult-val-item strong {
    color: #14141a;
}

[data-theme="light"] .consult-direct-box {
    background: #f6f6f4;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .consult-direct-row {
    color: #22222e;
}

[data-theme="light"] .consult-direct-icon {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .consultation-form-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-card-head h2 {
    color: #14141a;
}

[data-theme="light"] .form-card-head p {
    color: #555566;
}

[data-theme="light"] .pill-box {
    background: #f8f8f6;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .pill-main {
    color: #14141a;
}

[data-theme="light"] .pill-sub {
    color: #666677;
}

[data-theme="light"] .nda-checkbox-label {
    background: #fcf8e8;
    border-color: rgba(217, 165, 0, 0.35);
}

[data-theme="light"] .nda-checkbox-text {
    color: #14141a;
}

[data-theme="light"] .nda-checkbox-text span {
    color: #555566;
}

[data-theme="light"] .consult-phase-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .consult-phase-title {
    color: #14141a;
}

[data-theme="light"] .consult-phase-desc {
    color: #555566;
}

[data-theme="light"] .consult-faq-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .consult-faq-btn {
    color: #14141a;
}

[data-theme="light"] .consult-faq-answer p {
    color: #4a4a58;
}

[data-theme="light"] .consult-office-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .consult-office-card h4 {
    color: #14141a;
}

[data-theme="light"] .consult-office-card p {
    color: #555566;
}

/* ═══ WHITE BLOG PAGE & BLACK CARDS ARCHITECTURE ══════════════════ */

body.blog-white-page {
    background-color: #ffffff !important;
    color: #14141a !important;
}

/* Hero Banner Section styles for pages with dark banner image above */
.hero-banner-section {
    position: relative;
    overflow: hidden;
}

.hero-banner-section h1 {
    color: #ffffff !important;
}

.hero-banner-section .text-gold-accent {
    color: var(--gold) !important;
}

.hero-banner-section .lede,
.hero-banner-section p {
    color: #d0d0e2 !important;
}


/* White Blog Canvas Hero */
.blog-hero {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.blog-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-data);
    font-size: 0.8rem;
    font-weight: 700;
    color: #8f6500;
    background: rgba(252, 199, 5, 0.15);
    border: 1px solid rgba(252, 199, 5, 0.45);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.blog-hero-eyebrow .eyebrow-pulse-dot {
    background-color: #d9a500;
    box-shadow: 0 0 8px #d9a500;
}

.blog-hero h1 {
    color: #0d0d14 !important;
    font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 1.1rem 0;
    text-transform: none;
}

.blog-hero-subhead {
    color: #4a4a5a !important;
    font-size: 1.15rem;
    line-height: 1.65;
    margin: 0 auto 2.5rem;
    max-width: 780px;
}

/* Category Filter Bar on White Page */
.blog-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1.8rem;
}

.blog-filter-pills {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.blog-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.14);
    color: #2b2b36;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.blog-filter-pill:hover {
    border-color: #000000;
    background: #f7f7f9;
    color: #000000;
    transform: translateY(-1px);
}

.blog-filter-pill.active {
    background: #000000 !important;
    color: #fcc705 !important;
    border-color: #000000 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
    font-weight: 700;
}

.blog-count-badge {
    font-family: var(--font-data);
    font-size: 0.82rem;
    color: #606072;
    background: #f2f2f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
}

/* ═══ THE BLACK BLOG CARDS GRID (ON WHITE PAGE) ═══════════════════ */

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-bottom: 4rem;
}

/* Individual Black Card */
.blog-card-black {
    background: #050508 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.blog-card-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-black:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--gold-rgb), 0.55) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25), 0 0 25px rgba(var(--gold-rgb), 0.15);
}

.blog-card-black:hover::before {
    opacity: 1;
}

/* Black Card Top Visual Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.blog-card-cat {
    background: rgba(var(--gold-rgb), 0.14);
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    color: var(--gold);
    font-family: var(--font-data);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-card-readtime {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #9292a4;
    font-size: 0.78rem;
    font-family: var(--font-data);
}

.blog-card-title {
    font-family: var(--font-head);
    font-size: 1.32rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.32;
    margin: 0 0 0.85rem 0;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.blog-card-title a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-black:hover .blog-card-title,
.blog-card-black:hover .blog-card-title a {
    color: var(--gold) !important;
}

.blog-card-excerpt {
    color: #a4a4b8 !important;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 1.8rem 0;
    flex-grow: 1;
    font-weight: 400;
}

/* Black Card Footer */
.blog-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.blog-card-author-box {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.blog-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.15);
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-data);
    flex-shrink: 0;
}

.blog-author-name {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #e8e8f0;
}

.blog-post-date {
    display: block;
    font-size: 0.74rem;
    color: #747488;
    font-family: var(--font-data);
}

.blog-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold) !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.blog-card-black:hover .blog-card-action {
    transform: translateX(4px);
    color: var(--gold-soft) !important;
}

/* ═══ FEATURED MASTER BLACK CARD (TOP HIGHLIGHT) ═══════════════════ */

.blog-featured-card {
    background: #06060a !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 22px;
    padding: 3rem 2.8rem;
    margin-bottom: 2.8rem;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
    color: #ffffff;
}

.blog-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #ffe27a 100%);
}

.blog-featured-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--gold-rgb), 0.55) !important;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24), 0 0 30px rgba(var(--gold-rgb), 0.15);
}

.featured-content-left {
    display: flex;
    flex-direction: column;
}

.featured-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-data);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.15);
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    align-self: flex-start;
}

.featured-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.22;
    margin: 0 0 1rem 0;
    letter-spacing: -0.015em;
}

.featured-title a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-featured-card:hover .featured-title a {
    color: var(--gold) !important;
}

.featured-excerpt {
    color: #b0b0c2 !important;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1.8rem 0;
}

.featured-author-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Featured Card Right Visual/Code Diagram */
.featured-visual-box {
    background: #0f0f16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.8rem;
    font-family: var(--font-data);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.visual-chip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27c93f; }

.visual-filename {
    font-size: 0.74rem;
    color: #7e7e92;
}

.visual-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: #cfcfe0;
}

.visual-spec-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.visual-spec-item .bullet {
    color: var(--gold);
    font-weight: 800;
}

/* ═══ BOTTOM CTA CARD ON WHITE PAGE ════════════════════════════════ */

.blog-cta-card {
    background: #000000 !important;
    border: 1px solid rgba(var(--gold-rgb), 0.3) !important;
    border-radius: 22px;
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    margin-bottom: 4rem;
    color: #ffffff;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.blog-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, #ffe27a 100%);
}

.blog-cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 0.6rem 0;
    line-height: 1.2;
}

.blog-cta-content p {
    color: #a4a4b8 !important;
    font-size: 1.05rem;
    margin: 0;
    max-width: 620px;
    line-height: 1.6;
}

.blog-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-blog-consult {
    background: var(--gold);
    color: #000000 !important;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    padding: 0.95rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.35);
}

.btn-blog-consult:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
}

/* ═══ PAGINATION ON WHITE PAGE ═════════════════════════════════════ */

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 2rem 0 4rem;
}

.blog-page-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    background: #000000;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.88rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.blog-page-btn:hover {
    background: var(--gold);
    color: #000000 !important;
    border-color: var(--gold);
    transform: translateY(-1px);
}

.blog-page-info {
    font-family: var(--font-data);
    font-size: 0.88rem;
    color: #555568;
    font-weight: 600;
}

/* ═══ RESPONSIVE BREAKPOINTS FOR WHITE BLOG / BLACK CARDS ══════════ */

@media (max-width: 1100px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    .blog-featured-card {
        grid-template-columns: 1fr;
        padding: 2.2rem 2rem;
    }
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
    .blog-controls-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-cta-card {
        padding: 2.2rem 1.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══ INDIVIDUAL BLOG POST READING VIEW (WHITE CANVAS) ═════════════ */

.blog-article {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #ffffff;
}

.article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.back-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #14141a;
    background: #f0f0f3;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.back-link-pill:hover {
    background: #000000;
    color: var(--gold);
    border-color: #000000;
    transform: translateX(-3px);
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #0c0c12 !important;
    line-height: 1.18;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
    text-transform: none;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #606072;
    flex-wrap: wrap;
}

.byline-sep {
    color: #aaaab6;
}

/* Article Body Prose */
.article-body {
    max-width: 820px;
    margin: 0 auto;
}

.prose {
    font-family: var(--font-body);
    font-size: 1.12rem;
    line-height: 1.78;
    color: #272733;
}

.prose p {
    margin: 0 0 1.6rem 0;
    max-width: none;
    color: #2e2e3d;
}

.prose h2 {
    font-family: var(--font-head);
    font-size: 1.85rem;
    font-weight: 800;
    color: #0c0c12;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
    text-transform: none;
}

.prose h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #12121c;
    margin: 2rem 0 0.8rem 0;
    line-height: 1.3;
}

.prose ul, .prose ol {
    margin: 0 0 1.6rem 1.4rem;
    padding: 0;
    color: #2e2e3d;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.prose blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.6rem;
    border-left: 4px solid var(--gold);
    background: #f7f7f9;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #1a1a24;
}

.prose code {
    font-family: var(--font-data);
    font-size: 0.88em;
    background: #f0f0f4;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.2em 0.45em;
    border-radius: 4px;
    color: #925800;
}

.prose pre {
    background: #08080c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    overflow-x: auto;
    color: #e0e0ea;
    font-family: var(--font-data);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 2rem 0;
}

.prose pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
}

/* Social Share Bar */
.article-share {
    margin: 3rem 0;
    padding: 1.6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font-family: var(--font-data);
    font-size: 0.84rem;
    font-weight: 700;
    color: #555566;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    background: #000000;
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.share-pill-btn:hover {
    background: var(--gold);
    color: #000000 !important;
    border-color: var(--gold);
    transform: translateY(-1px);
}

/* ═══ FULL SIZE BLOG ARENA & BALANCED GRID (1720px) ═══════════════ */

.blog-fullsize-wrap {
    max-width: 1720px;
    width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Full Size Hero */
.blog-hero-full {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0 2.5rem;
    text-align: center;
    max-width: 1180px;
    margin: 0 auto;
}

.blog-hero-full h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 800;
    color: #0d0d14 !important;
    line-height: 1.14;
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem 0;
    text-transform: none;
}

.blog-hero-full .blog-hero-subhead {
    font-size: 1.2rem;
    color: #4a4a5c !important;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    max-width: 880px;
}

/* Trust / Scope Metrics Strip */
.blog-metrics-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.blog-metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #f6f6f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-size: 0.86rem;
    color: #2b2b38;
    font-weight: 600;
}

.blog-metric-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9a500;
    display: inline-block;
}

/* Full Size Controls Bar */
.blog-controls-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1.8rem;
}

/* Full Size Featured Master Card */
.blog-featured-card-full {
    background: #06060a !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 24px;
    padding: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 3.5rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
    color: #ffffff;
    width: 100%;
}

.blog-featured-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #ffe27a 50%, var(--gold) 100%);
}

.blog-featured-card-full:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--gold-rgb), 0.55) !important;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.26), 0 0 30px rgba(var(--gold-rgb), 0.15);
}

.featured-full-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    margin: 0 0 1.2rem 0;
    letter-spacing: -0.02em;
}

.featured-full-title a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-featured-card-full:hover .featured-full-title a {
    color: var(--gold) !important;
}

.featured-full-excerpt {
    color: #b0b0c4 !important;
    font-size: 1.08rem;
    line-height: 1.68;
    margin: 0 0 2rem 0;
}

/* Full Size 3-Column Grid */
.blog-cards-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-bottom: 4.5rem;
    width: 100%;
}

/* Individual Full Size Black Card */
.blog-card-full {
    background: #06060a !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px;
    padding: 2.4rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 440px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.blog-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-full:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--gold-rgb), 0.55) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25), 0 0 25px rgba(var(--gold-rgb), 0.15);
}

.blog-card-full:hover::before {
    opacity: 1;
}

.card-title-full {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.32;
    margin: 0 0 0.95rem 0;
    letter-spacing: -0.015em;
    transition: color 0.2s ease;
}

.card-title-full a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-full:hover .card-title-full,
.blog-card-full:hover .card-title-full a {
    color: var(--gold) !important;
}

.card-excerpt-full {
    color: #a4a4b8 !important;
    font-size: 0.94rem;
    line-height: 1.62;
    margin: 0 0 1.8rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.card-tech-tag {
    font-family: var(--font-data);
    font-size: 0.72rem;
    color: #88889a;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* Full Size Bottom CTA */
.blog-cta-full {
    background: #040406 !important;
    border: 1px solid rgba(var(--gold-rgb), 0.3) !important;
    border-radius: 24px;
    padding: clamp(2.5rem, 4vw, 3.8rem) clamp(2rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    margin-bottom: 4.5rem;
    color: #ffffff;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.blog-cta-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #ffe27a 50%, var(--gold) 100%);
}

/* Responsive queries for full size */
@media (max-width: 1400px) {
    .blog-cards-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .blog-featured-card-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 820px) {
    .blog-cards-grid-full {
        grid-template-columns: 1fr;
    }
    .blog-fullsize-wrap {
        width: 100%;
        padding: 0 1.2rem;
    }
    .blog-cta-full {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.2rem 1.8rem;
    }
}

/* ═══ WHITE CANVAS & BLACK CARDS AESTHETIC SYSTEM ═════════════════════ */

body.white-canvas {
    background-color: #ffffff !important;
    color: #14141a !important;
}

/* Page Headings on White Canvas */
body.white-canvas h1.page-hero-title,
body.white-canvas .page-hero-title,
body.white-canvas .section-heading-dark {
    color: #0d0d14 !important;
}

body.white-canvas .text-gold-accent {
    color: #b8860b !important;
}

body.white-canvas .hero-banner-section .text-gold-accent,
body.blog-white-page .hero-banner-section .text-gold-accent {
    color: var(--gold) !important;
}

body.white-canvas .hero-banner-section .process-eyebrow-badge,
body.blog-white-page .hero-banner-section .process-eyebrow-badge {
    background: rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(252, 199, 5, 0.45) !important;
    color: var(--gold) !important;
}

body.white-canvas .hero-banner-section .process-eyebrow-badge .eyebrow-text,
body.blog-white-page .hero-banner-section .process-eyebrow-badge .eyebrow-text {
    color: var(--gold) !important;
}

body.white-canvas .page-hero-subhead {
    color: #4a4a5e !important;
}

/* Eyebrow badge on White Canvas */
body.white-canvas .process-eyebrow-badge.light-surface {
    background: rgba(252, 199, 5, 0.14) !important;
    border: 1px solid rgba(252, 199, 5, 0.45) !important;
    color: #8c6400 !important;
}

body.white-canvas .process-eyebrow-badge.light-surface .eyebrow-text {
    color: #8c6400 !important;
}

/* Filter Bar on White Canvas */
body.white-canvas .services-filter-bar {
    background: #f4f4f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    border-radius: 60px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
}

body.white-canvas .services-filter-btn {
    background: transparent;
    color: #2b2b3a;
    border: 1px solid transparent;
}

body.white-canvas .services-filter-btn:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

body.white-canvas .services-filter-btn.active {
    background: #08080d !important;
    color: #ffffff !important;
    border-color: var(--gold) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

body.white-canvas .services-filter-btn.active span {
    color: var(--gold) !important;
}

body.white-canvas .services-filter-btn.active svg {
    stroke: var(--gold) !important;
}

body.white-canvas .services-count-indicator {
    color: #5d5d72;
}

/* ── CARDS: SOLID LUXURY BLACK ON WHITE CANVAS ── */

/* 1. Services Detailed Practice Cards */
body.white-canvas .service-detailed-card {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    color: #ffffff !important;
}

body.white-canvas .service-detailed-card:hover {
    border-color: rgba(252, 199, 5, 0.5) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3), 0 0 24px rgba(252, 199, 5, 0.14) !important;
    transform: translateY(-6px);
}

body.white-canvas .service-detailed-card .service-card-title {
    color: #ffffff !important;
}

body.white-canvas .service-detailed-card:hover .service-card-title {
    color: var(--gold) !important;
}

body.white-canvas .service-detailed-card .service-card-tagline {
    color: var(--gold) !important;
}

body.white-canvas .service-detailed-card .service-card-desc {
    color: #a4a4b8 !important;
}

body.white-canvas .service-detailed-card .cap-item {
    color: #d8d8e8 !important;
}

body.white-canvas .service-detailed-card .cap-bullet {
    color: var(--gold) !important;
}

body.white-canvas .service-detailed-card .service-tech-label {
    color: #88889a !important;
}

body.white-canvas .service-detailed-card .service-tech-tag {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #d8d8e8 !important;
}

body.white-canvas .service-detailed-card .service-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.white-canvas .service-detailed-card .service-card-guarantee {
    color: #b0b0c4 !important;
}

/* 2. Lifecycle Cards */
body.white-canvas .lifecycle-card {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15) !important;
}

body.white-canvas .lifecycle-card .lifecycle-number {
    color: var(--gold) !important;
}

body.white-canvas .lifecycle-card .lifecycle-title {
    color: #ffffff !important;
}

body.white-canvas .lifecycle-card .lifecycle-desc {
    color: #a2a2b6 !important;
}

body.white-canvas .lifecycle-card .lifecycle-badge {
    background: rgba(252, 199, 5, 0.12) !important;
    border: 1px solid rgba(252, 199, 5, 0.35) !important;
    color: var(--gold) !important;
}

/* 3. Comparison Table */
body.white-canvas .comparison-table-wrapper {
    background: #07070c !important;
    border: 1.5px solid rgba(252, 199, 5, 0.35) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2) !important;
}

body.white-canvas .comparison-table th {
    background: #0c0c14 !important;
    color: #ffffff !important;
}

body.white-canvas .comparison-table td {
    color: #d0d0e2 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
}

body.white-canvas .comparison-table .highlight-col {
    background: rgba(252, 199, 5, 0.04) !important;
    color: #ffffff !important;
}

/* 4. FAQ Accordion Items */
body.white-canvas .faq-item {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

body.white-canvas .faq-question {
    color: #ffffff !important;
}

body.white-canvas .faq-question:hover {
    color: var(--gold) !important;
}

body.white-canvas .faq-chevron {
    color: var(--gold) !important;
}

body.white-canvas .faq-answer {
    color: #a4a4b8 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* 5. Product Tabs Wrapper & Buttons (Inside Hero Banner Section) */
body.white-canvas .hero-banner-section .product-tabs-wrapper,
body.white-canvas .product-tabs-wrapper {
    background: rgba(10, 10, 16, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-radius: 60px !important;
    padding: 0.45rem !important;
    display: inline-flex !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4) !important;
    flex-wrap: wrap !important;
    margin: 2.2rem auto 0.5rem !important;
}

body.white-canvas .hero-banner-section .product-tab-btn,
body.white-canvas .product-tab-btn {
    background: transparent !important;
    color: #c0c0d8 !important;
    border: 1.5px solid transparent !important;
    border-radius: 50px !important;
    padding: 0.75rem 1.6rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    box-shadow: none !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
}

body.white-canvas .hero-banner-section .product-tab-btn:hover,
body.white-canvas .product-tab-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body.white-canvas .hero-banner-section .product-tab-btn.active,
body.white-canvas .product-tab-btn.active {
    background: #000000 !important;
    color: #ffffff !important;
    border: 1.5px solid var(--gold) !important;
    box-shadow: 0 6px 20px rgba(252, 199, 5, 0.25) !important;
}

body.white-canvas .hero-banner-section .product-tab-btn.active .product-tab-pill,
body.white-canvas .product-tab-btn.active .product-tab-pill {
    background: var(--gold) !important;
    color: #000000 !important;
    font-weight: 800 !important;
}

body.white-canvas .hero-banner-section .product-tab-btn:not(.active) .product-tab-pill,
body.white-canvas .product-tab-btn:not(.active) .product-tab-pill {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #d0d0e2 !important;
}

/* 6. Acuitas Feature Cards */
body.white-canvas .acuitas-card {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16) !important;
}

body.white-canvas .acuitas-card:hover {
    border-color: rgba(252, 199, 5, 0.4) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 0 20px rgba(252, 199, 5, 0.1) !important;
}

body.white-canvas .acuitas-card-title {
    color: #ffffff !important;
}

body.white-canvas .acuitas-card-desc {
    color: #a0a0b6 !important;
}

body.white-canvas .acuitas-heading {
    color: #0d0d16 !important;
}

body.white-canvas .acuitas-paragraph {
    color: #4a4a5e !important;
}

/* 7. USP Cards (Products page) */
body.white-canvas .usp-card {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15) !important;
}

body.white-canvas .usp-card:hover {
    border-color: rgba(252, 199, 5, 0.45) !important;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25), 0 0 20px rgba(252, 199, 5, 0.1) !important;
}

body.white-canvas .usp-card h3 {
    color: #ffffff !important;
}

body.white-canvas .usp-card p {
    color: #a0a0b6 !important;
}

/* 8. About Page Cards: Milestones, Philosophy, Skills, Products, Team */
body.white-canvas .milestone-item {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14) !important;
}

body.white-canvas .milestone-val {
    color: var(--gold) !important;
}

body.white-canvas .milestone-title {
    color: #ffffff !important;
}

body.white-canvas .milestone-sub {
    color: #9898aa !important;
}

body.white-canvas .philosophy-card {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14) !important;
}

body.white-canvas .philosophy-num {
    color: var(--gold) !important;
}

body.white-canvas .philosophy-title {
    color: #ffffff !important;
}

body.white-canvas .philosophy-desc {
    color: #a0a0b6 !important;
}

body.white-canvas .skill-card {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16) !important;
}

body.white-canvas .skill-card:hover {
    border-color: rgba(252, 199, 5, 0.45) !important;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25), 0 0 24px rgba(252, 199, 5, 0.12) !important;
}

body.white-canvas .skill-title {
    color: #ffffff !important;
}

body.white-canvas .skill-subtitle {
    color: var(--gold) !important;
}

body.white-canvas .skill-desc {
    color: #a0a0b6 !important;
}

body.white-canvas .skill-competencies-block {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.white-canvas .skill-competencies-list li {
    color: #d0d0e2 !important;
}

body.white-canvas .skill-tech-chip {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #d0d0e2 !important;
}

body.white-canvas .about-product-card {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18) !important;
}

body.white-canvas .about-product-card:hover {
    border-color: rgba(252, 199, 5, 0.45) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28), 0 0 24px rgba(252, 199, 5, 0.12) !important;
}

body.white-canvas .about-product-title {
    color: #ffffff !important;
}

body.white-canvas .about-product-tagline {
    color: var(--gold) !important;
}

body.white-canvas .about-product-desc {
    color: #a0a0b6 !important;
}

body.white-canvas .about-product-features li {
    color: #d0d0e2 !important;
}

body.white-canvas .team-card-v2 {
    background: #07070c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
}

body.white-canvas .team-card-v2:hover {
    border-color: rgba(252, 199, 5, 0.45) !important;
}

body.white-canvas .team-name-v2 {
    color: #ffffff !important;
}

body.white-canvas .team-role-v2 {
    color: var(--gold) !important;
}

body.white-canvas .team-bio-v2 {
    color: #a0a0b6 !important;
}
