/* ============================================
   INFINITI GROUP — Premium Dark Aesthetic
   Inspired by Aman / Four Seasons / Zaha Hadid
   ============================================ */

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

:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-bg-card: #161616;
    --color-bg-elevated: #1a1a1a;
    --color-gold: #C7A76C;
    --color-gold-light: #D4B87A;
    --color-gold-dark: #A68B55;
    --color-text: #E8E4DD;
    --color-text-muted: #8A8680;
    --color-text-dim: #5A5854;
    --color-border: rgba(199, 167, 108, 0.12);
    --color-border-light: rgba(255, 255, 255, 0.06);
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1280px;
    --section-padding: clamp(80px, 12vw, 160px);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body.loading {
    overflow: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold-light);
}

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

/* --- CUSTOM CURSOR --- */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: opacity 0.3s;
}

.cursor {
    width: 8px;
    height: 8px;
    background: #fff;
    top: -4px;
    left: -4px;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    top: -18px;
    left: -18px;
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), top 0.15s var(--ease-out-expo), left 0.15s var(--ease-out-expo), border-color 0.3s;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    border-color: var(--color-gold);
}

@media (pointer: coarse) {
    .cursor, .cursor-follower { display: none; }
}

/* --- LOADING SCREEN --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    margin-bottom: 32px;
    animation: loaderPulse 1.5s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.loader-logo-img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: var(--color-border);
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--color-gold);
    animation: loaderFill 0.7s var(--ease-out-expo) forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s var(--ease-out-expo);
}

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

.nav-menu a:hover {
    color: var(--color-text);
}

/* --- LANGUAGE TOGGLE --- */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    overflow: hidden;
    margin-left: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lang-btn.active {
    background: var(--color-gold);
    color: var(--color-bg);
}

.lang-btn:not(.active):hover {
    color: var(--color-gold);
}

.nav-cta {
    padding: 8px 20px !important;
    border: 1px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s ease !important;
}

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

.nav-cta:hover {
    background: var(--color-gold) !important;
    color: var(--color-bg) !important;
}

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

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

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

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

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

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
    filter: brightness(0.4) saturate(0.8);
}

.hero.visible .hero-bg-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.5) 70%, var(--color-bg) 100%),
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10,10,10,0.4) 70%);
}

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

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-logo {
    width: clamp(320px, 50vw, 600px);
    height: auto;
    margin: 0 auto 32px;
    opacity: 0;
    transform: translateY(20px);
    filter: drop-shadow(0 4px 30px rgba(199, 167, 108, 0.15));
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--color-text);
    margin-bottom: 32px;
    overflow: hidden;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

/* Screen reader only - for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--color-bg);
    border-color: var(--color-text);
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 20px 56px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-border);
    padding: 12px 32px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 0;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-bg);
    position: relative;
    z-index: 1;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- SECTIONS COMMON --- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-label {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 120px;
}

.label-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
}

.label-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 32px;
}

/* Reveal text animation */
.section-title[data-animate="reveal-text"] {
    overflow: hidden;
}

.section-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.3em;
}

.section-title .word-inner {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.8s var(--ease-out-expo);
}

.section-title.animated .word-inner {
    transform: translateY(0);
}

.section-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 640px;
}

.section-text-muted {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 40px;
}

/* --- SCROLL ANIMATIONS --- */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

/* --- ABOUT PILLARS --- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
}

.pillar {
    padding-top: 24px;
}

.pillar-line {
    width: 0;
    height: 1px;
    background: var(--color-gold);
    margin-bottom: 20px;
    transition: width 0.8s var(--ease-out-expo) 0.3s;
}

.pillar.animated .pillar-line {
    width: 40px;
}

.pillar h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pillar p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- ECOSYSTEM --- */
.section-ecosystem {
    background: var(--color-bg-alt);
}

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

.eco-card {
    background: var(--color-bg-alt);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.eco-card:hover {
    background: var(--color-bg-elevated);
    transform: translateY(-2px);
}

.eco-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    transition: transform 0.4s var(--ease-out-expo);
}

.eco-card:hover .eco-icon {
    transform: scale(1.15);
}

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

.eco-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text);
}

/* --- DEVELOPMENTS --- */
.section-developments {
    background: var(--color-bg);
}

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

.section-header-centered .label-number {
    display: block;
    margin-bottom: 16px;
}

.section-title-large {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 16px;
}

/* Reveal text for large title */
.section-title-large[data-animate="reveal-text"] {
    overflow: hidden;
}

.section-title-large .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.3em;
}

.section-title-large .word-inner {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.8s var(--ease-out-expo);
}

.section-title-large.animated .word-inner {
    transform: translateY(0);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.dev-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.dev-card:hover {
    border-color: var(--color-border);
}

.dev-card-reverse {
    direction: rtl;
}

.dev-card-reverse > * {
    direction: ltr;
}

.dev-card-image {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

/* --- GALLERY / SLIDER --- */
.gallery {
    position: absolute;
    inset: 0;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transform: scale(1.05);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s var(--ease-out-expo);
    opacity: 0;
}

.gallery:hover .gallery-btn {
    opacity: 1;
}

.gallery-btn:hover {
    background: rgba(199, 167, 108, 0.3);
    border-color: var(--color-gold);
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

.gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    z-index: 3;
}

.dev-card-content {
    padding: clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dev-card-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.dev-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 20px;
}

.dev-card-content p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.dev-locations,
.dev-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 28px;
}

.dev-locations span,
.dev-features span {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.dev-locations span:hover,
.dev-features span:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.dev-stats {
    display: flex;
    gap: 40px;
    margin: 24px 0 28px;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-top: 8px;
}

/* --- BLOCKCHAIN --- */
.section-blockchain {
    background: var(--color-bg-alt);
}

.blockchain-visual {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 48px 0;
    padding: 40px 0;
}

.chain-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: var(--color-bg-alt);
    position: relative;
    transition: transform 0.4s var(--ease-out-expo);
}

.node-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--color-gold);
}

.chain-node:hover .node-dot {
    transform: scale(1.5);
}

.chain-node span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    white-space: nowrap;
}

.chain-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), var(--color-border));
    min-width: 40px;
    transform: scaleX(0);
    transition: transform 1s var(--ease-out-expo);
}

.blockchain-visual.animated .chain-line {
    transform: scaleX(1);
}

/* --- TOKEN --- */
.section-token {
    background: var(--color-bg);
}

.token-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.token-feature {
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    transition: border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.token-feature:hover {
    border-color: var(--color-border);
    transform: translateY(-4px);
}

.token-feature-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-out-expo);
}

.token-feature:hover .token-feature-icon {
    transform: scale(1.2);
}

.token-feature-icon svg {
    width: 100%;
    height: 100%;
}

.token-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.token-feature p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- PLATFORM --- */
.section-platform {
    position: relative;
    padding: var(--section-padding) 0;
    text-align: center;
    overflow: hidden;
}

.platform-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(199, 167, 108, 0.06) 0%, transparent 60%),
        var(--color-bg-alt);
}

.platform-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.platform-content .label-number {
    display: block;
    margin-bottom: 16px;
}

.platform-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 24px;
}

.platform-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.platform-feature-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* --- FAQ --- */
.section-faq {
    background: var(--color-bg);
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-out-expo), padding 0.6s var(--ease-out-expo);
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.token-classification {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.token-classification span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 6px 14px;
    border: 1px solid var(--color-border);
}

.faq-cta {
    margin-top: 48px;
    text-align: center;
}

/* --- EDUCATION --- */
.section-education {
    background: var(--color-bg-alt);
}

.education-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
}

.edu-topic {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 10px 24px;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out-expo);
    cursor: default;
}

.edu-topic:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(199, 167, 108, 0.05);
    transform: translateY(-2px);
}

/* --- GLOBAL / MAP --- */
.section-global {
    background: var(--color-bg);
}

.global-map {
    margin: 48px 0;
    padding: 32px 24px;
    background: linear-gradient(145deg, #05080c 0%, #0a0e14 50%, #05080c 100%);
    border: 1px solid rgba(199, 167, 108, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.global-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 22% 48%, rgba(199, 167, 108, 0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 45%, rgba(199, 167, 108, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(199, 167, 108, 0.02) 0%, transparent 70%);
    pointer-events: none;
    animation: mapAmbient 8s ease-in-out infinite alternate;
}

@keyframes mapAmbient {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.global-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.world-map {
    width: 100%;
    max-height: 520px;
    position: relative;
    z-index: 1;
}

/* Grid lines (latitude/longitude) */
.map-grid {
    stroke: rgba(199, 167, 108, 0.04);
    stroke-width: 0.3;
}

/* Background countries */
.map-country {
    fill: rgba(199, 167, 108, 0.06);
    stroke: rgba(199, 167, 108, 0.12);
    stroke-width: 0.4;
    transition: fill 0.5s ease, stroke 0.5s ease;
}

.map-country:hover {
    fill: rgba(199, 167, 108, 0.1);
}

/* Highlighted countries (Mexico, USA, UAE) */
.map-country-highlight {
    fill: rgba(199, 167, 108, 0.15);
    stroke: rgba(199, 167, 108, 0.5);
    stroke-width: 1;
    transition: fill 0.5s ease, stroke 0.5s ease;
    filter: drop-shadow(0 0 8px rgba(199, 167, 108, 0.15));
}

.map-country-highlight:hover {
    fill: rgba(199, 167, 108, 0.25);
    stroke: rgba(199, 167, 108, 0.7);
    filter: drop-shadow(0 0 15px rgba(199, 167, 108, 0.3));
}

.map-mex {
    fill: rgba(199, 167, 108, 0.2);
    stroke: rgba(199, 167, 108, 0.6);
    stroke-width: 1.2;
    filter: drop-shadow(0 0 12px rgba(199, 167, 108, 0.2));
}

.map-mex:hover {
    fill: rgba(199, 167, 108, 0.3);
    filter: drop-shadow(0 0 20px rgba(199, 167, 108, 0.35));
}

.map-dot {
    filter: drop-shadow(0 0 8px rgba(199, 167, 108, 1)) drop-shadow(0 0 20px rgba(199, 167, 108, 0.6));
    transition: r 0.3s ease;
}

.map-dot-pulse {
    animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { r: 4; opacity: 0.6; }
    50% { r: 18; opacity: 0; }
}

.map-dot-ring {
    fill: none;
    stroke: rgba(199, 167, 108, 0.3);
    stroke-width: 0.8;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { r: 8; opacity: 0.4; stroke-width: 0.8; }
    50% { r: 22; opacity: 0; stroke-width: 0.2; }
}

.map-label {
    font-size: 8.5px;
    fill: rgba(232, 228, 221, 0.95);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
}

.map-connection {
    stroke: rgba(199, 167, 108, 0.3);
    stroke-width: 1.2;
    fill: none;
}

.map-connection-animated {
    stroke-dasharray: 8 4;
    animation: dashFlow 15s linear infinite;
}

@keyframes dashFlow {
    to { stroke-dashoffset: -240; }
}

/* Traveling dot along connection path */
.map-travel-dot {
    fill: #C7A76C;
    filter: drop-shadow(0 0 6px rgba(199, 167, 108, 0.9)) drop-shadow(0 0 12px rgba(199, 167, 108, 0.5));
}

.map-travel-dot-glow {
    fill: rgba(199, 167, 108, 0.3);
}

/* Countries fade-in on scroll */
.global-map .map-grid,
.global-map .map-countries-bg,
.global-map .map-countries-highlight {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.global-map.animated .map-grid {
    opacity: 1;
    transition-delay: 0s;
}

.global-map.animated .map-countries-bg {
    opacity: 1;
    transition-delay: 0.3s;
}

.global-map.animated .map-countries-highlight {
    opacity: 1;
    transition-delay: 0.7s;
}

.global-map .map-connection-animated {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.global-map.animated .map-connection-animated {
    opacity: 1;
    transition-delay: 1.2s;
}

.global-map .map-markers {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.global-map.animated .map-markers {
    opacity: 1;
    transition-delay: 0.9s;
}

.global-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.city {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    transition: transform 0.3s var(--ease-out-expo);
}

.city:hover {
    transform: translateX(8px);
}

.city-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out-expo);
}

.city:hover .city-dot {
    transform: scale(1.5);
}

.city span:nth-child(2) {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.city-project {
    font-size: 0.72rem;
    color: var(--color-gold);
    opacity: 0;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
    margin-left: auto;
}

.city:hover .city-project {
    opacity: 0.7;
}

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

/* --- CONTACT --- */
.section-contact {
    background: var(--color-bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .label-number {
    display: block;
    margin-bottom: 16px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-text);
}

.contact-link {
    color: var(--color-gold) !important;
    font-family: var(--font-sans) !important;
    font-size: 0.95rem !important;
}

.contact-cta {
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
    overflow: hidden;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.form-group:focus-within::after {
    transform: scaleX(1);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
    transition: color 0.3s;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: transparent;
}

.contact-form .btn-primary {
    margin-top: 16px;
    border: 1px solid var(--color-gold);
}

/* --- FOOTER --- */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--color-border-light);
    background: var(--color-bg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-top: 8px;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    transition: color 0.3s;
}

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

.footer-legal p {
    font-size: 0.72rem;
    color: var(--color-text-dim);
    letter-spacing: 0.05em;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-label {
        position: static;
        flex-direction: row;
        align-items: baseline;
        gap: 16px;
    }

    .label-number {
        font-size: 2rem;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .dev-card-reverse {
        direction: ltr;
    }

    .dev-card-image {
        min-height: 300px;
    }

    .token-features {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        border-left: 1px solid var(--color-border);
        transition: right 0.4s var(--ease-out-expo);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .blockchain-visual {
        flex-direction: column;
        gap: 0;
    }

    .chain-line {
        width: 1px;
        min-height: 24px;
        min-width: unset;
        background: linear-gradient(to bottom, var(--color-gold), var(--color-border));
    }

    .dev-stats {
        gap: 24px;
    }

    .global-cities {
        grid-template-columns: 1fr;
    }

    .platform-features {
        margin-left: 0;
    }

    .cursor, .cursor-follower {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 260px;
    }

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

    .section-title-large {
        font-size: 2rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 0.75rem;
    }

    .btn-outline {
        font-size: 0.65rem;
        padding: 10px 20px;
    }

    .dev-locations span,
    .dev-features span {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .dev-card-image {
        min-height: 240px;
    }

    .nav-logo-img {
        height: 40px;
    }

    .loader-logo-img {
        height: 70px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
}

/* --- HERO CTAS --- */
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

/* --- LEGAL DISCLAIMER --- */
.section-legal {
    background: var(--color-bg-alt);
    border-top: 1px solid rgba(199, 167, 108, 0.15);
    border-bottom: 1px solid rgba(199, 167, 108, 0.15);
    padding: 4rem 0;
}

.section-legal .section-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* --- INFINITI LEGACY SECTION --- */
.section-legacy {
    background: linear-gradient(180deg, var(--color-bg) 0%, #080808 30%, #080808 70%, var(--color-bg) 100%);
    padding: clamp(100px, 14vw, 180px) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.legacy-banner {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.legacy-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 40px;
}

.legacy-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.35;
    color: var(--color-text);
    margin-bottom: 0;
}

.legacy-highlight {
    color: var(--color-gold);
    font-weight: 500;
    font-style: italic;
}

.legacy-separator {
    display: flex;
    justify-content: center;
    margin: 36px 0 40px;
}

.legacy-separator span {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.legacy-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: 64px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.legacy-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
}

.legacy-card {
    flex: 1;
    max-width: 380px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 32px 36px;
    text-align: center;
    transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
    position: relative;
}

.legacy-card:hover {
    border-color: rgba(199, 167, 108, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(199, 167, 108, 0.05);
}

.legacy-card-number {
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-gold);
    opacity: 0.5;
    letter-spacing: 0.1em;
}

.legacy-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 20px;
    color: var(--color-gold);
}

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

.legacy-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--color-text);
}

.legacy-card-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 18px;
    opacity: 0.7;
}

.legacy-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.legacy-card-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-gold);
    opacity: 0.4;
    flex-shrink: 0;
    padding: 0 20px;
}

.legacy-divider-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
}

.legacy-disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 24px 28px;
    border: 1px solid rgba(199, 167, 108, 0.2);
    border-radius: 12px;
    background: rgba(199, 167, 108, 0.03);
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.legacy-disclaimer-box svg {
    flex-shrink: 0;
    color: var(--color-gold);
    opacity: 0.7;
    margin-top: 2px;
}

.legacy-disclaimer-box p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--color-gold);
    opacity: 0.85;
    margin: 0;
}

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

/* --- WHATSAPP BUTTON --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* --- WHATSAPP FLOATING --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15);
    text-decoration: none;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, background 0.3s;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    flex-shrink: 0;
}

.whatsapp-float-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.25); }
}

/* --- TESTIMONIALS SECTION --- */
.section-testimonials {
    background: var(--color-bg);
    padding: var(--section-padding) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
}

.testimonial-card:hover {
    border-color: rgba(199, 167, 108, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-bg);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text);
}

.testimonial-role {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

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

.testimonials-cta p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

/* --- CONTACT CTA UPDATE --- */
.contact-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* --- RESPONSIVE UPDATES --- */
@media (max-width: 768px) {
    .legacy-cards {
        flex-direction: column;
        gap: 0;
    }

    .legacy-card {
        max-width: 100%;
    }

    .legacy-card-divider {
        flex-direction: row;
        padding: 16px 0;
    }

    .legacy-divider-line {
        width: 32px;
        height: 1px;
    }

    .legacy-cta {
        flex-direction: column;
        align-items: center;
    }

    .legacy-disclaimer-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
    }

    .whatsapp-float-label {
        font-size: 0.8rem;
    }

    .contact-cta {
        flex-direction: column;
    }

    .btn-whatsapp {
        justify-content: center;
    }
}
