@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-800.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-400.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/cabinet-grotesk/CabinetGrotesk-800.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    --primary-gold: #0080ba;
    --primary-gold-hover: #1a98d2;
    --dark-bg: #000000;
    --dark-surface: #031a2c;
    --dark-surface-light: #004570;
    --text-light: #ffffff;
    --text-muted: #9bb6c9;
    --font-heading: 'Cabinet Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Glassmorphism */
    --glass-bg: rgba(0, 69, 112, 0.52);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.text-gold {
    color: var(--primary-gold);
}

.text-muted {
    color: var(--text-muted);
}

.center {
    text-align: center;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    width: 90%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.align-center { align-items: center; }
.m-t-20 { margin-top: 20px; }
.m-t-40 { margin-top: 40px; }
.responsive-img { max-width: 100%; height: auto; }
.rounded { border-radius: 12px; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 161, 100, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--text-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* =========================================
   HEADER & TOP BAR
   ========================================= */
.top-bar {
    background-color: #050812;
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.top-bar .container,
.main-header .container {
    max-width: none;
    width: 100%;
    padding-left: clamp(18px, 3vw, 48px);
    padding-right: clamp(18px, 3vw, 48px);
}

.top-bar-link {
    color: var(--text-muted);
    margin-left: 20px;
    font-weight: 500;
}
.top-bar-left .top-bar-link { margin-left: 0; }

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

.top-bar-link i {
    margin-right: 5px;
    color: var(--primary-gold);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: var(--glass-bg);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
    gap: 24px;
}

.logo {
    flex: 0 0 auto;
    min-width: 0;
}

.logo img {
    height: 46px;
    max-width: 190px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: clamp(14px, 1.8vw, 24px);
    flex: 1 1 auto;
    min-width: 0;
}

.nav-list .submenu {
    list-style: none;
    margin: 0;
}

.nav-item > a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-link-caret {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.56);
}

.nav-item > a i,
.submenu-toggle i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.submenu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.submenu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

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

.nav-item:hover > a:after {
    width: 100%;
}
.nav-item:hover > a i,
.nav-item:hover .submenu-toggle i {
    transform: rotate(180deg);
}
.nav-item.is-open .submenu-toggle i {
    transform: rotate(180deg);
}
.nav-item:hover > a {
    color: var(--primary-gold);
}

.nav-item:hover .nav-link-caret {
    color: var(--primary-gold);
}

.nav-actions {
    flex: 0 0 auto;
}

/* Dropdowns */
.nav-item.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-top: 3px solid var(--primary-gold);
    box-shadow: var(--glass-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background-color: rgba(0, 128, 186, 0.1);
    color: var(--primary-gold);
    padding-left: 25px;
}

/* Mega Menu */
.mega-menu {
    min-width: 450px;
    padding: 20px;
}

.submenu {
    max-height: min(70vh, 520px);
    overflow-y: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #03152a 0%, rgba(3, 21, 42, 0.8) 50%, rgba(3, 21, 42, 0.3) 100%);
}

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

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 5px;
}

/* =========================================
   SECTIONS & CARDS
   ========================================= */
.section-dark {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.section-header {
    display: grid;
    gap: 18px;
    margin-bottom: 72px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(127, 209, 255, 0.18);
    background: rgba(127, 209, 255, 0.08);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 0;
}

.section-title {
    font-size: 2.8rem;
    max-width: 14ch;
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

.glass-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(204, 161, 100, 0.3);
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card .read-more {
    margin-top: 20px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}
.service-card:hover .read-more {
    text-decoration: underline;
}

/* =========================================
   EMBAIXADORES
   ========================================= */
.section-embaixadores {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}

.gold-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
}

.author {
    font-weight: 600;
    color: var(--primary-gold);
}

/* =========================================
   FORM SECTION & FOOTER
   ========================================= */
.form-section {
    background-color: var(--dark-surface-light);
}

.main-footer {
    background-color: #04060d;
    padding: 30px 0;
    border-top: 1px solid #1a2238;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 161, 100, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(204, 161, 100, 0); }
    100% { box-shadow: 0 0 0 0 rgba(204, 161, 100, 0); }
}

/* Responsive */
@media (max-width: 992px) {
    .top-bar { display: none; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-list { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 3rem; }
}

/* =========================================
   HOME V2 / RECONSTRUCAO
   ========================================= */
:root {
    --primary-gold-soft: #7fd1ff;
    --dark-ink: #04111c;
    --dark-panel: #052038;
    --dark-panel-strong: #004570;
    --line-soft: rgba(255, 255, 255, 0.08);
    --font-heading: 'Cabinet Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --hero-fixed-height: 800px;
    --hero-nav-size: 52px;
    --hero-nav-offset: 28px;
    --hero-safe-inline: calc(var(--hero-nav-size) + (var(--hero-nav-offset) * 2));
    --topbar-height: 42px;
    --header-height: 90px;
    --hero-controls-height: 86px;
    --hero-viewport-offset: calc(var(--topbar-height) + var(--header-height));
}

body.home-v2 {
    background:
        radial-gradient(circle at top left, rgba(0, 128, 186, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(0, 69, 112, 0.18), transparent 32%),
        linear-gradient(180deg, #01060a 0%, #04111c 55%, #03111d 100%);
    color: var(--text-light);
}

.top-bar-premium {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(5, 8, 18, 0.95);
}

.top-bar-copy {
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.home-v2 .main-header {
    background: rgba(6, 14, 25, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-v2 .logo img {
    height: 56px;
}

.hero-fullbleed {
    width: 100%;
}

.section-kicker,
.eyebrow,
.summary-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-gold-soft);
}

.hero-v2 {
    min-height: var(--hero-fixed-height);
    padding: 0;
}

.hero-v2-background {
    inset: 0;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), transparent 88%);
    opacity: 0.18;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
    z-index: 1;
    width: 100%;
    height: var(--hero-fixed-height);
    min-height: var(--hero-fixed-height);
    display: flex;
    flex-direction: column;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-color: rgba(127, 209, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        rgba(12, 23, 39, 0.82);
    box-shadow: none;
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    z-index: 2;
}

.hero-slider-track {
    display: flex;
    flex: 1 1 auto;
    transition: transform 0.6s ease;
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
    align-items: stretch;
    min-height: calc(var(--hero-fixed-height) - var(--hero-controls-height));
    padding-inline: var(--hero-safe-inline);
}

.hero-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 88%;
    max-width: 100%;
    margin-left: clamp(18px, 2.2vw, 34px);
    padding: clamp(44px, 5vw, 72px) clamp(4px, 0.7vw, 10px) clamp(44px, 5vw, 72px) 0;
    min-width: 0;
}

.hero-slide-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary-gold-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.hero-slide-title {
    margin-bottom: 20px;
    max-width: 11ch;
    font-size: clamp(2.3rem, 3.8vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.hero-slide-description {
    max-width: 52ch;
    font-size: clamp(1.04rem, 1.12vw, 1.12rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
}

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

.hero-slide-image-wrap {
    position: relative;
    min-height: 100%;
    background: #03111d;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: var(--hero-controls-height);
    padding: 16px clamp(24px, 3vw, 36px) 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(4, 13, 22, 0.82), rgba(2, 8, 14, 0.96));
    z-index: 3;
}

.hero-slider-meta {
    display: grid;
    justify-items: center;
    gap: 10px;
    flex: 0 1 auto;
}

.hero-slider-label {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-slider-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero-dot,
.hero-nav-btn {
    border: 0;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.hero-dot.is-active {
    width: 34px;
    background: var(--primary-gold);
}

.hero-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--hero-nav-size);
    height: var(--hero-nav-size);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    top: calc((var(--hero-fixed-height) - var(--hero-controls-height)) / 2);
    transform: translateY(-50%);
    z-index: 4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0.72;
}

.hero-nav-btn i {
    font-size: 0.88rem;
}

#hero-prev {
    left: var(--hero-nav-offset);
}

#hero-next {
    right: var(--hero-nav-offset);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    opacity: 1;
}

.hero-slider-counter {
    min-width: 72px;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    pointer-events: auto;
}

.proof-strip {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    padding-bottom: 34px;
}

.brand-lead-section {
    position: relative;
    z-index: 2;
    padding: 34px 0 28px;
}

.brand-lead-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(8, 18, 30, 0.94), rgba(4, 14, 24, 0.82)),
        radial-gradient(circle at top left, rgba(127, 209, 255, 0.12), transparent 34%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.brand-lead-copy {
    max-width: 560px;
}

.brand-lead-title {
    margin-top: 14px;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.brand-lead-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--text-light);
    font-weight: 600;
}

.brand-lead-link::after {
    content: '\2192';
    color: var(--primary-gold-soft);
    transition: transform 0.2s ease;
}

.brand-lead-link:hover::after {
    transform: translateX(4px);
}

.brand-lead-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.brand-lead-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-lead-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(127, 209, 255, 0.14), rgba(0, 69, 112, 0.18));
    color: var(--primary-gold-soft);
    font-size: 1.15rem;
}

.brand-lead-item h3 {
    font-size: 1.08rem;
    line-height: 1.3;
}

.testimonials-section {
    position: relative;
    z-index: 2;
    padding: 28px 0 52px;
}

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

.testimonial-card {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
        rgba(8, 17, 29, 0.76);
    backdrop-filter: blur(14px);
}

.testimonial-rating {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 18px;
    color: var(--primary-gold-soft);
    font-size: 0.9rem;
}

.testimonial-quote {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.testimonial-meta {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-media {
    width: 88px;
    height: 88px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(127, 209, 255, 0.1), rgba(0, 69, 112, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-media-asset,
.testimonial-avatar {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(127, 209, 255, 0.16), rgba(0, 69, 112, 0.14));
    color: var(--primary-gold-soft);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.testimonial-media.is-video {
    background: rgba(4, 14, 24, 0.82);
}

.testimonial-name {
    display: block;
    font-size: 1rem;
}

.testimonial-role {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
}

.testimonial-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.testimonial-proof-card {
    margin: 0;
}

.testimonial-proof-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-proof-asset,
.testimonial-proof-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-proof-placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(127, 209, 255, 0.06), rgba(0, 69, 112, 0.08));
}

.testimonial-proof-card figcaption {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}

.pioneer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    gap: 22px;
    align-items: stretch;
}

.pioneer-card {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        rgba(8, 17, 29, 0.76);
}

.pioneer-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 3vw, 40px);
}

.pioneer-card-copy .section-title {
    margin-top: 8px;
}

.pioneer-card-copy .section-intro {
    max-width: 30ch;
    margin: 18px 0 30px;
}

.pioneer-card-media {
    display: flex;
    flex-direction: column;
}

.pioneer-media {
    aspect-ratio: 1 / 1.04;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.pioneer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pioneer-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 22px 24px;
}

.pioneer-card-body h3 {
    font-size: 1.4rem;
}

.pioneer-card-body p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.proof-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
}

.proof-item {
    padding: 28px clamp(22px, 2.4vw, 34px);
    background: rgba(11, 20, 34, 0.9);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.proof-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-gold-soft);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.proof-item p {
    max-width: 30ch;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.76);
}

.editorial-section,
.section-contrast,
.section-sand,
.network-section,
.faq-section,
.form-section-v2 {
    background: transparent;
}

.split-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 42px;
    align-items: start;
}

.section-intro {
    position: relative;
    max-width: 44ch;
    padding-left: 20px;
    margin-top: 10px;
    border-left: 1px solid rgba(127, 209, 255, 0.24);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.section-intro::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0.7em;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--primary-gold-soft);
    box-shadow: 0 0 0 8px rgba(127, 209, 255, 0.08);
}

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

.editorial-fullbleed {
    width: 100%;
    padding-inline: clamp(18px, 3vw, 48px);
}

.editorial-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 36px);
    align-items: stretch;
    width: 100%;
    min-height: 760px;
}

.editorial-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    padding: clamp(28px, 3vw, 44px) 0;
    justify-content: center;
}

.editorial-grid-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 10px 0 8px;
    width: 100%;
}

.editorial-card {
    min-height: 260px;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.editorial-card-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(127, 209, 255, 0.14), rgba(0, 69, 112, 0.18));
    color: var(--primary-gold-soft);
    font-size: 1.05rem;
}

.editorial-card h3 {
    margin-bottom: 10px;
}

.editorial-card p {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.press-section {
    position: relative;
}

.press-header-side {
    display: grid;
    gap: 22px;
    align-content: start;
    justify-items: start;
}

.press-grid {
    display: grid;
    gap: 22px;
}

.press-grid-home {
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.press-grid-archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.press-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        rgba(8, 17, 29, 0.84);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.press-card-featured {
    background:
        radial-gradient(circle at top left, rgba(127, 209, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        rgba(8, 17, 29, 0.92);
}

.press-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
}

.press-card-logo {
    width: auto;
    max-width: 150px;
    max-height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.press-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(127, 209, 255, 0.08);
    border: 1px solid rgba(127, 209, 255, 0.18);
    color: var(--primary-gold-soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.press-card h3 {
    margin-bottom: 0;
    font-size: 1.28rem;
    line-height: 1.22;
}

.press-card p {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.press-card-actions {
    margin-top: auto;
    padding-top: 6px;
}

.editorial-index {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--primary-gold);
}

.editorial-media-panel {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255,255,255,0.03);
}

.editorial-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.integrated-layout,
.network-layout,
.form-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.integrated-points {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.integrated-point {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.integrated-point i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0, 128, 186, 0.14);
    color: var(--primary-gold);
}

.integrated-point h3 {
    margin-bottom: 6px;
}

.integrated-panel {
    padding: 30px;
}

.route-list {
    margin: 24px 0;
    padding-left: 22px;
    color: rgba(255,255,255,0.78);
}

.route-list li + li {
    margin-top: 10px;
}

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

.feature-card {
    padding: 0;
    overflow: hidden;
    background: rgba(12, 23, 39, 0.82);
}

.feature-card-media {
    height: 210px;
    background-position: center;
    background-size: cover;
}

.feature-card-body {
    padding: 22px;
}

.feature-card-index {
    color: var(--primary-gold-soft);
    font-size: 0.88rem;
    letter-spacing: 0.16em;
}

.feature-card p {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255, 255, 255, 0.68);
}

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

.transplant-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.transplant-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.transplant-card-body {
    padding: 20px;
}

.transplant-card-body p {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255, 255, 255, 0.7);
    min-height: 72px;
}

.network-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.network-summary {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.region-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.region-name {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
}

.region-card p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.ambassador-v2 {
    background: linear-gradient(135deg, rgba(19,39,66,0.55), rgba(8,17,31,0.9));
}

.portrait-card {
    padding: 16px;
}

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

.faq-item {
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    font-weight: 700;
    font-size: 1rem;
}

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

.faq-item p {
    padding: 16px 0 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
}

.form-benefits h3 {
    margin-bottom: 18px;
}

.benefits-list {
    list-style: disc;
    padding-left: 18px;
    color: rgba(255,255,255,0.78);
}

.benefits-list li + li {
    margin-top: 12px;
}

.footer-v2 {
    padding: 60px 0 24px;
    background: #050913;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 24px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 16px;
}

.footer-copy {
    color: rgba(255,255,255,0.6);
    max-width: 360px;
}

.footer-grid h3 {
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.footer-grid a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

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

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.reveal-text {
    animation: fadeUp 0.8s ease both;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    :root {
        --hero-controls-height: 94px;
        --hero-nav-size: 48px;
        --hero-nav-offset: 18px;
    }

    .integrated-layout,
    .network-layout,
    .form-shell,
    .split-header,
    .editorial-feature,
    .footer-grid,
    .pioneer-grid,
    .brand-lead-shell {
        grid-template-columns: 1fr;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding-inline: var(--hero-safe-inline);
    }

    .editorial-fullbleed {
        padding-inline: 20px;
    }

    .editorial-feature {
        min-height: auto;
    }

    .hero-slide-image-wrap {
        min-height: clamp(260px, 34vh, 360px);
        order: -1;
    }
}

@media (max-width: 992px) {
    :root {
        --hero-nav-size: 56px;
        --hero-nav-offset: 16px;
        --topbar-height: 0px;
        --header-height: 82px;
        --hero-controls-height: 88px;
        --hero-viewport-offset: calc(var(--topbar-height) + var(--header-height));
    }

    .home-v2 .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
        border-radius: 20px;
        background: rgba(7, 16, 28, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .home-v2 .main-nav.active {
        display: flex;
    }

    .home-v2 .nav-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .home-v2 .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-top: 0;
        box-shadow: none;
        background: transparent;
        transition: max-height 0.25s ease;
    }

    .home-v2 .nav-item > a {
        justify-content: flex-start;
    }

    .home-v2 .nav-link-caret {
        display: none;
    }

    .home-v2 .nav-item-row {
        justify-content: space-between;
        width: 100%;
    }

    .home-v2 .submenu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .home-v2 .nav-item.has-dropdown:hover .dropdown {
        transform: none;
    }

    .home-v2 .nav-item.is-open .dropdown {
        max-height: 520px;
        padding: 8px 0 0;
    }

    .home-v2 .dropdown li a {
        padding: 10px 0 10px 18px;
        border-bottom: 0;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.76);
    }

    .proof-strip {
        margin-top: 0;
        padding-top: 20px;
    }

    .proof-strip-grid,
    .testimonials-grid,
    .brand-lead-highlights,
    .editorial-grid,
    .press-grid-home,
    .press-grid-archive,
    .services-grid-featured,
    .region-grid,
    .transplant-grid {
        grid-template-columns: 1fr;
    }

    .proof-item p {
        max-width: none;
    }

    .brand-lead-shell {
        padding: 24px 20px;
    }

    .brand-lead-copy {
        max-width: none;
    }

    .brand-lead-title {
        font-size: 2.15rem;
    }

    .editorial-media-panel {
        min-height: 520px;
    }

    .press-card-featured {
        min-height: auto;
    }

    .hero-slide-content {
        width: 100%;
        margin-left: 18px;
        padding: 36px 2px 26px 0;
        justify-content: flex-start;
    }

    .hero-slide-title {
        max-width: none;
        font-size: 2.35rem;
    }

    .hero-slide-description {
        max-width: none;
    }

    .hero-slider-controls {
        padding: 14px 18px 18px;
    }

    .hero-slider-counter {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --hero-nav-size: 42px;
        --hero-nav-offset: 10px;
        --header-height: 78px;
        --hero-controls-height: 96px;
        --hero-viewport-offset: calc(var(--topbar-height) + var(--header-height));
    }

    .container {
        padding: 0 16px;
    }

    .editorial-fullbleed {
        padding-inline: 16px;
    }

    .press-card {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .press-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .press-card-logo {
        max-width: 136px;
    }

    .hero-slide-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 24px;
    }

    .hero-slide-content {
        width: 100%;
        margin-left: 12px;
        padding: 30px 0 22px 0;
    }

    .brand-lead-item {
        grid-template-columns: 52px 1fr;
        padding: 16px 14px;
    }

    .brand-lead-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .testimonial-meta {
        grid-template-columns: 74px 1fr;
    }

    .testimonial-media {
        width: 74px;
        height: 74px;
        border-radius: 18px;
    }

    .hero-slide-title {
        font-size: clamp(1.9rem, 6.2vw, 2.3rem);
        margin-bottom: 14px;
    }

    .hero-slide-description {
        font-size: 1rem;
        line-height: 1.58;
    }

    .hero-slide-image-wrap {
        min-height: 250px;
    }

    .btn,
    .btn-large {
        width: 100%;
    }

    .hero-slider-controls {
        gap: 12px;
        padding-bottom: 16px;
    }

    .hero-slider-meta {
        width: auto;
    }

    .hero-slide {
        padding-inline: calc(var(--hero-nav-size) + 18px);
    }
}

/* =========================================
   SHARED SITE PAGES
   ========================================= */
body.site-page {
    background:
        radial-gradient(circle at top left, rgba(0, 128, 186, 0.12), transparent 28%),
        linear-gradient(180deg, #01060a 0%, #04111c 50%, #000000 100%);
}

.nav-item > a.is-current,
.nav-item > a[aria-current="page"] {
    color: var(--primary-gold);
}

.nav-item > a.is-current:after,
.nav-item > a[aria-current="page"]:after {
    width: 100%;
}

.nav-item > a[aria-current="page"] .nav-link-caret {
    color: var(--primary-gold);
}

.page-hero {
    position: relative;
    padding: 148px 0 88px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.84), rgba(0, 69, 112, 0.78)),
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
}

.page-hero.page-hero-image {
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.page-hero .container {
    width: 100%;
    position: relative;
    z-index: 1;
    padding-inline: clamp(18px, 3vw, 48px);
}

.page-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--primary-gold-soft);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.page-title {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.page-lead {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    line-height: 1.8;
}

.page-main {
    padding: 44px 0 110px;
}

.section-band {
    position: relative;
    padding: 44px 0;
}

.section-band + .section-band::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127, 209, 255, 0.16), transparent);
}

.content-grid-2,
.content-grid-3,
.content-grid-4,
.info-split {
    display: grid;
    gap: 22px;
}

.content-grid-2,
.info-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.content-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card,
.metric-card,
.accent-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px;
}

.page-card h3,
.metric-card h3,
.accent-panel h3 {
    margin-bottom: 10px;
}

.page-card p,
.metric-card p,
.accent-panel p,
.page-card li,
.accent-panel li {
    color: rgba(255, 255, 255, 0.74);
}

.page-card h3 + p,
.metric-card strong + p,
.accent-panel h3 + p {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.metric-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-gold-soft);
    font-size: 2rem;
    font-family: var(--font-heading);
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-clean li + li {
    margin-top: 12px;
}

.list-check li {
    position: relative;
    padding-left: 24px;
}

.list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(0, 128, 186, 0.14);
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(127, 209, 255, 0.12);
}

.section-heading p {
    max-width: 760px;
    color: rgba(255,255,255,0.7);
}

.eyebrow-label {
    color: var(--primary-gold-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.inline-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.content-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.region-block {
    margin-bottom: 28px;
}

.region-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-gold-soft);
}

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

.unit-card,
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.unit-card i,
.blog-card .eyebrow-label {
    color: var(--primary-gold);
}

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

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.faq-stack {
    display: grid;
    gap: 14px;
}

.faq-stack details {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    padding: 0 20px;
}

.faq-stack summary {
    padding: 20px 0;
    list-style: none;
    cursor: pointer;
    font-weight: 700;
}

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

.faq-stack p {
    padding: 16px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.74);
}

.footer-v2 h3 {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .site-page .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
        border-radius: 20px;
        background: rgba(0, 8, 14, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .site-page .main-nav.active {
        display: flex;
    }

    .site-page .nav-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .site-page .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-top: 0;
        box-shadow: none;
        background: transparent;
        transition: max-height 0.25s ease;
    }

    .site-page .nav-item > a {
        justify-content: flex-start;
    }

    .site-page .nav-link-caret {
        display: none;
    }

    .site-page .nav-item-row {
        justify-content: space-between;
        width: 100%;
    }

    .site-page .submenu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .site-page .nav-item.has-dropdown:hover .dropdown {
        transform: none;
    }

    .site-page .nav-item.is-open .dropdown {
        max-height: 520px;
        padding: 8px 0 0;
    }

    .site-page .dropdown li a {
        padding: 10px 0 10px 18px;
        border-bottom: 0;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.76);
    }

    .content-grid-2,
    .content-grid-3,
    .content-grid-4,
    .info-split,
    .units-grid,
    .blog-grid,
    .metric-strip {
        grid-template-columns: 1fr;
    }
}
