/* 
 * CoraloNexus - The Nexus System (Enterprise Design)
 */

:root {
    --primary-color: #D4AF37;
    /* Premium Gold */
    --primary-hover: #C5A059;
    --secondary-color: #0A1931;
    /* Deep Corporate Navy Blue */
    --accent-color: #152C55;
    --text-main: #334155;
    --text-light: #64748B;
    --bg-light: #F4F7F9;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --heading-color: var(--secondary-color);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-sm: 0 2px 4px rgba(10, 25, 49, 0.05);
    --shadow-md: 0 10px 20px rgba(10, 25, 49, 0.08);
    --shadow-lg: 0 25px 50px rgba(10, 25, 49, 0.15);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);

    --gold-gradient: linear-gradient(135deg, #F3D078 0%, #D8A53B 50%, #B8860B 100%);
    --navy-gradient: linear-gradient(135deg, #0A1931 0%, #061124 100%);
}

[data-theme="dark"] {
    --text-main: #E2E8F0;
    --text-light: #94A3B8;
    --bg-light: #061124;
    /* Darker Navy */
    --bg-white: #0A1931;
    /* Base Navy */
    --border-color: #1A2F50;
    --heading-color: #FFFFFF;
    --glass-bg: rgba(6, 17, 36, 0.85);
    --glass-border: rgba(212, 175, 55, 0.15);
    --hero-bg: var(--navy-gradient);
    --hero-text: #FFFFFF;
    --hero-subtitle: rgba(255, 255, 255, 0.8);
}

:root {
    --hero-bg: #F8FAFC;
    /* Clean professional light background */
    --hero-text: var(--secondary-color);
    --hero-subtitle: var(--text-light);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

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

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

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

.section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 0;
    /* Executive sharp edges */
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 56, 42, 0.2);
}

.btn-dark {
    background-color: var(--heading-color);
    color: var(--bg-white);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-outline:hover {
    background-color: var(--heading-color);
    color: var(--bg-white);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--heading-color);
    border-color: var(--border-color);
}

.btn-outline-dark:hover {
    border-color: var(--heading-color);
    color: var(--heading-color);
}

.btn-block {
    width: 100%;
}

/* Dynamic Background */
#nexus-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(10, 25, 49, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Header — Always Dark Navy for Logo Visibility */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 25, 49, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    background: rgba(6, 17, 36, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1600px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
    padding: 10px 40px;
}

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

.logo-mark {
    width: 40px;
    height: 40px;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo-name span {
    font-weight: 300;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

.main-nav li {
    position: relative;
}

.main-nav .menu-item-has-children {
    display: flex;
    align-items: center;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-bottom: 4px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary-color);
}

.main-nav .current-menu-ancestor > a {
    color: var(--primary-color);
}

.main-nav .current-menu-ancestor > a::after {
    width: 100%;
}

.sub-menu-toggle {
    width: 28px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    margin-left: -5px;
    color: rgba(255, 255, 255, 0.85);
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sub-menu-toggle:hover,
.sub-menu-toggle:focus-visible,
.menu-item-has-children.is-submenu-open > .sub-menu-toggle {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.12);
}

.sub-menu-toggle span {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.menu-item-has-children.is-submenu-open > .sub-menu-toggle span {
    transform: translateY(2px) rotate(225deg);
}

.main-nav .sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 20;
    width: min(680px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 15px;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(10, 25, 49, 0.98), rgba(3, 12, 28, 0.99)),
        radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.16), transparent 44%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 14px) scale(0.97);
    transform-origin: top center;
    transition: opacity 0.18s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.18s ease;
}

.main-nav .sub-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.main-nav .sub-menu::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-left: 1px solid rgba(212, 175, 55, 0.22);
    background: #091a34;
    transform: translateX(-50%) rotate(45deg);
}

.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu,
.main-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.main-nav .sub-menu li {
    min-width: 0;
}

.main-nav .sub-menu a {
    min-height: 62px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 13px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.main-nav .sub-menu a::after {
    display: none;
}

.main-nav .sub-menu a i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.07);
    font-size: 13px;
}

.main-nav .sub-menu a:hover,
.main-nav .sub-menu a:focus-visible,
.main-nav .sub-menu a[aria-current="page"] {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.25);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.045));
    transform: translateX(3px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.theme-toggle-btn {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #0A1931;
    color: #FFFFFF;
    overflow: hidden;
    transition: var(--transition);
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') 0 0/20px 20px;
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 30px;
    color: #FFFFFF !important;
    line-height: 1.1;
    transition: var(--transition);
}

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

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
    transition: var(--transition);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* ─── Premium 3D Globe Visual ─── */
.hero-globe-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    /* Maintain the gentle floating for the entire system */
    animation: floatGently 7s ease-in-out infinite;
}

.premium-3d-globe-container {
    position: relative;
    width: 440px;
    height: 440px;
    margin: 0 auto;
    border-radius: 50%;
    /* Volumetric inset shadows to give the physical sphere depth */
    box-shadow:
        inset -40px -40px 60px rgba(0, 0, 0, 0.85),
        inset 10px 10px 40px rgba(255, 255, 255, 0.25),
        0 0 50px rgba(212, 175, 55, 0.15);
    background: radial-gradient(circle at 30% 30%, #1e4080 0%, #0d2448 40%, #050d1a 100%);
    overflow: hidden;
    z-index: 2;
}

.globe-atmosphere {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(30, 100, 220, 0) 60%, rgba(30, 100, 220, 0.3) 100%);
    filter: blur(8px);
    pointer-events: none;
    z-index: 1;
}

#d3-globe-mount {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.globe-volumetric-lighting {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    /* Specular highlight overlay */
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 3;
}

.globe-ground-shadow {
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

/* Floating glassmorphism cards - Orbiting to match globe rotation (West to East) */
.hero-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    z-index: 4;
}

.hero-glass-card .card-icon {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 14px;
}

.hero-glass-card.card-top-right {
    top: 5%;
    right: -15%;
    animation: orbitRight 6s ease-in-out infinite alternate;
}

.hero-glass-card.card-mid-left {
    top: 45%;
    left: -20%;
    animation: orbitLeft 8s ease-in-out infinite alternate;
}

.hero-glass-card.card-bottom-right {
    bottom: 10%;
    right: -10%;
    animation: orbitRight 7s ease-in-out infinite alternate;
}

@keyframes floatGently {

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

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

@keyframes orbitRight {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-15px, 5px) scale(0.98);
    }
}

@keyframes orbitLeft {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15px, -5px) scale(0.98);
    }
}

/* Trusted By */
.trusted-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent);
}

.marquee-content {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 30s linear infinite;
    align-items: center;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.trusted-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--heading-color);
}

.trusted-logo i {
    font-size: 28px;
    color: var(--primary-color);
}

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

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

/* About / Executive Impact */
.about-section {
    padding: 140px 0;
}

.executive-impact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-content h2 {
    font-size: 48px;
}

.impact-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.impact-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.impact-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.impact-value {
    font-size: 56px;
    font-weight: 900;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.impact-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Ecosystem */
.services-section {
    padding: 140px 0;
    background: var(--bg-light);
}

.nexus-ecosystem {
    margin-top: 80px;
    position: relative;
}

.ecosystem-center {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.center-node {
    background: var(--secondary-color);
    color: white;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 0 0 10px rgba(13, 27, 46, 0.1);
    position: relative;
}

.center-node::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 60px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.ecosystem-nodes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.ecosystem-card {
    background: var(--bg-white);
    padding: 40px;
    transition: var(--transition);
    border-top: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.ecosystem-card:hover {
    border-top-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.eco-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.ecosystem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.ecosystem-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.eco-link {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Industries */
.industries-section {
    padding: 140px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border-color);
    border: 2px solid var(--border-color);
}

.industry-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 46, 0.85);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.industry-card:hover .industry-overlay {
    background: rgba(13, 27, 46, 0.95);
}

.industry-title {
    transition: var(--transition);
    transform: translateY(120px);
}

.industry-card:hover .industry-title {
    transform: translateY(0);
}

.industry-title i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.industry-title h3 {
    color: white;
    font-size: 28px;
}

.industry-details {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.industry-card:hover .industry-details {
    opacity: 1;
    transform: translateY(0);
}

.industry-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.industry-details strong {
    color: white;
}

.industry-link {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 4px;
}

/* Metrics Dashboard */
.metrics-dashboard {
    padding: 120px 0;
    background: var(--secondary-color);
    color: white;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* ─── Core Values — Smooth Expand Hover (no overlap) ─── */
.core-value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.4s ease, transform 0.4s ease, background 0.3s ease;
    cursor: default;
    display: grid;
    grid-template-rows: auto auto 0fr;
    gap: 0;
    overflow: hidden;
}

.core-value-card:hover {
    border-top-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-6px);
    grid-template-rows: auto auto 1fr;
}

.cv-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.4s ease;
}

.core-value-card:hover .cv-icon-wrap {
    transform: scale(0.85);
}

.dash-icon {
    font-size: 36px;
    color: var(--primary-color);
    transition: color 0.3s ease, font-size 0.4s ease;
    line-height: 1;
}

.core-value-card:hover .dash-icon {
    font-size: 28px;
}

.dash-label {
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

.core-value-card:hover .dash-label {
    margin-bottom: 10px;
}

.card-description {
    overflow: hidden;
    min-height: 0;
}

.card-description p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
    padding-top: 4px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.core-value-card:hover .card-description p {
    transform: translateY(0);
    opacity: 1;
}

/* Case Studies */
.case-studies-section {
    padding: 140px 0;
}

.editorial-case-study {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.case-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.case-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.case-tags span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.case-content h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.case-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.c-metric strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
}

.c-metric span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.case-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.detail-block h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.detail-block p {
    font-size: 15px;
    color: var(--text-light);
}

/* Insights Center */
.insights-center {
    padding: 140px 0;
    background: var(--bg-light);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.featured-insight img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 30px;
}

.insight-type {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.fi-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.fi-content p {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
}

.fi-link {
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.insight-list {
    display: flex;
    flex-direction: column;
}

.insight-row {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.insight-row:first-child {
    padding-top: 0;
}

.insight-row h4 {
    font-size: 20px;
    margin-bottom: 12px;
    transition: color 0.2s;
    color: var(--text-main);
}

.insight-row:hover h4 {
    color: var(--primary-color);
}

.insight-date {
    font-size: 13px;
    color: var(--text-light);
}

/* Thought Leadership */
.thought-leadership {
    padding: 120px 0;
}

.tl-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Consultation */
.consultation-section {
    padding: 140px 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.consultation-benefits {
    list-style: none;
    margin-top: 40px;
}

.consultation-benefits li {
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
}

.consultation-benefits i {
    color: var(--primary-color);
}

/* Base glassmorphism — for any non-form usage */
.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
}

/* Form row grid */
.nexus-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Form success / error states */
.form-message {
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }

    .executive-impact-panel,
    .editorial-case-study,
    .insights-grid,
    .consultation-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .industry-title {
        transform: translateY(0);
    }

    .industry-details {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    .nexus-sphere-container {
        max-width: 400px;
        margin-top: 40px;
    }

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

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-details,
    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .main-nav.is-open {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: block;
        padding: 18px 24px 26px;
        overflow-y: auto;
        max-height: calc(100vh - 82px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.16);
        background: rgba(6, 17, 36, 0.99);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    }

    .main-nav.is-open > .primary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    .main-nav.is-open > .primary-menu > li {
        width: 100%;
    }

    .main-nav.is-open > .primary-menu > li > a {
        display: block;
        padding: 12px 4px;
    }

    .main-nav .menu-item-has-children {
        display: grid;
        grid-template-columns: 1fr 42px;
        align-items: center;
    }

    .main-nav .sub-menu-toggle {
        width: 40px;
        height: 40px;
        justify-self: end;
        margin: 0;
    }

    .main-nav .sub-menu {
        position: static;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        width: auto;
        max-height: 0;
        gap: 4px;
        padding: 0 7px;
        overflow: hidden;
        border: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.035);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: max-height 0.28s ease, opacity 0.18s ease, padding 0.28s ease, margin 0.28s ease;
    }

    .main-nav .sub-menu::before,
    .main-nav .sub-menu::after {
        display: none;
    }

    .main-nav .menu-item-has-children:hover > .sub-menu,
    .main-nav .menu-item-has-children:focus-within > .sub-menu {
        max-height: 0;
        padding: 0 7px;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .main-nav .menu-item-has-children.is-submenu-open > .sub-menu {
        max-height: 720px;
        margin: 4px 0 12px;
        padding: 7px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav .sub-menu a {
        min-height: 50px;
        grid-template-columns: 30px 1fr;
        padding: 8px 10px;
    }

    .main-nav .sub-menu a:hover,
    .main-nav .sub-menu a:focus-visible,
    .main-nav .sub-menu a[aria-current="page"] {
        transform: none;
    }

    .mobile-toggle {
        display: block;
    }

    .industries-grid,
    .ecosystem-nodes,
    .nexus-form .form-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
    }

    .glassmorphism {
        padding: 30px;
    }

    .tl-actions {
        flex-direction: column;
    }
}

/* Consultation Text Readability Fix */
.consultation-text {
    position: relative;
    z-index: 10;
    padding-right: 20px;
}

.consultation-form-wrapper {
    position: relative;
    z-index: 10;
}

.consultation-text h2.section-title {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.consultation-text p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

.consultation-benefits li {
    color: #ffffff;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 16px;
}



/* Footer Redesign */
.site-footer {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.site-footer .logo-name {
    color: var(--heading-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.5fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-light);
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.soc-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.soc-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h5 {
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-contact-list {
    list-style: none;
    margin-bottom: 20px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.footer-contact-list i {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

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

.powered-by {
    color: var(--text-light);
    font-size: 13px;
}

.powered-by a {
    color: var(--heading-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

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

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ─── Global Opportunities Banner ─── */
.opportunities-banner {
    background: var(--secondary-color);
    padding: 28px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    position: relative;
}

.opps-marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.opps-inner {
    display: flex;
    width: max-content;
    animation: oppsMarquee 35s linear infinite;
}

.opps-inner:hover {
    animation-play-state: paused;
}

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

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

.opp-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 40px;
    white-space: nowrap;
}

.opp-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.opp-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
}

/* ─── How We Work ─── */
.how-we-work {
    padding: 120px 0;
    background: var(--bg-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 70px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), rgba(212, 175, 55, 0.2));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 auto 24px;
    transition: var(--transition);
    position: relative;
}

.process-step:hover .step-number {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1);
}

.process-step h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.process-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── Industries We Support ─── */
.industries-support {
    padding: 120px 0;
    background: var(--bg-light);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.sector-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 36px 28px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
}

.sector-card:hover::after {
    width: 100%;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.sector-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.sector-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sector-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── Global Impact (stat row) ─── */
.global-impact {
    padding: 90px 0;
    background: var(--secondary-color);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.impact-stat-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.impact-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.impact-stat-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin-top: 6px;
}

.impact-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

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

/* ─── Responsive Additions ─── */
@media (max-width: 1100px) {
    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .opps-inner {
        gap: 24px;
    }

    .opp-divider {
        display: none;
    }

    .hero-glass-card {
        display: none;
    }
}

/* ─── Page Hero (Interior Pages) ─── */
.page-hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: var(--navy-gradient);
    color: #FFFFFF;
    overflow: hidden;
    z-index: 1;
}

.page-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.06)"/></svg>') 0 0/20px 20px;
    z-index: -1;
}

.page-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 56px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-hero-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 640px;
    font-weight: 300;
}

/* ─── About Page: Vision/Mission cards ─── */
.about-vm-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition);
}

.about-vm-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.25);
}

/* ─── Light Mode Hero Override ─── */
:root .hero-section::after {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(10,25,49,0.06)"/></svg>') 0 0/20px 20px;
}

[data-theme="dark"] .hero-section::after {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') 0 0/20px 20px;
}

/* ─── Service card hover ─── */
.service-nav-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary-color);
}

/* ─── Responsive: Interior page templates ─── */
@media (max-width: 1024px) {
    .page-hero-title {
        font-size: 42px;
    }

    .executive-impact-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 120px 0 70px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }
}

/* ═══════════════════════════════════════════════════
   HERO LOGO WATERMARK — Subtle Branded Background
   ═══════════════════════════════════════════════════ */
.hero-logo-watermark {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 90vw;
    max-width: 900px;
    height: 90vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: watermarkReveal 1.8s ease-out 0.6s forwards,
        watermarkGlow 4s ease-in-out 2.4s infinite;
    will-change: opacity, filter;
}

.hero-logo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0)) drop-shadow(0 0 8px rgba(212, 175, 55, 0));
}

@keyframes watermarkReveal {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }

    60% {
        opacity: 0.08;
        transform: scale(1.02);
    }

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

@keyframes watermarkGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.25)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.10));
        opacity: 0.06;
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.55)) drop-shadow(0 0 80px rgba(212, 175, 55, 0.25));
        opacity: 0.12;
    }
}

@media (max-width: 768px) {
    .hero-logo-watermark {
        width: 90vw;
        height: 90vh;
    }
}

/* ═══════════════════════════════════════════════════
   PREMIUM GLASSMORPHISM CONTACT FORM — Enhanced
   ═══════════════════════════════════════════════════ */

/* Upgraded wrapper: richer glass effect */
.consultation-form-wrapper.glassmorphism {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(212, 175, 55, 0.04) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding: 48px;
    border-radius: 4px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle animated shimmer line at the top */
.consultation-form-wrapper.glassmorphism::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    animation: shimmerLine 3s ease-in-out 1s infinite;
}

@keyframes shimmerLine {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.consultation-form-wrapper.glassmorphism:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Form group focus lift effect */
.nexus-form .form-group {
    position: relative;
    margin-bottom: 24px;
}

/* Upgraded inputs */
.nexus-form input,
.nexus-form textarea {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-family: var(--font-main);
    font-size: 15px;
    border-radius: 3px;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    outline: none;
}

.nexus-form input:hover,
.nexus-form textarea:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.25);
}

.nexus-form input:focus,
.nexus-form textarea:focus {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.nexus-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Animated floating label micro-interaction */
.nexus-form label {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.nexus-form .form-group:focus-within label {
    color: var(--primary-color);
}

/* Placeholder */
.nexus-form input::placeholder,
.nexus-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
}

/* Submit button — premium upgrade */
.nexus-form .btn-submit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border: none;
    letter-spacing: 0.5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    margin-top: 8px;
}

.nexus-form .btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.nexus-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

.nexus-form .btn-submit:hover::after {
    left: 100%;
}

.nexus-form .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Form message upgrade */
.form-message {
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    border-left: 3px solid;
    border-radius: 3px;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* Responsive: Mobile form tweak */
@media (max-width: 768px) {
    .consultation-form-wrapper.glassmorphism {
        padding: 32px 24px;
    }

    .nexus-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   INDUSTRIES SECTION — Why Choose Us
   Full Light / Dark Mode · Accessible · Enterprise
   ═══════════════════════════════════════════════════ */

.industries-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

/* Subtle top accent line */
.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

/* ── Grid ── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ── Base Card ── */
.industry-card {
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    outline: none;
}

/* Keyboard-focus ring for accessibility */
.industry-card:focus-within .industry-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 25, 49, 0.98) 0%,
        rgba(10, 25, 49, 0.7) 60%,
        rgba(10, 25, 49, 0.35) 100%
    );
}

/* ── Overlay (gradient scrim) ── */
.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 25, 49, 0.92) 0%,
        rgba(10, 25, 49, 0.55) 50%,
        rgba(10, 25, 49, 0.2) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
    transition: background 0.4s ease;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 25, 49, 0.98) 0%,
        rgba(10, 25, 49, 0.82) 60%,
        rgba(10, 25, 49, 0.5) 100%
    );
}

/* ── Header row (icon + title) ── */
.industry-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

/* ── Icon badge ── */
.industry-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover .industry-icon-wrap {
    background: rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.08);
}

/* ── Card Title ── */
h3.industry-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: color 0.2s ease;
}

.industry-card:hover h3.industry-title {
    color: var(--primary-color);
}

/* ── Expandable details ── */
.industry-details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition:
        max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        opacity    0.35s ease 0.08s,
        transform  0.35s ease 0.08s,
        margin-top 0.35s ease;
    margin-top: 0;
}

.industry-card:hover .industry-details,
.industry-card:focus-within .industry-details {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 16px;
}

.industry-details p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 14px;
}

/* ── Link ── */
.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap 0.2s ease, color 0.2s ease;
    padding: 2px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding-bottom: 3px;
}

.industry-link:hover {
    gap: 10px;
    color: #F3D078;
    border-bottom-color: rgba(212, 175, 55, 0.7);
}

.industry-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.industry-link:hover i {
    transform: translateX(3px);
}

/* ── CTA Card (6th — Our Commitment) ── */
.industry-card--cta {
    background: var(--secondary-color);
    background-image: var(--gold-gradient) !important;
    background-image: none !important;
    background: radial-gradient(
        ellipse at top left,
        rgba(212, 175, 55, 0.18) 0%,
        transparent 60%
    ),
    var(--secondary-color) !important;
}

.industry-card--cta .industry-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 25, 49, 0.97) 0%,
        rgba(10, 25, 49, 0.75) 60%,
        rgba(10, 25, 49, 0.3) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.industry-card--cta:hover .industry-overlay {
    border-color: rgba(212, 175, 55, 0.45);
    background: linear-gradient(
        to top,
        rgba(10, 25, 49, 0.99) 0%,
        rgba(10, 25, 49, 0.88) 60%,
        rgba(10, 25, 49, 0.55) 100%
    );
}

.industry-cta-btn {
    margin-top: 4px;
    padding: 10px 22px;
    font-size: 13px;
    align-self: flex-start;
}

/* ── Dark Mode overrides ── */
[data-theme="dark"] .industries-section {
    background: var(--bg-light);
}

[data-theme="dark"] .industries-section::before {
    opacity: 0.4;
}

/* ================================================================
   SERVICES PLATFORM AND PREMIUM SERVICE LANDING PAGES
   ================================================================ */
.services-premium-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 76% 22%, rgba(212, 175, 55, 0.14), transparent 30%),
        linear-gradient(135deg, #061124 0%, #0a1931 58%, #10264a 100%);
}

.services-hero-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-hero-glow {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 17, 36, 0.86) 0%, rgba(6, 17, 36, 0.55) 48%, rgba(6, 17, 36, 0.12) 100%),
        radial-gradient(circle at 20% 55%, rgba(212, 175, 55, 0.08), transparent 38%);
}

.services-premium-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 100px;
    padding-top: 160px;
    padding-bottom: 100px;
}

.services-premium-hero__copy {
    max-width: 790px;
}

.services-premium-hero .section-label,
.service-clean-hero .section-label {
    color: var(--primary-color);
}

.services-premium-hero h1 {
    max-width: 830px;
    color: #fff;
    font-size: clamp(52px, 6.2vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 30px;
}

.services-premium-hero h1 span {
    color: #f0d78a;
}

.services-premium-hero__copy > p:not(.section-label) {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 19px;
    line-height: 1.8;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.services-hero-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.services-hero-secondary:hover {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(212, 175, 55, 0.1);
}

.services-hero-proof {
    position: relative;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 24, 47, 0.58);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.services-hero-proof::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 82px;
    height: 3px;
    background: var(--gold-gradient);
}

.services-proof-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.34);
    background: rgba(212, 175, 55, 0.08);
    font-size: 24px;
}

.services-hero-proof > strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.2;
}

.services-hero-proof > p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.7;
}

.services-proof-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-proof-stats span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
}

.services-proof-stats b {
    display: block;
    margin-bottom: 4px;
    color: #f0d78a;
    font-size: 25px;
}

.services-intro,
.service-editorial-overview {
    padding: 120px 0;
    background: var(--bg-white);
}

.ecosystem-nodes--catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ecosystem-nodes--catalog .ecosystem-card {
    padding: 30px;
}

.ecosystem-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    color: var(--text-light);
    font-size: 13px;
}

.ecosystem-feature-list li {
    display: flex;
    gap: 9px;
    margin-bottom: 9px;
    line-height: 1.55;
}

.ecosystem-feature-list i {
    margin-top: 4px;
    color: var(--primary-color);
}

.services-intro__grid,
.service-editorial-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 100px;
    align-items: start;
}

.services-intro .section-title {
    max-width: 560px;
    margin-bottom: 0;
}

.services-intro__copy > p,
.service-editorial-overview__copy > p {
    color: var(--text-main);
    font-size: 20px;
    line-height: 1.85;
}

.services-intro__principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.services-intro__principles span {
    display: flex;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.services-intro__principles i {
    margin-top: 4px;
    color: var(--primary-color);
}

.services-catalog {
    padding: 130px 0;
    background: var(--bg-light);
}

.services-section-heading,
.service-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.services-section-heading .section-title,
.service-section-heading h2 {
    max-width: 720px;
    margin: 0;
}

.services-section-heading > p,
.service-section-heading > p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.services-bento-card {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    overflow: hidden;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-bento-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -55% 38%;
    height: 240px;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--service-accent);
    filter: blur(4px);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.services-bento-card:hover {
    color: var(--text-main);
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--service-accent) 60%, var(--border-color));
    box-shadow: var(--shadow-lg);
}

.services-bento-card:hover::before {
    opacity: 0.16;
    transform: scale(1.2);
}

.services-bento-card--featured {
    grid-column: span 2;
    min-height: 380px;
}

.services-card-index {
    position: absolute;
    top: 34px;
    right: 34px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.services-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 40%, transparent);
    background: color-mix(in srgb, var(--service-accent) 10%, var(--bg-white));
    font-size: 23px;
}

.services-bento-card p {
    margin: 30px 0 10px;
    color: var(--service-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-bento-card h3 {
    max-width: 480px;
    margin-bottom: 15px;
    font-size: 27px;
    line-height: 1.16;
}

.services-card-copy {
    display: block;
    max-width: 580px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}

.services-card-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 700;
}

.services-bento-card:hover .services-card-link {
    color: var(--service-accent);
}

.services-operating-model {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background: var(--secondary-color);
}

.services-operating-model__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 100px;
    align-items: center;
}

.services-operating-model__copy h2 {
    max-width: 620px;
    color: #fff;
    font-size: 48px;
    margin-bottom: 24px;
}

.services-operating-model__copy > p:not(.section-label) {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.services-network-graphic {
    position: relative;
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        radial-gradient(circle at center, rgba(212, 175, 55, 0.11), transparent 38%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
}

.services-network-graphic::before,
.services-network-graphic::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 290px;
    height: 290px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.services-network-graphic::after {
    width: 390px;
    height: 390px;
    border-color: rgba(255, 255, 255, 0.08);
}

.services-network-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    background: #0a1931;
    box-shadow: 0 0 70px rgba(212, 175, 55, 0.12);
    transform: translate(-50%, -50%);
}

.services-network-core i {
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 28px;
}

.services-network-core strong {
    font-size: 12px;
    letter-spacing: 0.12em;
}

.services-network-core small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.network-node {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 17, 36, 0.88);
    font-size: 12px;
    font-weight: 700;
}

.network-node i {
    color: var(--primary-color);
}

.network-node--one { top: 11%; left: 15%; }
.network-node--two { top: 18%; right: 8%; }
.network-node--three { bottom: 15%; left: 8%; }
.network-node--four { right: 13%; bottom: 9%; }

.services-process {
    padding: 130px 0;
    background: var(--bg-white);
}

.services-process__heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.services-process__heading h2 {
    font-size: 48px;
}

.services-process__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border-color);
}

.services-process__steps article {
    position: relative;
    min-height: 270px;
    padding: 38px 30px;
    border-right: 1px solid var(--border-color);
}

.services-process__steps article:last-child {
    border-right: 0;
}

.services-process__steps article::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.35s ease;
}

.services-process__steps article:hover::before {
    width: 100%;
}

.services-process__steps span {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.services-process__steps h3 {
    margin: 55px 0 16px;
    font-size: 24px;
}

.services-process__steps p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}

.services-premium-cta,
.service-premium-cta {
    padding: 90px 0;
    background: var(--bg-light);
}

.services-premium-cta__inner,
.service-premium-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    align-items: center;
}

.services-premium-cta h2,
.service-premium-cta h2 {
    max-width: 850px;
    margin: 0;
    font-size: 38px;
}

.service-landing {
    --service-accent: var(--primary-color);
}

.service-clean-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.service-clean-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    opacity: 0.08;
    background:
        linear-gradient(135deg, transparent 45%, var(--service-accent) 45%, var(--service-accent) 45.4%, transparent 45.4%),
        radial-gradient(circle at 75% 42%, var(--service-accent), transparent 44%);
}

.service-clean-hero__grid {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: 100px;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 90px;
}

.service-clean-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 42px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-back-link:hover,
.service-text-link:hover {
    color: var(--service-accent);
}

.service-clean-hero h1 {
    max-width: 850px;
    margin-bottom: 25px;
    color: var(--heading-color);
    font-size: clamp(46px, 5.2vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.service-clean-hero__headline {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-size: 22px;
    line-height: 1.5;
}

.service-clean-hero__description {
    max-width: 690px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.service-clean-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 38px;
}

.service-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 700;
}

.service-hero-signature {
    position: relative;
    min-height: 420px;
}

.service-signature-rings,
.service-signature-rings::before,
.service-signature-rings::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid color-mix(in srgb, var(--service-accent) 34%, var(--border-color));
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.service-signature-rings {
    width: 330px;
    height: 330px;
}

.service-signature-rings::before,
.service-signature-rings::after {
    content: "";
    width: 230px;
    height: 230px;
}

.service-signature-rings::after {
    width: 410px;
    height: 410px;
    border-style: dashed;
    opacity: 0.45;
    animation: service-ring-spin 28s linear infinite;
}

.service-signature-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 52%, var(--border-color));
    border-radius: 50%;
    background: var(--bg-white);
    box-shadow: 0 24px 70px color-mix(in srgb, var(--service-accent) 16%, transparent);
    font-size: 52px;
    transform: translate(-50%, -50%);
}

.service-signature-label {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 30px;
    min-width: 230px;
    padding: 11px 18px;
    color: var(--heading-color);
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.service-signature-dot {
    position: absolute;
    z-index: 4;
    width: 11px;
    height: 11px;
    border: 3px solid var(--bg-white);
    border-radius: 50%;
    background: var(--service-accent);
    box-shadow: 0 0 0 1px var(--service-accent);
}

.service-signature-dot--one { top: 15%; left: 27%; }
.service-signature-dot--two { top: 44%; right: 8%; }
.service-signature-dot--three { bottom: 16%; left: 19%; }

@keyframes service-ring-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-editorial-overview h2,
.service-challenges h2,
.service-pathway-intro h2,
.service-deliverables-section h2,
.service-related-heading h2 {
    font-size: 42px;
    line-height: 1.18;
}

.service-overview-note {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    padding: 24px;
    color: var(--text-light);
    border-left: 3px solid var(--service-accent);
    background: var(--bg-light);
    font-size: 14px;
    line-height: 1.7;
}

.service-overview-note i {
    margin-top: 3px;
    color: var(--service-accent);
}

.service-context-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.service-context-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 80px;
    align-items: start;
}

.service-challenges > h2 {
    max-width: 680px;
    margin-bottom: 42px;
}

.service-challenges article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    align-items: center;
    padding: 23px 0;
    border-top: 1px solid var(--border-color);
}

.service-challenges article span {
    color: var(--service-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-challenges article p {
    color: var(--heading-color);
    font-size: 17px;
    font-weight: 600;
}

.service-value-panel {
    position: sticky;
    top: 120px;
    padding: 42px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--service-accent) 32%, transparent), transparent 36%),
        var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.service-value-panel .section-label {
    color: var(--service-accent);
}

.service-value-panel__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 36px;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 50%, transparent);
    font-size: 23px;
}

.service-value-panel h3 {
    margin-bottom: 28px;
    color: #fff;
    font-size: 27px;
}

.service-value-panel > div {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-value-panel > div i {
    margin-top: 5px;
    color: var(--service-accent);
}

.service-value-panel > div strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
}

.service-capabilities-section {
    padding: 130px 0;
    background: var(--bg-white);
}

.service-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-capability-grid article {
    position: relative;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-capability-grid article:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--service-accent) 58%, var(--border-color));
    background: color-mix(in srgb, var(--service-accent) 4%, var(--bg-white));
}

.service-capability-grid small {
    position: absolute;
    top: 27px;
    right: 28px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-capability-grid article > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 38%, var(--border-color));
    font-size: 20px;
}

.service-capability-grid h3 {
    max-width: 290px;
    margin-top: 70px;
    font-size: 21px;
    line-height: 1.35;
}

.service-capability-arrow {
    position: absolute;
    right: 28px;
    bottom: 28px;
    color: var(--text-light);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-capability-grid article:hover .service-capability-arrow {
    color: var(--service-accent);
    opacity: 1;
    transform: none;
}

.service-pathway-section {
    padding: 130px 0;
    background: var(--secondary-color);
}

.service-pathway-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 110px;
}

.service-pathway-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.service-pathway-intro h2 {
    color: #fff;
    margin-bottom: 24px;
}

.service-pathway-intro > p:not(.section-label) {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.8;
}

.service-pathway-steps article {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    min-height: 150px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-pathway-steps article > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 48%, transparent);
    font-size: 11px;
    font-weight: 800;
}

.service-pathway-steps small {
    color: var(--service-accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.service-pathway-steps h3 {
    margin-top: 10px;
    color: #fff;
    font-size: 24px;
}

.service-deliverables-section {
    padding: 130px 0;
    background: var(--bg-light);
}

.service-deliverables-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 100px;
    align-items: start;
}

.service-deliverables-grid > div:first-child > p:not(.section-label) {
    max-width: 560px;
    margin-top: 24px;
    color: var(--text-light);
    line-height: 1.8;
}

.service-deliverable-list {
    display: grid;
    gap: 12px;
}

.service-deliverable-list > div {
    display: grid;
    grid-template-columns: 45px 36px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 78px;
    padding: 15px 22px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-deliverable-list > div:hover {
    transform: translateX(8px);
    border-color: color-mix(in srgb, var(--service-accent) 55%, var(--border-color));
}

.service-deliverable-list span {
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-deliverable-list i {
    color: var(--service-accent);
    font-size: 19px;
}

.service-deliverable-list strong {
    color: var(--heading-color);
    font-size: 14px;
}

.service-related-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.service-related-heading {
    max-width: 680px;
    margin-bottom: 50px;
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-related-grid > a {
    display: grid;
    grid-template-columns: 54px 1fr 18px;
    gap: 18px;
    align-items: center;
    min-height: 138px;
    padding: 25px;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    background: var(--bg-white);
}

.service-related-grid > a:hover {
    color: var(--text-main);
    border-color: var(--service-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-related-grid > a > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 36%, var(--border-color));
}

.service-related-grid small {
    color: var(--text-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-related-grid h3 {
    margin-top: 5px;
    font-size: 17px;
    line-height: 1.3;
}

.service-related-grid > a > i {
    color: var(--text-light);
}

/* Service-specific composition changes keep the system coherent, not cloned. */
.service-landing--finance .service-value-panel {
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--service-accent) 20%, #0a1931), #061124 72%);
}

.service-landing--assurance .service-capability-grid article:first-child,
.service-landing--travel .service-capability-grid article:first-child {
    grid-column: span 2;
}

.service-landing--feasibility .service-capability-grid article:nth-child(1),
.service-landing--feasibility .service-capability-grid article:nth-child(2) {
    min-height: 300px;
}

.service-landing--strategy .service-pathway-steps {
    padding-left: 28px;
    border-left: 1px solid color-mix(in srgb, var(--service-accent) 45%, transparent);
}

.service-landing--logistics .service-pathway-steps article > span {
    border-radius: 50%;
}

.service-landing--network .service-value-panel {
    border-top: 4px solid var(--service-accent);
}

.service-premium-cta__inner > div > p:not(.section-label) {
    max-width: 700px;
    margin-top: 15px;
    color: var(--text-light);
}

/* Tade footer structure adapted to the current brand and links. */
.site-footer--tade {
    padding: 0;
    background: #061124;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-primary {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(150px, 0.45fr) minmax(380px, 1.1fr);
    gap: 80px;
    padding-top: 82px;
    padding-bottom: 66px;
}

.site-footer--tade .footer-logo,
.site-footer--tade .custom-logo-link {
    display: inline-block;
}

.site-footer--tade .footer-logo img,
.site-footer--tade .custom-logo {
    width: auto;
    max-width: 230px;
    height: 62px;
    object-fit: contain;
}

.site-footer--tade .footer-brand p {
    max-width: 400px;
    margin: 24px 0 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.75;
}

.footer-brandline {
    display: block;
    margin-bottom: 24px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.site-footer--tade .soc-link {
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.site-footer--tade .footer-col h5 {
    color: #fff;
}

.site-footer--tade .footer-col a {
    color: rgba(255, 255, 255, 0.62);
}

.footer-conversation {
    padding-left: 52px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-conversation h2 {
    max-width: 570px;
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-conversation > p:not(.section-label) {
    max-width: 580px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 26px;
}

.footer-contact-inline a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.footer-contact-inline a:hover {
    color: var(--primary-color);
}

.site-footer--tade .footer-bottom {
    min-height: 82px;
    color: rgba(255, 255, 255, 0.48);
    border-top-color: rgba(255, 255, 255, 0.09);
}

.site-footer--tade .footer-legal a {
    color: rgba(255, 255, 255, 0.48);
}

.footer-credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 10px;
}

.footer-credit-badge strong {
    color: #fff;
    letter-spacing: 0.08em;
}

.footer-credit-badge i {
    color: var(--primary-color);
}

@media (max-width: 1100px) {
    .services-premium-hero__inner,
    .service-clean-hero__grid,
    .services-operating-model__grid,
    .service-pathway-grid,
    .service-deliverables-grid {
        gap: 60px;
    }

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

    .ecosystem-nodes--catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-bento-card--featured {
        grid-column: span 1;
    }

    .service-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-primary {
        grid-template-columns: 1fr 0.45fr 1.1fr;
        gap: 45px;
    }

    .footer-conversation {
        padding-left: 35px;
    }
}

@media (max-width: 900px) {
    .services-premium-hero__inner,
    .service-clean-hero__grid,
    .services-intro__grid,
    .service-editorial-overview__grid,
    .services-operating-model__grid,
    .service-context-grid,
    .service-pathway-grid,
    .service-deliverables-grid {
        grid-template-columns: 1fr;
    }

    .services-premium-hero__inner,
    .service-clean-hero__grid {
        padding-top: 135px;
    }

    .services-hero-proof {
        max-width: 560px;
    }

    .services-section-heading,
    .service-section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .services-process__steps article:nth-child(2) {
        border-right: 0;
    }

    .service-hero-signature {
        min-height: 390px;
    }

    .service-value-panel,
    .service-pathway-intro {
        position: relative;
        top: auto;
    }

    .service-related-grid {
        grid-template-columns: 1fr;
    }

    .services-premium-cta__inner,
    .service-premium-cta__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-primary {
        grid-template-columns: 1fr 1fr;
    }

    .footer-conversation {
        grid-column: 1 / -1;
        padding: 42px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .services-premium-hero {
        min-height: auto;
    }

    .services-premium-hero__inner,
    .service-clean-hero__grid {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .services-premium-hero h1,
    .service-clean-hero h1 {
        font-size: 42px;
    }

    .services-premium-hero__copy > p:not(.section-label),
    .service-clean-hero__description {
        font-size: 16px;
    }

    .services-hero-actions,
    .service-clean-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .services-hero-actions .btn,
    .service-clean-hero__actions .btn {
        width: 100%;
    }

    .services-hero-proof {
        padding: 28px;
    }

    .services-intro,
    .services-catalog,
    .services-operating-model,
    .services-process,
    .service-editorial-overview,
    .service-context-section,
    .service-capabilities-section,
    .service-pathway-section,
    .service-deliverables-section,
    .service-related-section {
        padding: 82px 0;
    }

    .services-intro__grid,
    .service-editorial-overview__grid,
    .service-context-grid,
    .service-pathway-grid,
    .service-deliverables-grid {
        gap: 44px;
    }

    .services-intro__principles,
    .services-bento-grid,
    .ecosystem-nodes--catalog,
    .service-capability-grid,
    .services-process__steps {
        grid-template-columns: 1fr;
    }

    .service-landing--assurance .service-capability-grid article:first-child,
    .service-landing--travel .service-capability-grid article:first-child {
        grid-column: span 1;
    }

    .services-bento-card,
    .services-bento-card--featured {
        min-height: 330px;
    }

    .services-operating-model__copy h2,
    .services-process__heading h2,
    .service-editorial-overview h2,
    .service-challenges h2,
    .service-pathway-intro h2,
    .service-deliverables-section h2,
    .service-related-heading h2 {
        font-size: 34px;
    }

    .services-network-graphic {
        min-height: 390px;
    }

    .services-network-graphic::after {
        width: 320px;
        height: 320px;
    }

    .network-node {
        padding: 9px 11px;
        font-size: 10px;
    }

    .network-node--one { top: 8%; left: 4%; }
    .network-node--two { top: 13%; right: 3%; }
    .network-node--three { bottom: 12%; left: 3%; }
    .network-node--four { right: 4%; bottom: 7%; }

    .services-process__steps article {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .service-hero-signature {
        min-height: 330px;
        transform: scale(0.86);
    }

    .service-clean-hero::before {
        width: 100%;
        opacity: 0.045;
    }

    .service-value-panel {
        padding: 30px;
    }

    .service-pathway-steps article {
        grid-template-columns: 58px 1fr;
        gap: 17px;
    }

    .service-deliverable-list > div {
        grid-template-columns: 34px 28px 1fr;
        padding: 15px;
    }

    .services-premium-cta,
    .service-premium-cta {
        padding: 70px 0;
    }

    .services-premium-cta h2,
    .service-premium-cta h2 {
        font-size: 30px;
    }

    .footer-primary {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 62px;
    }

    .footer-conversation {
        grid-column: auto;
    }

    .footer-explore {
        padding-top: 10px;
    }

    .site-footer--tade .footer-bottom {
        padding-bottom: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-signature-rings::after {
        animation: none;
    }

    .services-bento-card,
    .service-capability-grid article,
    .service-deliverable-list > div {
        transition-duration: 0.01ms;
    }
}

/* ================================================================
   SERVICES EXPERIENCE REFINEMENT
   Tade structure + current child-page visual language
   ================================================================ */
:root {
    --surface-raised: #ffffff;
    --surface-soft: #f7f9fc;
    --surface-tint: #eef3f8;
    --surface-glass: rgba(255, 255, 255, 0.76);
    --shadow-card-premium: 0 18px 50px rgba(10, 25, 49, 0.09), 0 2px 8px rgba(10, 25, 49, 0.04);
    --shadow-card-hover: 0 30px 80px rgba(10, 25, 49, 0.16), 0 8px 22px rgba(10, 25, 49, 0.08);
}

[data-theme="dark"] {
    --surface-raised: #0d203d;
    --surface-soft: #08182f;
    --surface-tint: #102746;
    --surface-glass: rgba(10, 25, 49, 0.78);
    --shadow-card-premium: 0 20px 56px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.025);
    --shadow-card-hover: 0 34px 86px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.main-nav .menu-item-has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
    height: 26px;
}

.main-nav .sub-menu {
    top: calc(100% + 8px);
}

.services-experience {
    overflow: clip;
    background: var(--bg-white);
}

.services-parent-hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 75% 46%, rgba(79, 182, 198, 0.17), transparent 27%),
        radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.1), transparent 28%),
        linear-gradient(130deg, #020c20 0%, #061a38 58%, #0a3158 100%);
}

.services-parent-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, #000 10%, transparent 96%);
}

.services-parent-hero__grid {
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
    gap: 74px;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 90px;
}

.services-parent-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.services-parent-hero__copy h1 {
    max-width: 760px;
    margin: 12px 0 22px;
    color: #fff;
    font-size: clamp(49px, 5.3vw, 76px);
    line-height: 1.01;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.services-parent-hero__headline {
    max-width: 650px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.45;
}

.services-parent-hero__description {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.75;
}

.services-parent-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
}

.services-parent-text-link:hover {
    color: var(--primary-color);
}

.services-parent-signature {
    position: relative;
    width: min(100%, 570px);
    aspect-ratio: 1;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background: rgba(3, 18, 43, 0.42);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
}

.services-parent-rings,
.services-parent-rings::before,
.services-parent-rings::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(240, 215, 138, 0.24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.services-parent-rings {
    width: 72%;
    height: 72%;
}

.services-parent-rings::before,
.services-parent-rings::after {
    content: "";
    width: 72%;
    height: 72%;
    border-style: dashed;
}

.services-parent-rings::after {
    width: 124%;
    height: 124%;
    border-color: rgba(95, 211, 208, 0.16);
    animation: service-ring-spin 38s linear infinite;
}

.services-parent-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 154px;
    height: 154px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 215, 138, 0.62);
    border-radius: 50%;
    background: rgba(3, 18, 43, 0.92);
    box-shadow: 0 0 0 14px rgba(212, 175, 55, 0.035), 0 0 65px rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
}

.services-parent-core i {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 29px;
}

.services-parent-core strong {
    font-size: 12px;
    letter-spacing: 0.13em;
}

.services-parent-core small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
}

.services-parent-node {
    --node-angle: calc(var(--node-index) * 45deg - 90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--node-accent);
    border: 1px solid color-mix(in srgb, var(--node-accent) 50%, transparent);
    border-radius: 17px;
    background: rgba(3, 18, 43, 0.9);
    box-shadow: 0 13px 35px rgba(0, 0, 0, 0.28);
    transform:
        translate(-50%, -50%)
        rotate(var(--node-angle))
        translateX(205px)
        rotate(calc(var(--node-angle) * -1));
    font-size: 20px;
}

.services-parent-proof {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(3, 18, 43, 0.86);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(15px);
}

.services-parent-proof b {
    color: var(--primary-color);
    font-size: 32px;
}

.services-parent-proof span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
}

.services-platform-intro,
.services-bento-section,
.services-detail-section,
.services-difference-section,
.services-governance-section {
    padding: 120px 0;
}

.services-platform-intro {
    background:
        radial-gradient(circle at 90% 10%, rgba(79, 182, 198, 0.07), transparent 30%),
        var(--bg-white);
}

.services-platform-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 100px;
}

.services-platform-intro h2,
.services-detail-intro h2,
.services-process-copy h2,
.services-governance-grid h2 {
    font-size: clamp(39px, 4.2vw, 58px);
    line-height: 1.09;
}

.services-platform-intro__grid > div:last-child > p {
    color: var(--text-main);
    font-size: 20px;
    line-height: 1.85;
}

.services-platform-signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.services-platform-signals span {
    min-height: 86px;
    display: flex;
    gap: 12px;
    padding: 20px;
    color: var(--heading-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 700;
}

.services-platform-signals b {
    color: var(--primary-color);
    font-size: 10px;
}

.services-bento-section {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg-light) 94%, transparent), var(--bg-light)),
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.07), transparent 32%);
}

.services-experience .services-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.services-experience .services-bento-card {
    grid-column: span 3;
    min-height: 350px;
    padding: 29px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--service-accent) 5%, var(--surface-raised)), var(--surface-raised));
    box-shadow: var(--shadow-card-premium);
}

.services-experience .services-bento-card:nth-child(1),
.services-experience .services-bento-card:nth-child(6) {
    grid-column: span 6;
}

.services-experience .services-bento-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.services-experience .services-bento-card > small {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.services-experience .services-bento-card h3 {
    margin-top: auto;
    font-size: 25px;
}

.services-experience .services-bento-card p {
    margin-top: 13px;
}

.services-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--service-accent);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.services-detail-section {
    background: var(--bg-white);
}

.services-detail-intro {
    max-width: 800px;
    margin-bottom: 70px;
}

.services-detail-intro > p:last-child {
    max-width: 650px;
    margin-top: 18px;
    color: var(--text-light);
    font-size: 17px;
}

.services-detail-list {
    display: grid;
    gap: 28px;
}

.service-feature-module {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 490px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 26px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-card-premium);
}

.service-feature-module.is-reversed .service-feature-identity {
    order: 2;
}

.service-feature-identity {
    position: relative;
    padding: 48px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--service-accent) 23%, transparent), transparent 35%),
        linear-gradient(145deg, #061124, #0a2345);
    color: #fff;
}

.service-feature-identity::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid color-mix(in srgb, var(--service-accent) 30%, transparent);
    border-radius: 50%;
    box-shadow: 0 0 0 40px color-mix(in srgb, var(--service-accent) 4%, transparent), 0 0 0 80px color-mix(in srgb, var(--service-accent) 2%, transparent);
}

.service-feature-identity > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 48%, transparent);
    border-radius: 16px;
    font-size: 23px;
}

.service-feature-identity small {
    display: block;
    margin-top: 45px;
    color: var(--service-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.service-feature-identity h3 {
    max-width: 480px;
    margin: 14px 0 19px;
    color: #fff;
    font-size: 34px;
}

.service-feature-identity p {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.78;
}

.service-feature-identity a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-top: 29px;
    color: var(--service-accent);
    font-size: 12px;
    font-weight: 800;
}

.service-feature-content {
    display: grid;
    align-content: center;
    gap: 28px;
    padding: 48px;
    background:
        linear-gradient(145deg, var(--surface-raised), color-mix(in srgb, var(--service-accent) 4%, var(--surface-raised)));
}

.service-feature-content h4 {
    margin-bottom: 14px;
    color: var(--heading-color);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-feature-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.service-feature-content li {
    display: flex;
    gap: 10px;
    color: var(--text-main);
    font-size: 13px;
    line-height: 1.55;
}

.service-feature-content li i {
    width: 22px;
    flex: 0 0 22px;
    margin-top: 3px;
    color: var(--service-accent);
}

.service-feature-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 23px;
    border-top: 1px solid var(--border-color);
}

.service-feature-deliverables h4 {
    width: 100%;
}

.service-feature-deliverables span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--heading-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--surface-soft);
    font-size: 11px;
    font-weight: 700;
}

.service-feature-deliverables i {
    color: var(--service-accent);
}

.services-process-section {
    padding: 130px 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.1), transparent 30%),
        linear-gradient(135deg, #061124, #0a2345);
}

.services-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 90px;
}

.services-process-copy {
    position: sticky;
    top: 120px;
    align-self: start;
}

.services-process-copy h2 {
    color: #fff;
}

.services-process-copy > p:last-child {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
}

.services-process-stack {
    display: grid;
    gap: 13px;
}

.services-process-stack article {
    position: relative;
    display: grid;
    grid-template-columns: 46px 52px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 142px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
}

.services-process-stack article:nth-child(even) {
    margin-left: 42px;
}

.services-process-stack small {
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 800;
}

.services-process-stack article > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
}

.services-process-stack h3 {
    color: #fff;
    font-size: 20px;
}

.services-process-stack p {
    grid-column: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.65;
}

.services-difference-section {
    background: var(--bg-light);
}

.services-section-heading--center {
    display: block;
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.services-capability-constellation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.services-capability-constellation article {
    min-height: 320px;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 21px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-card-premium);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-capability-constellation article:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-card-hover);
}

.services-capability-constellation article > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.07);
}

.services-capability-constellation strong {
    display: block;
    margin-top: 50px;
    color: var(--primary-color);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services-capability-constellation h3 {
    margin: 11px 0 13px;
    font-size: 22px;
}

.services-capability-constellation p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.72;
}

.services-governance-section {
    background: var(--bg-white);
}

.services-governance-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 90px;
    align-items: center;
}

.services-governance-grid > div:first-child > p:last-child {
    margin-top: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-governance-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.services-governance-list span {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 17px;
    background: var(--surface-soft);
}

.services-governance-list i {
    color: var(--primary-color);
    font-size: 23px;
}

.services-governance-list b {
    color: var(--heading-color);
    font-size: 14px;
}

.service-overview-expanded {
    margin-top: 22px;
    color: var(--text-light) !important;
    font-size: 16px !important;
}

.service-fit-section {
    padding: 125px 0;
    background:
        radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--service-accent) 8%, transparent), transparent 30%),
        var(--bg-white);
}

.service-fit-heading {
    max-width: 790px;
    margin-bottom: 55px;
}

.service-fit-heading h2 {
    font-size: 43px;
}

.service-fit-heading > p:last-child {
    max-width: 680px;
    margin-top: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.service-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-fit-card {
    min-height: 410px;
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background:
        linear-gradient(145deg, var(--surface-raised), color-mix(in srgb, var(--service-accent) 4%, var(--surface-raised)));
    box-shadow: var(--shadow-card-premium);
}

.service-fit-card--accent {
    color: #fff;
    border-color: color-mix(in srgb, var(--service-accent) 35%, transparent);
    background:
        radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--service-accent) 28%, transparent), transparent 36%),
        linear-gradient(145deg, #061124, #0a2345);
}

.service-fit-card > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    color: var(--service-accent);
    border: 1px solid color-mix(in srgb, var(--service-accent) 38%, var(--border-color));
    border-radius: 17px;
    font-size: 22px;
}

.service-fit-card h3 {
    margin-bottom: 26px;
    font-size: 23px;
}

.service-fit-card--accent h3 {
    color: #fff;
}

.service-fit-card ul {
    display: grid;
    gap: 15px;
    list-style: none;
}

.service-fit-card li {
    display: flex;
    gap: 11px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}

.service-fit-card--accent li {
    color: rgba(255, 255, 255, 0.68);
}

.service-fit-card li i {
    margin-top: 4px;
    color: var(--service-accent);
}

.service-faq-section {
    padding: 125px 0;
    background: var(--bg-light);
}

.service-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 90px;
}

.service-faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.service-faq-intro h2 {
    font-size: 42px;
}

.service-faq-intro > p:not(.section-label) {
    margin: 20px 0 28px;
    color: var(--text-light);
    line-height: 1.8;
}

.service-faq-list {
    display: grid;
    gap: 12px;
}

.service-faq-list details {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-sm);
}

.service-faq-list summary {
    display: grid;
    grid-template-columns: 42px 1fr 24px;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 18px 22px;
    color: var(--heading-color);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.service-faq-list summary::-webkit-details-marker {
    display: none;
}

.service-faq-list summary span {
    color: var(--service-accent);
    font-size: 10px;
    letter-spacing: 0.13em;
}

.service-faq-list summary > i {
    color: var(--service-accent);
    transition: transform 0.25s ease;
}

.service-faq-list details[open] summary > i {
    transform: rotate(45deg);
}

.service-faq-list details p {
    margin: 0 22px 24px 78px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}

/* Premium theme treatment across services, navigation, controls, and forms. */
.service-clean-hero,
.service-editorial-overview,
.service-capabilities-section,
.service-related-section {
    background:
        radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--service-accent) 6%, transparent), transparent 31%),
        var(--bg-white);
}

.service-capability-grid article,
.service-related-grid > a,
.service-deliverable-list > div {
    border-radius: 15px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-card-premium);
}

.btn-primary {
    color: #071426;
    background: var(--gold-gradient);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.2);
}

.btn-primary:hover {
    color: #071426;
    box-shadow: 0 18px 40px rgba(184, 134, 11, 0.32);
}

[data-theme="dark"] .service-clean-hero::before {
    opacity: 0.13;
}

[data-theme="dark"] .service-signature-icon,
[data-theme="dark"] .service-signature-label {
    background: var(--surface-raised);
}

[data-theme="dark"] .service-context-section,
[data-theme="dark"] .service-deliverables-section,
[data-theme="dark"] .service-faq-section,
[data-theme="dark"] .services-bento-section,
[data-theme="dark"] .services-difference-section {
    background:
        radial-gradient(circle at 85% 8%, rgba(212, 175, 55, 0.055), transparent 32%),
        var(--bg-light);
}

[data-theme="dark"] .service-fit-card:not(.service-fit-card--accent),
[data-theme="dark"] .services-capability-constellation article,
[data-theme="dark"] .services-governance-list span {
    background: linear-gradient(145deg, #0d203d, #091a33);
}

[data-theme="dark"] .nexus-form input,
[data-theme="dark"] .nexus-form textarea,
[data-theme="dark"] .nexus-form select {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.045);
}

[data-theme="dark"] .site-header,
[data-theme="dark"] .site-header.scrolled {
    border-bottom-color: rgba(212, 175, 55, 0.2);
    background: rgba(3, 12, 28, 0.95);
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1100px) {
    .services-parent-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
        gap: 45px;
    }

    .services-parent-node {
        transform:
            translate(-50%, -50%)
            rotate(var(--node-angle))
            translateX(175px)
            rotate(calc(var(--node-angle) * -1));
    }

    .services-experience .services-bento-card {
        grid-column: span 4;
    }

    .services-experience .services-bento-card:nth-child(1),
    .services-experience .services-bento-card:nth-child(6) {
        grid-column: span 8;
    }

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

@media (max-width: 900px) {
    .services-parent-hero__grid,
    .services-platform-intro__grid,
    .services-process-layout,
    .services-governance-grid,
    .service-faq-grid {
        grid-template-columns: 1fr;
    }

    .services-parent-signature {
        width: min(100%, 540px);
        margin: 0 auto;
    }

    .services-experience .services-bento-card,
    .services-experience .services-bento-card:nth-child(1),
    .services-experience .services-bento-card:nth-child(6) {
        grid-column: span 6;
    }

    .service-feature-module {
        grid-template-columns: 1fr;
    }

    .service-feature-module.is-reversed .service-feature-identity {
        order: 0;
    }

    .services-process-copy,
    .service-faq-intro {
        position: relative;
        top: auto;
    }

    .service-fit-grid {
        grid-template-columns: 1fr;
    }

    .service-fit-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .main-nav .menu-item-has-children::after {
        display: none;
    }

    .services-parent-hero__grid {
        min-height: auto;
        padding-top: 125px;
        padding-bottom: 70px;
    }

    .services-parent-hero__copy h1 {
        font-size: 42px;
    }

    .services-parent-signature {
        transform: scale(0.86);
        margin-top: -25px;
        margin-bottom: -25px;
    }

    .services-parent-node {
        transform:
            translate(-50%, -50%)
            rotate(var(--node-angle))
            translateX(155px)
            rotate(calc(var(--node-angle) * -1));
    }

    .services-platform-intro,
    .services-bento-section,
    .services-detail-section,
    .services-process-section,
    .services-difference-section,
    .services-governance-section,
    .service-fit-section,
    .service-faq-section {
        padding: 82px 0;
    }

    .services-platform-intro__grid,
    .services-process-layout,
    .services-governance-grid,
    .service-faq-grid {
        gap: 45px;
    }

    .services-platform-signals,
    .services-governance-list,
    .services-capability-constellation {
        grid-template-columns: 1fr;
    }

    .services-experience .services-bento-card,
    .services-experience .services-bento-card:nth-child(1),
    .services-experience .services-bento-card:nth-child(6) {
        grid-column: 1 / -1;
    }

    .service-feature-identity,
    .service-feature-content {
        padding: 32px 25px;
    }

    .service-feature-content ul {
        grid-template-columns: 1fr;
    }

    .services-process-stack article,
    .services-process-stack article:nth-child(even) {
        grid-template-columns: 38px 45px 1fr;
        margin-left: 0;
        padding: 20px 16px;
    }

    .services-process-stack p {
        grid-column: 1 / -1;
    }

    .service-fit-heading h2,
    .service-faq-intro h2 {
        font-size: 34px;
    }

    .service-faq-list summary {
        grid-template-columns: 30px 1fr 20px;
        padding: 16px;
        font-size: 14px;
    }

    .service-faq-list details p {
        margin: 0 16px 20px 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-parent-rings::after {
        animation: none;
    }
}

/* Cards remain dark-photo — no change needed; overlays already use navy */

/* ── Responsive ── */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .industries-section {
        padding: 80px 0;
    }

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

    .industry-card {
        min-height: 260px;
    }

    .industry-overlay {
        padding: 24px 20px;
    }

    /* On mobile, always show details since hover is unavailable */
    .industry-details {
        max-height: 200px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 12px;
    }

    h3.industry-title {
        font-size: 18px;
    }
}

/* ═══════════════════════════════════════════════════
   BUSINESS GROWTH SECTION
   ═══════════════════════════════════════════════════ */
.business-growth {
    padding: 120px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.growth-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.growth-text h2.section-title {
    font-size: 38px;
    margin-bottom: 24px;
}

.growth-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.growth-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.growth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--heading-color);
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: default;
}

.growth-feature-item:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.growth-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Image Visual */
.growth-visual {
    position: relative;
}

.growth-visual-img {
    border-radius: 12px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.growth-visual:hover .growth-visual-img {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(10, 25, 49, 0.25);
}

/* Floating Quote Box */
.growth-quote {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    max-width: 320px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
}

.growth-visual:hover .growth-quote {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.growth-quote p {
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.growth-quote h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .growth-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .growth-quote {
        left: 20px;
        right: 20px;
        bottom: -20px;
        max-width: none;
        width: auto;
    }
}

@media (max-width: 768px) {
    .business-growth {
        padding: 80px 0;
    }
    .growth-text h2.section-title {
        font-size: 32px;
    }
}

/* Tade Services source layout, retained beneath the shared child-service hero. */
.services-experience {
    --service-accent: var(--primary-color);
}

.services-experience .eyebrow {
    margin: 0;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.experience-wave {
    position: relative;
    z-index: 4;
    height: 1px;
    color: var(--primary-color);
}

.experience-wave svg {
    position: absolute;
    top: -60px;
    left: 50%;
    width: min(78vw, 1120px);
    height: 120px;
    overflow: visible;
    transform: translateX(-50%);
}

.experience-wave path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

.services-bento-section,
.services-detail-section,
.services-difference-section,
.services-governance-section {
    padding: 112px 0;
}

.services-section-heading,
.services-detail-intro {
    max-width: 800px;
    margin-bottom: 48px;
}

.services-section-heading h2,
.services-detail-intro h2,
.services-process-copy h2,
.services-governance-grid h2,
.experience-cta h2 {
    margin: 12px 0 0;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.services-section-heading > p:last-child {
    max-width: 650px;
    margin-top: 18px;
    color: var(--text-light);
    font-size: 16px;
}

.services-experience .services-bento-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.services-experience .services-bento-card {
    position: relative;
    grid-column: span 3;
    min-height: 340px;
    padding: 28px;
    overflow: hidden;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-card-premium);
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.services-experience .services-bento-card--1,
.services-experience .services-bento-card--4 {
    grid-column: span 5;
}

.services-experience .services-bento-card--2,
.services-experience .services-bento-card--3 {
    grid-column: span 7;
}

.services-experience .services-bento-card:nth-child(1),
.services-experience .services-bento-card:nth-child(6) {
    color: #fff;
    background:
        radial-gradient(circle at 92% 6%, rgba(212, 175, 55, 0.18), transparent 32%),
        #0a1931;
}

.services-experience .services-bento-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: var(--shadow-card-hover);
}

.services-bento-icon,
.service-feature-identity > span,
.services-process-stack article > span,
.services-capability-constellation article > span {
    display: grid;
    place-items: center;
}

.services-bento-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: var(--primary-color);
    background: var(--surface-soft);
}

.services-bento-icon svg,
.service-feature-identity svg,
.services-process-stack svg,
.services-capability-constellation svg,
.services-governance-list svg {
    width: 25px;
    height: 25px;
}

.services-experience .services-bento-card:nth-child(1) .services-bento-icon,
.services-experience .services-bento-card:nth-child(6) .services-bento-icon {
    color: #f0d78a;
    background: rgba(255, 255, 255, 0.08);
}

.services-experience .services-bento-card > small {
    position: absolute;
    top: 30px;
    right: 30px;
    color: color-mix(in srgb, var(--text-main) 22%, transparent);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.services-experience .services-bento-card:nth-child(1) > small,
.services-experience .services-bento-card:nth-child(6) > small {
    color: rgba(255, 255, 255, 0.25);
}

.services-experience .services-bento-card h3 {
    margin: 58px 0 12px;
    color: inherit;
    font-size: clamp(23px, 2.2vw, 32px);
    line-height: 1.12;
}

.services-experience .services-bento-card p {
    margin: 0;
    color: var(--text-light);
}

.services-experience .services-bento-card:nth-child(1) p,
.services-experience .services-bento-card:nth-child(6) p {
    color: rgba(255, 255, 255, 0.65);
}

.services-experience .services-bento-card > i {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-color);
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
    letter-spacing: 0.05em;
}

.button-arrow {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid currentColor;
    border-radius: 50%;
    line-height: 1;
}

.services-detail-section {
    background:
        radial-gradient(circle at 88% 6%, rgba(212, 175, 55, 0.055), transparent 29%),
        var(--bg-light);
}

.services-detail-list {
    gap: 24px;
}

.service-feature-module {
    min-height: 470px;
    border-radius: 26px;
}

.service-feature-identity {
    padding: 46px;
    background:
        linear-gradient(145deg, rgba(212, 175, 55, 0.11), transparent 38%),
        #0a1931;
}

.service-feature-identity > span {
    width: 58px;
    height: 58px;
    color: #f0d78a;
    border: 1px solid rgba(240, 215, 138, 0.25);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.06);
}

.service-feature-identity small {
    margin-top: 46px;
    color: #f0d78a;
}

.service-feature-identity h3 {
    margin: 10px 0 15px;
    font-size: clamp(29px, 3vw, 42px);
}

.service-feature-identity a {
    color: #f0d78a;
}

.service-feature-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 46px;
}

.service-feature-content ul {
    grid-template-columns: 1fr;
    gap: 11px;
}

.service-feature-content li {
    position: relative;
    display: block;
    padding-left: 18px;
}

.service-feature-content li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.service-feature-deliverables {
    grid-column: 1 / -1;
}

.services-process-section {
    padding: 120px 0 140px;
    color: var(--text-main);
    background: var(--bg-white);
}

.services-process-layout {
    grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
    gap: 84px;
    align-items: start;
}

.services-process-copy h2 {
    color: var(--heading-color);
}

.services-process-copy > p:last-child {
    color: var(--text-light);
}

.services-process-stack {
    gap: 22px;
    padding-bottom: 80px;
}

.services-process-stack article,
.services-process-stack article:nth-child(even) {
    position: sticky;
    top: calc(112px + (var(--process-index) * 18px));
    display: block;
    min-height: 330px;
    margin-left: 0;
    padding: 38px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(212, 175, 55, 0.08), transparent 35%),
        #0a1931;
    box-shadow: 0 28px 75px rgba(3, 18, 43, 0.2);
}

.services-process-stack article:nth-child(even) {
    background:
        linear-gradient(145deg, rgba(27, 138, 131, 0.13), transparent 40%),
        #08234b;
}

.services-process-stack small {
    position: absolute;
    top: 34px;
    right: 36px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 30px;
}

.services-process-stack article > span {
    width: 58px;
    height: 58px;
    color: #f0d78a;
    border: 1px solid rgba(240, 215, 138, 0.25);
    border-radius: 17px;
}

.services-process-stack h3 {
    margin: 78px 0 12px;
    font-size: clamp(29px, 3vw, 40px);
}

.services-process-stack p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
}

.services-difference-section {
    color: #fff;
    background:
        radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.1), transparent 38%),
        #0a1931;
}

.services-section-heading--center h2 {
    color: #fff;
}

.services-capability-constellation {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.12);
}

.services-capability-constellation article {
    min-height: 340px;
    padding: 30px;
    border: 0;
    border-radius: 0;
    background: #04152f;
    box-shadow: none;
}

.services-capability-constellation article:hover {
    background: #0a2952;
}

.services-capability-constellation article > span {
    width: 50px;
    height: 50px;
    margin-bottom: 60px;
    color: #f0d78a;
    border: 0;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.1);
}

.services-capability-constellation strong {
    margin-top: 0;
    color: #f0d78a;
}

.services-capability-constellation h3 {
    color: #fff;
}

.services-capability-constellation p {
    color: rgba(255, 255, 255, 0.58);
}

.services-governance-section {
    background:
        radial-gradient(circle at 12% 86%, rgba(212, 175, 55, 0.06), transparent 30%),
        var(--bg-light);
}

.services-governance-grid {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 80px;
}

.services-governance-list {
    gap: 14px;
}

.services-governance-list span {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 110px;
    padding: 20px;
    border-radius: 17px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-card-premium);
}

.services-governance-list svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.experience-cta {
    padding: 92px 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(212, 175, 55, 0.13), transparent 34%),
        #0a1931;
}

.experience-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 54px;
}

.experience-cta h2 {
    max-width: 820px;
    color: #fff;
}

.experience-cta .eyebrow {
    color: #f0d78a;
}

.experience-cta .btn {
    flex: 0 0 auto;
}

/* More dimensional surfaces in both themes without changing the brand palette. */
body {
    background:
        radial-gradient(circle at 8% 4%, rgba(212, 175, 55, 0.045), transparent 24%),
        var(--bg-white);
}

.site-main > section,
.site-main > div > section {
    border-bottom: 1px solid color-mix(in srgb, var(--border-color) 72%, transparent);
}

.eco-value-card,
.impact-card,
.about-vm-card,
.nexus-form,
.consultation-card,
.industry-card {
    box-shadow: var(--shadow-card-premium);
}

.eco-value-card:hover,
.impact-card:hover,
.about-vm-card:hover,
.industry-card:hover {
    box-shadow: var(--shadow-card-hover);
}

input,
textarea,
select {
    border-color: color-mix(in srgb, var(--border-color) 82%, var(--primary-color));
    box-shadow: inset 0 1px 2px rgba(10, 25, 49, 0.035);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12), inset 0 1px 2px rgba(10, 25, 49, 0.03);
}

.theme-toggle-btn:hover,
.main-nav a:hover {
    filter: brightness(1.08);
}

[data-theme="dark"] body {
    background:
        radial-gradient(circle at 8% 4%, rgba(212, 175, 55, 0.07), transparent 25%),
        linear-gradient(180deg, #07152b 0%, #061124 100%);
}

[data-theme="dark"] .services-process-section,
[data-theme="dark"] .service-clean-hero,
[data-theme="dark"] .service-editorial-overview,
[data-theme="dark"] .service-capabilities-section,
[data-theme="dark"] .service-related-section {
    background:
        radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.055), transparent 30%),
        var(--bg-white);
}

[data-theme="dark"] .services-governance-list span,
[data-theme="dark"] .service-feature-content,
[data-theme="dark"] .service-faq-list details,
[data-theme="dark"] .service-fit-card:not(.service-fit-card--accent) {
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(145deg, #0d203d, #091a33);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    border-color: rgba(212, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

@media (max-width: 1100px) {
    .services-experience .services-bento-card,
    .services-experience .services-bento-card--1,
    .services-experience .services-bento-card--2,
    .services-experience .services-bento-card--3,
    .services-experience .services-bento-card--4 {
        grid-column: span 6;
    }

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

@media (max-width: 900px) {
    .services-process-layout,
    .services-governance-grid {
        grid-template-columns: 1fr;
    }

    .services-process-copy {
        position: static;
    }
}

@media (max-width: 640px) {
    .services-experience .services-bento-card,
    .services-experience .services-bento-card--1,
    .services-experience .services-bento-card--2,
    .services-experience .services-bento-card--3,
    .services-experience .services-bento-card--4 {
        grid-column: 1 / -1;
    }

    .service-feature-module,
    .service-feature-content,
    .services-capability-constellation,
    .services-governance-list {
        grid-template-columns: 1fr;
    }

    .service-feature-module.is-reversed .service-feature-identity {
        order: 0;
    }

    .services-process-stack article,
    .services-process-stack article:nth-child(even) {
        position: relative;
        top: auto;
        min-height: 290px;
    }

    .experience-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ================================================================
   PRODUCTION POLISH AND THEME CONTRAST
   ================================================================ */

/* Keep Tade's portfolio composition isolated from retired Services rules. */
.services-experience .services-bento-section {
    position: relative;
    padding: 118px 0 124px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.07), transparent 30%),
        var(--bg-white);
}

.services-experience .services-bento-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0, color-mix(in srgb, var(--border-color) 38%, transparent) 50%, transparent 100%) top / 100% 1px no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 22%);
}

.services-experience .services-bento-section > .container {
    position: relative;
    z-index: 1;
}

.services-experience .services-section-heading {
    display: block;
    max-width: 820px;
    margin: 0 0 54px;
}

.services-experience .services-section-heading .eyebrow {
    display: block;
    margin: 0 0 14px;
}

.services-experience .services-section-heading h2 {
    max-width: 790px;
    margin: 0;
}

.services-experience .services-section-heading > p:last-child {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--text-light);
    font-size: 17px;
    font-weight: 450;
    line-height: 1.78;
    letter-spacing: 0;
    text-transform: none;
}

.services-experience .services-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.services-experience .services-bento-grid .services-bento-card--1,
.services-experience .services-bento-grid .services-bento-card--4 {
    grid-column: span 5;
}

.services-experience .services-bento-grid .services-bento-card--2,
.services-experience .services-bento-grid .services-bento-card--3 {
    grid-column: span 7;
}

.services-experience .services-bento-card {
    display: block;
    justify-content: initial;
    min-width: 0;
    min-height: 340px;
    padding: 28px 28px 76px;
}

.services-experience .services-bento-card::before {
    display: none;
}

.services-experience .services-bento-card h3 {
    max-width: 520px;
    margin: 58px 0 14px;
}

.services-experience .services-bento-card p {
    max-width: 560px;
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 450;
    line-height: 1.72;
    letter-spacing: 0;
    text-transform: none;
}

.services-experience .services-bento-card > i {
    min-height: 28px;
}

.services-experience .services-bento-card:nth-child(1) p,
.services-experience .services-bento-card:nth-child(6) p {
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons retain readable foregrounds in every theme and interaction state. */
.btn-primary,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus-visible {
    color: #071426;
    border-color: transparent;
    background: var(--gold-gradient);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible,
.btn-outline-dark:focus-visible,
.soc-link:focus-visible,
.footer-credit-badge:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--primary-color) 58%, transparent);
    outline-offset: 3px;
}

.btn-secondary {
    color: var(--heading-color);
    border-color: color-mix(in srgb, var(--heading-color) 24%, var(--border-color));
    background: color-mix(in srgb, var(--bg-white) 88%, transparent);
    box-shadow: 0 8px 24px rgba(10, 25, 49, 0.06);
}

.btn-secondary:hover {
    color: #071426;
    border-color: var(--primary-color);
    background: var(--gold-gradient);
    box-shadow: 0 14px 34px rgba(184, 134, 11, 0.22);
    transform: translateY(-2px);
}

.hero-section .btn-hero-outline,
.hero-section .btn-hero-outline:visited {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-section .btn-hero-outline:hover,
.hero-section .btn-hero-outline:focus-visible {
    color: #071426;
    border-color: var(--primary-color);
    background: var(--gold-gradient);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.26);
}

[data-theme="dark"] .btn-outline {
    color: #f8fafc;
    border-color: rgba(248, 250, 252, 0.52);
    background: rgba(255, 255, 255, 0.025);
}

[data-theme="dark"] .btn-outline:hover {
    color: #071426;
    border-color: var(--primary-color);
    background: var(--gold-gradient);
}

[data-theme="dark"] .btn-outline-dark,
[data-theme="dark"] .btn-secondary {
    color: #f8fafc;
    border-color: rgba(212, 175, 55, 0.34);
    background: rgba(255, 255, 255, 0.035);
}

[data-theme="dark"] .btn-outline-dark:hover,
[data-theme="dark"] .btn-secondary:hover {
    color: #071426;
    border-color: var(--primary-color);
    background: var(--gold-gradient);
}

/* More legible service supporting content. */
.service-clean-hero__description {
    font-size: 18px;
    line-height: 1.82;
}

.service-overview-note,
.service-deliverables-grid > div:first-child > p:not(.section-label),
.service-faq-intro > p:not(.section-label) {
    font-size: 15px;
    line-height: 1.82;
}

.service-challenges article {
    gap: 24px;
    padding: 26px 0;
}

.service-challenges article p {
    font-size: 18px;
    line-height: 1.55;
}

.service-value-panel > div strong {
    font-size: 15px;
    line-height: 1.68;
}

.service-capability-grid h3 {
    font-size: 22px;
    line-height: 1.4;
}

.service-deliverable-list {
    gap: 14px;
}

.service-deliverable-list > div {
    grid-template-columns: 48px 38px 1fr;
    gap: 17px;
    min-height: 88px;
    padding: 18px 24px;
    border-radius: 14px;
    background: var(--surface-raised);
    box-shadow: 0 10px 28px rgba(10, 25, 49, 0.055);
}

.service-deliverable-list span {
    font-size: 11px;
}

.service-deliverable-list i {
    font-size: 20px;
}

.service-deliverable-list strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.service-fit-card li {
    gap: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.service-faq-list summary {
    font-size: 15px;
    line-height: 1.5;
}

.service-faq-list details p {
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.82;
}

.service-related-grid small {
    font-size: 10px;
}

.service-related-grid h3 {
    font-size: 18px;
    line-height: 1.4;
}

.service-feature-content h4 {
    font-size: 12px;
}

.service-feature-content li {
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.68;
}

.service-feature-deliverables span {
    font-size: 12px;
    line-height: 1.45;
}

/* Premium footer interactions and a deliberate TOLO brand signature. */
.site-footer--tade .social-row {
    gap: 13px;
}

.site-footer--tade .soc-link {
    position: relative;
    isolation: isolate;
    width: 42px;
    height: 42px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    border-color: rgba(212, 175, 55, 0.22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
    transition: color 240ms ease, transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-footer--tade .soc-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--gold-gradient);
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 240ms ease, transform 240ms ease;
}

.site-footer--tade .soc-link:hover,
.site-footer--tade .soc-link:focus-visible {
    color: #071426;
    border-color: rgba(243, 208, 120, 0.92);
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28), 0 0 22px rgba(212, 175, 55, 0.16);
}

.site-footer--tade .soc-link:hover::before,
.site-footer--tade .soc-link:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.site-footer--tade .footer-bottom {
    justify-content: space-between;
    gap: 28px;
}

.footer-credit-badge {
    position: relative;
    gap: 10px;
    min-height: 46px;
    padding: 9px 15px 9px 17px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
    font-size: 10px;
    letter-spacing: 0.04em;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.footer-credit-badge::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -35%;
    width: 32%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: rotate(24deg);
    transition: left 500ms ease;
}

.footer-credit-badge span {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-credit-badge strong {
    color: #f0d78a;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.footer-credit-badge i {
    font-size: 10px;
    transition: transform 240ms ease;
}

.footer-credit-badge:hover,
.footer-credit-badge:focus-visible {
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(243, 208, 120, 0.72);
    background:
        linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.045));
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24), 0 0 24px rgba(212, 175, 55, 0.12);
    transform: translateY(-3px);
}

.footer-credit-badge:hover::before,
.footer-credit-badge:focus-visible::before {
    left: 112%;
}

.footer-credit-badge:hover i,
.footer-credit-badge:focus-visible i {
    transform: translate(2px, -2px);
}

/* Dark-mode surfaces and muted text retain clear separation. */
[data-theme="dark"] .services-experience .services-bento-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.08), transparent 30%),
        linear-gradient(180deg, #0a1931, #07152b);
}

[data-theme="dark"] .services-experience .services-bento-card:not(:nth-child(1)):not(:nth-child(6)) {
    color: #f8fafc;
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(145deg, #0e2341, #0a1b35);
}

[data-theme="dark"] .services-experience .services-bento-card:not(:nth-child(1)):not(:nth-child(6)) p {
    color: #b5c1d3;
}

[data-theme="dark"] .service-deliverable-list > div,
[data-theme="dark"] .service-capability-grid article,
[data-theme="dark"] .service-related-grid > a,
[data-theme="dark"] .service-faq-list details {
    color: var(--text-main);
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(145deg, #0e2341, #0a1b35);
}

[data-theme="dark"] .service-deliverable-list strong,
[data-theme="dark"] .service-related-grid h3,
[data-theme="dark"] .service-faq-list summary {
    color: #f8fafc;
}

[data-theme="dark"] .service-faq-list details p,
[data-theme="dark"] .service-fit-card li,
[data-theme="dark"] .service-feature-content li {
    color: #b8c4d6;
}

[data-theme="dark"] option {
    color: #f8fafc;
    background: #0a1931;
}

@media (max-width: 900px) {
    .services-experience .services-bento-section {
        padding: 96px 0 104px;
    }

    .services-experience .services-section-heading {
        margin-bottom: 42px;
    }

    .services-experience .services-bento-grid .services-bento-card--1,
    .services-experience .services-bento-grid .services-bento-card--2,
    .services-experience .services-bento-grid .services-bento-card--3,
    .services-experience .services-bento-grid .services-bento-card--4 {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .services-experience .services-bento-section {
        padding: 78px 0 84px;
    }

    .services-experience .services-section-heading > p:last-child {
        font-size: 16px;
    }

    .services-experience .services-bento-card {
        min-height: 330px;
        padding: 25px 24px 72px;
    }

    .services-experience .services-bento-card h3 {
        margin-top: 50px;
    }

    .services-experience .services-bento-grid .services-bento-card--1,
    .services-experience .services-bento-grid .services-bento-card--2,
    .services-experience .services-bento-grid .services-bento-card--3,
    .services-experience .services-bento-grid .services-bento-card--4 {
        grid-column: 1 / -1;
    }

    .service-deliverable-list > div {
        grid-template-columns: 38px 30px 1fr;
        padding: 17px;
    }

    .site-footer--tade .footer-bottom {
        flex-direction: column;
    }
}
