/* ============================================================
   DOMINIK ROHÉ — CORPORATE WEBSITE
   Design System: Deep Navy / Blue-Teal / Silver
   ============================================================ */

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

:root {
    --navy: #0a0e1a;
    --navy-light: #111827;
    --navy-mid: #1a2332;
    --blue: #1e3a5f;
    --blue-accent: #2563eb;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --silver: #94a3b8;
    --silver-light: #cbd5e1;
    --white: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg-strong: rgba(255, 255, 255, 0.07);
    --gradient-primary: linear-gradient(135deg, #2563eb, #0d9488);
    --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #0f172a 50%, #0a1628 100%);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--navy);
    color: var(--silver-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === SECTION LABELS === */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-title-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--silver);
    max-width: 600px;
    line-height: 1.8;
}

.section-desc-lg {
    font-size: 1.2rem;
    color: var(--silver);
    max-width: 800px;
    line-height: 1.8;
}

/* === GLASS CARD === */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--glass-bg-strong);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--silver-light);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   ACCESS GATE
   ============================================================ */
.access-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.access-gate.gate-exit {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

#worldCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gate-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 26, 0.7) 70%);
}

.gate-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px;
}

.gate-logo {
    margin-bottom: 32px;
}

.gate-icon {
    width: 80px;
    height: 80px;
    animation: gateSpin 20s linear infinite;
}

@keyframes gateSpin {
    to { transform: rotate(360deg); }
}

.gate-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.gate-subtitle {
    font-size: 0.85rem;
    color: var(--silver);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.gate-input-wrap {
    position: relative;
    max-width: 380px;
    margin: 0 auto 20px;
}

.gate-input {
    width: 100%;
    padding: 16px 60px 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.gate-input:focus {
    border-color: var(--blue-accent);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.15), 0 0 60px rgba(13, 148, 136, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.gate-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.gate-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gate-submit:hover {
    transform: translateY(-50%) scale(1.05);
}

.gate-submit svg {
    width: 18px;
    height: 18px;
}

.gate-error {
    color: #ef4444;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gate-error.show {
    opacity: 1;
}

.gate-input-wrap.shake {
    animation: shakeInput 0.5s ease;
}

@keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-12px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-8px); }
    80% { transform: translateX(6px); }
}

.gate-input-wrap.shake .gate-input {
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.gate-nodes {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.gate-nodes span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: nodePulse 2s ease infinite;
}

.gate-nodes span:nth-child(2) { animation-delay: 0.4s; }
.gate-nodes span:nth-child(3) { animation-delay: 0.8s; }
.gate-nodes span:nth-child(4) { animation-delay: 1.2s; }
.gate-nodes span:nth-child(5) { animation-delay: 1.6s; }

@keyframes nodePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); background: var(--teal-light); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.main-nav.scrolled {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--silver);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--silver);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--white);
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ============================================================
   PAGE 1: HOMEPAGE
   ============================================================ */
.section-home {
    background: var(--gradient-hero);
}

.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 26, 0.5) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 32px;
}

.hero-headline {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--silver);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--silver);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--silver), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.4; height: 24px; }
}

/* Animate In */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-in:nth-child(2) { animation-delay: 0.15s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.45s; }

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

/* Animate on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Snapshot Section */
.home-snapshot {
    padding: 120px 0 80px;
}

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

.snapshot-card {
    padding: 36px 28px;
    text-align: center;
}

.snapshot-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--teal-light);
}

.snapshot-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.snapshot-card p {
    font-size: 0.9rem;
    color: var(--silver);
}

/* Overview Section */
.home-overview {
    padding: 80px 0 120px;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

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

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--silver);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.overview-image-wrap {
    position: relative;
}

.overview-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* Insights Section */
.home-insights {
    padding: 80px 0 100px;
}

.insights-header {
    text-align: center;
    margin-bottom: 60px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.insight-card {
    padding: 36px;
}

.insight-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(13, 148, 136, 0.12);
    color: var(--teal-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--silver);
    margin-bottom: 20px;
}

.insight-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-light);
    transition: var(--transition);
}

.insight-card:hover .insight-link {
    color: var(--white);
}

/* CTA Section */
.home-cta {
    padding: 0 0 120px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(13, 148, 136, 0.08)) !important;
    border: 1px solid rgba(37, 99, 235, 0.15) !important;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--silver);
}

/* ============================================================
   PAGE 2: ABOUT
   ============================================================ */
.section-about {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
    padding-top: 120px;
}

.about-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.about-portrait-wrap {
    position: relative;
}

.about-portrait {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.portrait-frame {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: calc(var(--radius-lg) + 4px);
}

.about-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.about-role {
    font-size: 1rem;
    color: var(--teal-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-intro {
    font-size: 1.05rem;
    color: var(--silver);
    line-height: 1.8;
}

/* Timeline */
.about-timeline-section {
    padding: 100px 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--blue-accent), var(--teal), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 0 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.timeline-content {
    padding: 28px;
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--silver);
}

/* Education */
.about-education {
    padding: 0 0 120px;
}

.education-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.education-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    color: var(--teal-light);
}

.education-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.edu-school {
    font-size: 1rem;
    color: var(--teal-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.edu-detail {
    font-size: 0.9rem;
    color: var(--silver);
}

/* ============================================================
   PAGE 3: PLATFORM
   ============================================================ */
.section-platform {
    background: linear-gradient(180deg, var(--navy) 0%, #0b1121 50%, var(--navy-light) 100%);
    padding-top: 140px;
}

.platform-hero {
    padding-bottom: 80px;
}

.platform-deep-dive {
    padding: 0 0 120px;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.platform-main h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.platform-main p {
    margin-bottom: 16px;
    color: var(--silver);
    line-height: 1.8;
}

.platform-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.pillar {
    padding: 28px;
}

.pillar h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.pillar p {
    font-size: 0.9rem;
    color: var(--silver);
    margin-bottom: 0;
}

.platform-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study {
    padding: 32px;
}

.case-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 12px;
}

.case-study h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.case-study p {
    font-size: 0.88rem;
    color: var(--silver);
}

.case-metric {
    margin-top: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-light);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--silver);
}

/* ============================================================
   PAGE 4: INTERNATIONAL
   ============================================================ */
.section-international {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
    padding-top: 140px;
}

.intl-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

/* Globe Art */
.intl-globe-art {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.15);
    animation: ringRotate 12s linear infinite;
}

.ring-1 {
    inset: 0;
}

.ring-2 {
    inset: 30px;
    border-color: rgba(13, 148, 136, 0.15);
    animation-duration: 18s;
    animation-direction: reverse;
}

.ring-3 {
    inset: 60px;
    border-color: rgba(255, 255, 255, 0.08);
    animation-duration: 24s;
}

.globe-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
}

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.intl-content {
    padding: 0 0 120px;
}

.intl-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.intl-framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.intl-framework {
    padding: 40px;
}

.framework-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.intl-framework h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.intl-framework p {
    font-size: 0.92rem;
    color: var(--silver);
}

/* ============================================================
   PAGE 5: ETF
   ============================================================ */
.section-etf {
    background: linear-gradient(180deg, var(--navy) 0%, #0c1524 50%, var(--navy-light) 100%);
    padding-top: 140px;
}

.etf-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 100px;
}

.etf-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.etf-hero-img {
    width: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.etf-content {
    padding: 0 0 120px;
}

.etf-topics {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
}

.etf-topic {
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.topic-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.topic-icon {
    width: 40px;
    height: 40px;
    color: var(--teal-light);
    flex-shrink: 0;
}

.topic-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.etf-topic p {
    color: var(--silver);
    line-height: 1.8;
}

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

.insight-block {
    padding: 32px;
}

.insight-block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.insight-block p {
    font-size: 0.9rem;
    color: var(--silver);
}

/* ============================================================
   PAGE 6: REGIONAL
   ============================================================ */
.section-regional {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 50%, #0b1121 100%);
    padding-top: 140px;
}

.regional-hero {
    padding-bottom: 80px;
    text-align: center;
}

.regional-content {
    padding: 0 0 120px;
}

.regional-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.regional-card-inner {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.regional-card-inner:hover {
    background: var(--glass-bg-strong);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.regional-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 36px;
    border-bottom: 1px solid var(--glass-border);
}

.region-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.latam-flag {
    background: linear-gradient(135deg, #16a34a, #eab308);
}

.aus-flag {
    background: linear-gradient(135deg, #1e40af, #ef4444);
}

.iberia-flag {
    background: linear-gradient(135deg, #dc2626, #eab308);
}

.regional-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.region-role {
    font-size: 0.85rem;
    color: var(--teal-light);
}

.regional-card-body {
    padding: 32px 36px;
}

.regional-card-body p {
    color: var(--silver);
    margin-bottom: 24px;
    line-height: 1.8;
}

.region-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
}

.highlight-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* ============================================================
   PAGE 7: INTEGRATIONS
   ============================================================ */
.section-integrations {
    background: linear-gradient(180deg, #0b1121 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding-top: 140px;
}

.integrations-hero {
    padding-bottom: 80px;
}

.integrations-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 60px;
}

.integration-card {
    position: relative;
    padding-left: 80px;
}

.integration-year-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
}

.integration-card-content {
    padding: 36px;
}

.integration-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.integration-subtitle {
    font-size: 0.85rem;
    color: var(--teal-light);
    margin-bottom: 16px;
}

.integration-card-content > p {
    color: var(--silver);
    margin-bottom: 16px;
    line-height: 1.8;
}

.integration-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.integration-points li {
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--silver-light);
}

.integration-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-light);
}

.integration-impact {
    padding-bottom: 120px;
}

.impact-card {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(13, 148, 136, 0.04)) !important;
}

.impact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.impact-card p {
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================================
   PAGE 8: EARLY CAREER
   ============================================================ */
.section-career {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
    padding-top: 140px;
}

.career-hero {
    padding-bottom: 80px;
}

.career-content {
    padding: 0 0 120px;
}

.career-dual-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.career-entity {
    padding: 40px;
    height: 100%;
}

.entity-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.entity-icon {
    width: 44px;
    height: 44px;
    color: var(--teal-light);
    flex-shrink: 0;
}

.entity-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.entity-role {
    font-size: 0.8rem;
    color: var(--teal-light);
}

.career-entity p {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 20px;
}

.entity-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.entity-skills span {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--silver-light);
}

.foundation-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
}

.foundation-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.foundation-content p {
    color: var(--silver);
    line-height: 1.8;
}

.foundation-img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: contain;
}

/* ============================================================
   PAGE 9: CONTACT
   ============================================================ */
.section-contact {
    background: linear-gradient(180deg, var(--navy) 0%, #0b1121 100%);
    padding-top: 140px;
}

.contact-hero {
    padding-bottom: 60px;
    text-align: center;
}

.contact-content {
    padding: 0 0 120px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-form-card {
    padding: 48px;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--silver-light);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 36px;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    color: var(--teal-light);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 100%;
    height: 100%;
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    margin-bottom: 2px;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

a.detail-value:hover {
    color: var(--teal-light);
}

.contact-map {
    overflow: hidden;
    padding: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    background: #060a14;
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-bg-animation {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(13, 148, 136, 0.03) 0%, transparent 50%);
}

.footer-mega {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--silver);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--silver);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 6px;
}

.footer-col p a {
    transition: var(--transition);
}

.footer-col p a:hover {
    color: var(--teal-light);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--blue-accent);
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--silver);
}

.footer-credit a {
    color: var(--teal-light);
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

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

@media (max-width: 900px) {
    .snapshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-layout,
    .about-hero-split,
    .platform-grid,
    .intl-hero-grid,
    .etf-hero-layout,
    .career-dual-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .insights-grid,
    .etf-insights-grid,
    .intl-framework-grid {
        grid-template-columns: 1fr;
    }

    .foundation-card {
        grid-template-columns: 1fr;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 40px;
    }

    .timeline-line {
        left: 6px;
    }

    .timeline-dot {
        left: 6px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
        text-align: left;
    }

    .integration-card {
        padding-left: 0;
        padding-top: 40px;
    }

    .integration-year-badge {
        top: -10px;
        left: 20px;
    }
}

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

    .hero-headline {
        font-size: 2rem;
    }

    .section-title-xl {
        font-size: 2.2rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .cta-panel {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .overview-stats {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .contact-form-card {
        padding: 28px;
    }

    .region-highlights {
        grid-template-columns: 1fr;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
    }

    .intl-globe-art {
        width: 200px;
        height: 200px;
    }

    .cursor-glow {
        display: none;
    }
}

/* === Smooth section transitions === */
.section {
    position: relative;
}

/* === Parallax-ready === */
.parallax-layer {
    will-change: transform;
}

/* ============================================================
   NEW SECTIONS — HOMEPAGE ADDITIONS
   ============================================================ */

/* Leadership Philosophy Marquee */
.home-philosophy {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.marquee-track {
    overflow: hidden;
    position: relative;
}

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

.marquee-item {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Global Presence Grid */
.home-presence {
    padding: 100px 0;
}

.presence-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.presence-card {
    padding: 36px;
}

.presence-card.presence-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.presence-region {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    min-width: 120px;
}

.presence-markets {
    font-size: 0.8rem;
    color: var(--teal-light);
    display: block;
    margin-bottom: 6px;
}

.presence-detail p {
    font-size: 0.9rem;
    color: var(--silver);
}

.presence-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.presence-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1.5s ease;
}

/* Client Testimonials */
.home-testimonials {
    padding: 100px 0 80px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 48px;
}

.testimonial-quote {
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--teal-light);
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    color: var(--silver-light);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.author-title {
    font-size: 0.8rem;
    color: var(--silver);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.test-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--silver);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.test-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.test-nav-btn svg {
    width: 18px;
    height: 18px;
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.test-dot.active {
    background: var(--teal-light);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   NEW SECTIONS — ABOUT PAGE ADDITIONS
   ============================================================ */

/* Core Values */
.about-values {
    padding: 100px 0;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-hex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-hex {
    padding: 36px;
    text-align: center;
}

.hex-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--teal-light);
}

.value-hex h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.value-hex p {
    font-size: 0.88rem;
    color: var(--silver);
}

/* Philosophy Quote */
.about-quote {
    padding: 60px 0 100px;
}

.quote-block {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 48px 48px 56px;
}

.quote-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.quote-block blockquote p {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--silver-light);
    line-height: 1.7;
    font-style: italic;
}

.quote-block cite {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-light);
    font-style: normal;
}

/* Awards & Recognition */
.about-recognition {
    padding: 0 0 100px;
}

.recognition-header {
    text-align: center;
    margin-bottom: 60px;
}

.recognition-ribbon {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.recognition-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 32px 24px;
}

.recognition-divider {
    width: 1px;
    background: var(--glass-border);
    align-self: stretch;
}

.recognition-badge {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--teal-light);
}

.recognition-badge svg {
    width: 100%;
    height: 100%;
}

.recognition-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.recognition-item p {
    font-size: 0.82rem;
    color: var(--silver);
}

/* ============================================================
   NEW SECTIONS — PLATFORM PAGE ADDITIONS
   ============================================================ */

/* Platform Architecture */
.platform-architecture {
    padding: 100px 0;
}

.arch-header {
    text-align: center;
    margin-bottom: 60px;
}

.arch-header .section-desc {
    margin: 0 auto;
}

.arch-diagram {
    max-width: 700px;
    margin: 0 auto;
}

.arch-layer {
    padding: 28px 36px;
    text-align: center;
}

.arch-layer-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-light);
    margin-bottom: 16px;
}

.arch-nodes {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.arch-node {
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--silver-light);
}

.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
}

.connector-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.3), rgba(13, 148, 136, 0.3));
}

.connector-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: connectorPulse 2s ease infinite;
}

@keyframes connectorPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Technology Stack */
.platform-tech {
    padding: 0 0 100px;
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.tech-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--teal-light);
}

.tech-item-icon svg {
    width: 100%;
    height: 100%;
}

.tech-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.tech-item p {
    font-size: 0.82rem;
    color: var(--silver);
}

/* Client Journey Flow */
.platform-journey {
    padding: 0 0 120px;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
}

.journey-step {
    flex: 1;
    min-width: 200px;
    padding: 32px 24px;
    text-align: center;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.15);
    margin-bottom: 12px;
}

.journey-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.journey-step p {
    font-size: 0.85rem;
    color: var(--silver);
}

.journey-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.journey-arrow svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   NEW SECTIONS — INTERNATIONAL PAGE ADDITIONS
   ============================================================ */

/* Partnership Network */
.intl-partnerships {
    padding: 100px 0;
}

.partnerships-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.partnership-card {
    padding: 36px 28px;
    text-align: center;
}

.partner-icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--teal-light);
}

.partner-icon-circle svg {
    width: 100%;
    height: 100%;
}

.partnership-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.partnership-card p {
    font-size: 0.85rem;
    color: var(--silver);
}

/* Regulatory Expertise */
.intl-regulatory {
    padding: 0 0 100px;
}

.regulatory-header {
    text-align: center;
    margin-bottom: 60px;
}

.regulatory-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.reg-card {
    display: flex;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--glass-bg);
    transition: var(--transition);
}

.reg-card:hover {
    background: var(--glass-bg-strong);
    border-color: rgba(255, 255, 255, 0.12);
}

.reg-card-left {
    padding: 28px;
    min-width: 240px;
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reg-region-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-accent);
    margin-bottom: 8px;
    width: fit-content;
}

.reg-card-left h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.reg-card-right {
    padding: 28px;
}

.reg-card-right p {
    font-size: 0.9rem;
    color: var(--silver);
}

/* Market Intelligence */
.intl-intelligence {
    padding: 0 0 120px;
}

.intelligence-header {
    text-align: center;
    margin-bottom: 60px;
}

.intelligence-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intel-card-wide {
    padding: 48px;
    text-align: center;
}

.intel-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.intel-card-wide p {
    font-size: 1rem;
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

.intel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.intel-metric {
    padding: 32px;
    text-align: center;
}

.intel-metric-val {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.intel-metric-unit {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-light);
    margin-bottom: 8px;
}

.intel-metric p {
    font-size: 0.82rem;
    color: var(--silver);
}

/* ============================================================
   NEW SECTIONS — ETF PAGE ADDITIONS
   ============================================================ */

/* Performance Dashboard */
.etf-dashboard {
    padding: 100px 0;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.dash-card {
    padding: 28px;
}

.dash-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    margin-bottom: 8px;
}

.dash-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.dash-change {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.dash-change.positive {
    color: #22c55e;
}

.dash-bar-wrap {
    margin-top: auto;
}

.dash-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.dash-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1.5s ease;
}

/* Product Innovation Timeline */
.etf-innovation {
    padding: 0 0 100px;
}

.innovation-header {
    text-align: center;
    margin-bottom: 60px;
}

.innovation-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.era-marker {
    padding: 36px;
    height: 100%;
}

.era-year {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.era-marker h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.era-marker p {
    font-size: 0.88rem;
    color: var(--silver);
    margin-bottom: 16px;
}

.era-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.era-tags span {
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--silver-light);
}

/* Asset Class Breakdown */
.etf-breakdown {
    padding: 0 0 120px;
}

.breakdown-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.breakdown-item {
    padding: 36px;
    text-align: center;
}

.breakdown-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.breakdown-ring svg {
    width: 100%;
    height: 100%;
}

.ring-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
}

.breakdown-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.breakdown-item p {
    font-size: 0.82rem;
    color: var(--silver);
}

/* ============================================================
   NEW SECTIONS — REGIONAL PAGE ADDITIONS
   ============================================================ */

/* Impact Metrics */
.regional-metrics {
    padding: 100px 0;
}

.metrics-header {
    text-align: center;
    margin-bottom: 60px;
}

.metrics-counter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-counter-card {
    padding: 36px;
    text-align: center;
}

.counter-ring {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.counter-ring svg {
    width: 100%;
    height: 100%;
}

.counter-data {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.counter-suffix {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.counter-label {
    font-size: 0.78rem;
    color: var(--silver);
    margin-top: 8px;
}

/* Cultural Intelligence */
.regional-culture {
    padding: 0 0 120px;
}

.culture-header {
    text-align: center;
    margin-bottom: 60px;
}

.culture-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.culture-attributes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.culture-attr {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.attr-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--silver-light);
}

.attr-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.attr-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.culture-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.culture-card {
    padding: 28px;
}

.culture-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.culture-card p {
    font-size: 0.88rem;
    color: var(--silver);
}

/* ============================================================
   NEW SECTIONS — INTEGRATIONS PAGE ADDITIONS
   ============================================================ */

/* Synergy Value Creation */
.intg-synergy {
    padding: 100px 0;
}

.synergy-header {
    text-align: center;
    margin-bottom: 60px;
}

.synergy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.synergy-card {
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.synergy-card:hover {
    background: var(--glass-bg-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.synergy-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--teal-light);
}

.synergy-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.gradient-border-card {
    padding: 12px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.synergy-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.synergy-card p {
    font-size: 0.88rem;
    color: var(--silver);
}

.synergy-stat {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.synergy-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-light);
}

.synergy-desc {
    font-size: 0.75rem;
    color: var(--silver);
}

/* Integration Methodology */
.intg-methodology {
    padding: 0 0 100px;
}

.methodology-header {
    text-align: center;
    margin-bottom: 60px;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.method-step {
    position: relative;
    padding-top: 32px;
}

.method-step-line {
    position: absolute;
    top: 15px;
    left: 20px;
    right: -20px;
    height: 1px;
    background: var(--glass-border);
}

.method-step:last-child .method-step-line {
    display: none;
}

.method-step-dot {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: 2;
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.3);
}

.method-step-content {
    padding: 24px;
}

.method-phase {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-light);
    margin-bottom: 8px;
}

.method-step-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.method-step-content p {
    font-size: 0.82rem;
    color: var(--silver);
}

/* Lessons & Wisdom */
.intg-lessons {
    padding: 0 0 120px;
}

.lessons-header {
    text-align: center;
    margin-bottom: 60px;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lesson-card {
    padding: 36px;
}

.lesson-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.lesson-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.lesson-card p {
    font-size: 0.88rem;
    color: var(--silver);
}

/* ============================================================
   NEW SECTIONS — EARLY CAREER PAGE ADDITIONS
   ============================================================ */

/* Skills Visualization */
.career-skills {
    padding: 100px 0;
}

.skills-header {
    text-align: center;
    margin-bottom: 60px;
}

.skills-radar-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skill-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.skill-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--silver-light);
}

.skill-pct {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal-light);
}

.skill-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1.5s ease;
}

/* Mentorship */
.career-mentorship {
    padding: 0 0 100px;
}

.mentorship-header {
    text-align: center;
    margin-bottom: 60px;
}

.mentorship-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}

.mentorship-quote {
    padding: 40px;
    position: relative;
}

.m-quote-mark {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
}

.mentorship-quote p {
    font-size: 1.05rem;
    color: var(--silver-light);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.mentorship-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--teal-light);
    font-style: normal;
    font-weight: 600;
}

.mentorship-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.m-stat {
    padding: 24px;
    text-align: center;
}

.m-stat-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.m-stat-label {
    font-size: 0.78rem;
    color: var(--silver);
}

/* Professional Network */
.career-network {
    padding: 0 0 120px;
}

.network-header {
    text-align: center;
    margin-bottom: 60px;
}

.network-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.network-card {
    padding: 36px;
    text-align: center;
}

.network-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--teal-light);
}

.network-card-icon svg {
    width: 100%;
    height: 100%;
}

.network-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.network-card p {
    font-size: 0.85rem;
    color: var(--silver);
}

/* ============================================================
   NEW SECTIONS — CONTACT PAGE ADDITIONS
   ============================================================ */

/* FAQ */
.contact-faq {
    padding: 100px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--silver);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.7;
}

/* Availability */
.contact-availability {
    padding: 0 0 80px;
}

.availability-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.availability-info {
    padding: 36px;
}

.availability-info h3,
.availability-cta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.avail-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.avail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avail-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.avail-indicator.online {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.avail-indicator.away {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.avail-day {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

.avail-time {
    font-size: 0.8rem;
    color: var(--silver);
}

.availability-cta {
    padding: 36px;
}

.availability-cta p {
    font-size: 0.9rem;
    color: var(--silver);
    margin-bottom: 20px;
}

.timezone-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tz-badge {
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--silver-light);
}

/* Social Proof Strip */
.contact-social-proof {
    padding: 0 0 120px;
}

.social-proof-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(13, 148, 136, 0.04));
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.proof-item {
    flex: 1;
    text-align: center;
    min-width: 140px;
    padding: 12px 20px;
}

.proof-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1100px) {
    .partnerships-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .dashboard-grid,
    .breakdown-grid,
    .metrics-counter-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .presence-grid,
    .values-hex-grid,
    .synergy-grid,
    .lessons-grid,
    .innovation-flow,
    .network-cards {
        grid-template-columns: 1fr;
    }

    .presence-card.presence-large {
        grid-template-columns: 1fr;
    }

    .tech-layout,
    .culture-layout,
    .mentorship-layout,
    .availability-layout {
        grid-template-columns: 1fr;
    }

    .journey-flow {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .recognition-ribbon {
        flex-direction: column;
    }

    .recognition-divider {
        width: 100%;
        height: 1px;
    }

    .reg-card {
        flex-direction: column;
    }

    .reg-card-left {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        min-width: auto;
    }

    .intel-metrics {
        grid-template-columns: 1fr;
    }

    .method-step-line {
        display: none;
    }
}

@media (max-width: 640px) {
    .partnerships-grid,
    .methodology-steps,
    .dashboard-grid,
    .breakdown-grid,
    .metrics-counter-row {
        grid-template-columns: 1fr;
    }

    .social-proof-strip {
        flex-direction: column;
    }

    .proof-divider {
        width: 40px;
        height: 1px;
    }

    .testimonial-slide {
        padding: 28px;
    }

    .quote-block {
        padding: 32px 24px 32px 36px;
    }
}
