/* ============================================
   UNITY Financial Network — Landing Offshore
   Estética: Premium, Global, Tecnológica
   ============================================ */

:root {
    /* Unity Brand (original) */
    --unity-purple: #512783;
    --unity-purple-light: #7b4fc2;
    --unity-purple-dark: #3d1d62;
    --unity-orange: #f18918;          /* Solo para CTAs / botones */
    --unity-orange-light: #f7ab57;
    --unity-orange-dark: #d97a16;
    --unity-gray-dark: #403c43;

    /* Gold — tono premium para acentos generales */
    --gold: #C8963E;
    --gold-light: #DBAE5E;
    --gold-dark: #A67A2E;

    /* Backgrounds */
    --bg-primary: #0d0a14;
    --bg-secondary: #120e1c;
    --bg-card: #1a1525;
    --bg-card-hover: #231d30;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b8b0c7;
    --text-muted: #8a8594;

    /* Accents — gold por defecto, naranja solo en CTAs */
    --accent: var(--gold);
    --accent-light: var(--gold-light);
    --accent-dark: var(--gold-dark);
    --blue: var(--unity-purple);
    --blue-light: var(--unity-purple-light);
    --blue-dark: var(--unity-purple-dark);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --gradient-blue: linear-gradient(135deg, var(--unity-purple) 0%, var(--unity-purple-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--gold) 0%, var(--unity-purple-light) 50%, var(--unity-purple) 100%);
    /* CTA buttons keep the original orange energy */
    --gradient-cta: linear-gradient(135deg, var(--unity-orange) 0%, var(--unity-orange-light) 50%, var(--unity-orange) 100%);

    /* Borders & Shadows */
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============ Canvas Background ============ */
#globalNetwork {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ============ Header ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

/* Dual Brand Header */
.header-brands {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.header-brand-name {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-brand-name:first-child {
    color: var(--accent-light);
}

.header-brand-name:hover {
    color: var(--accent);
}

.header-brand-sep {
    width: 1px;
    height: 18px;
    background: var(--border-light);
    margin: 0 16px;
    flex-shrink: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--gradient-cta);
    color: var(--bg-primary) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(241, 137, 24, 0.4);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ Hero ============ */
/* Hero pinned — stays fixed, content scrolls over it */
.hero-wrapper {
    position: relative;
    height: 200vh; /* scroll room: 100vh visible + 100vh scroll distance */
    z-index: 1;
}

.hero {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    z-index: 1;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    inset: -20% 0 0 0;
    z-index: -2;
    overflow: hidden;
    will-change: transform;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 10, 20, 0.6) 0%, rgba(13, 10, 20, 0.4) 40%, rgba(13, 10, 20, 0.7) 100%),
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(123, 79, 194, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(200, 150, 62, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    width: 100%;
    will-change: opacity, transform;
}

.hero-content--centered {
    display: flex;
    justify-content: center;
}

.hero-content--centered .hero-text {
    text-align: center;
    max-width: 780px;
}

.hero-content--centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

.hero-content--centered .hero-stats {
    justify-content: center;
}

.hero-text {
    text-align: left;
}


.hero-badge {
    display: inline-block;
    background: rgba(200, 150, 62, 0.1);
    border: 1px solid rgba(200, 150, 62, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    perspective: 600px;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 0 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(241, 137, 24, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-light);
}

/* ============ Post-Hero Content ============ */
/* All content after hero needs solid bg + higher z-index to slide over the pinned hero */
.post-hero {
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

/* Soft gradient for cinematic transition from hero to content */
.post-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(13, 10, 20, 0.6) 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ============ Trust Bar ============ */
.trust-bar {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-bar-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.trust-bar-divider {
    width: 1px;
    height: 24px;
    background: var(--border-light);
}

/* ============ Video Section ============ */
.video-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--bg-secondary);
}

.video-facade {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.video-facade:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(200, 150, 62, 0.2);
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition);
}

.video-facade:hover .video-poster {
    transform: scale(1.04);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13, 10, 20, 0.2) 0%,
        rgba(13, 10, 20, 0.4) 50%,
        rgba(13, 10, 20, 0.85) 100%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(200, 150, 62, 0.5);
    transition: var(--transition);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(200, 150, 62, 0.4);
    animation: pulseRing 2s ease infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.video-facade:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    margin-left: 4px;
}

.video-caption {
    position: absolute;
    bottom: 24px;
    left: 32px;
    right: 32px;
    color: var(--text-primary);
    z-index: 2;
}

.video-caption strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.video-caption span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============ Benefits ============ */
.benefits {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(123, 79, 194, 0.12);
    border: 1px solid rgba(123, 79, 194, 0.3);
    color: var(--blue-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Image card variant */
.benefit-card--img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0;
    min-height: 300px;
}

.benefit-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card--img:hover .benefit-bg-img {
    transform: scale(1.06);
}

.benefit-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13, 10, 20, 0.15) 0%,
        rgba(13, 10, 20, 0.5) 40%,
        rgba(13, 10, 20, 0.92) 100%);
    z-index: 1;
}

.benefit-card-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    width: 100%;
}

.benefit-card--img h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.benefit-card--img:hover h3 {
    color: var(--accent-light);
}

.benefit-card--img p {
    max-width: 480px;
}

.benefit-card--img::before {
    display: none;
}


/* Keep original class for non-bento contexts */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 2px solid transparent;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(200, 150, 62, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(200, 150, 62, 0.06);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: var(--accent-light);
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============ Who Section ============ */
.who-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--bg-secondary);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.who-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
}

.who-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.who-card:hover {
    border-left-color: var(--accent-light);
    background: var(--bg-card-hover);
    transform: translateX(6px);
    box-shadow: -4px 0 20px rgba(200, 150, 62, 0.1);
}

.who-check {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 150, 62, 0.12);
    border-radius: 50%;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.who-card:hover .who-check {
    background: rgba(200, 150, 62, 0.2);
    transform: scale(1.1);
}

.who-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.who-card:hover h3 {
    color: var(--accent-light);
}

.who-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ Process ============ */
.process {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--bg-primary);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin-top: 56px;
    flex-shrink: 0;
    opacity: 0.4;
}

/* ============ Testimonials ============ */
.testimonials {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: rgba(200, 150, 62, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
    position: relative;
    padding-left: 0;
}

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

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

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============ Advisors ============ */
.advisors {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.advisor-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.advisor-card:hover {
    border-color: rgba(200, 150, 62, 0.3);
    box-shadow: var(--shadow-md);
}

.advisor-avatar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.avatar-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid transparent;
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        var(--gradient-gold) border-box;
    box-shadow: 0 12px 40px rgba(200, 150, 62, 0.25), 0 0 0 6px rgba(200, 150, 62, 0.05);
    transition: var(--transition);
}

.advisor-card:hover .avatar-img {
    transform: scale(1.04);
    box-shadow: 0 16px 50px rgba(200, 150, 62, 0.35), 0 0 0 8px rgba(200, 150, 62, 0.08);
}


.advisor-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.advisor-role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.advisor-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ FAQ ============ */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active {
    border-color: rgba(200, 150, 62, 0.25);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ Final CTA ============ */
.final-cta {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    overflow: hidden;
}

.final-cta-inner {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .section-tag {
    position: relative;
    z-index: 1;
}

.final-cta .section-title {
    position: relative;
    z-index: 1;
}

.final-cta-text {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn {
    position: relative;
    z-index: 1;
}

/* ============ Form Section ============ */
.form-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.form-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Form Urgency */
.form-urgency {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 18px 20px;
    background: rgba(200, 150, 62, 0.06);
    border: 1px solid rgba(200, 150, 62, 0.2);
    border-radius: var(--radius-md);
}

.urgency-icon {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.form-urgency strong {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.form-urgency p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Lead Form */
.lead-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

/* Honeypot — oculto para humanos */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.form-group.full-width {
    margin-bottom: 24px;
}

.form-group label,
.form-label-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}

.required {
    color: var(--accent);
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7a99' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group.error input,
.form-group.error select {
    border-color: #ef4444;
}

.error-msg {
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 18px;
}

/* Investment Options */
.investment-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.investment-option {
    cursor: pointer;
}

.investment-option input {
    display: none;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
}

.option-card:hover {
    border-color: rgba(200, 150, 62, 0.3);
    background: rgba(200, 150, 62, 0.05);
}

.investment-option input:checked + .option-card {
    border-color: var(--accent);
    background: rgba(200, 150, 62, 0.1);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
}

.option-amount {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.option-currency {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Submit */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    margin-top: 8px;
}

.btn-loader {
    display: none;
}
.btn-loader:not([hidden]) {
    display: inline-flex;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
    grid-column: 1 / -1;
}

.success-icon {
    color: #22c55e;
    margin-bottom: 20px;
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto;
}

/* ============ WhatsApp Float ============ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============ Mobile Sticky CTA ============ */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(13, 10, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

/* ============ Footer ============ */
.footer {
    position: relative;
    z-index: 1;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

/* Founders Section */
.footer-founders {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-founder {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.founder-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
        var(--gradient-gold) border-box;
    flex-shrink: 0;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-logo {
    max-width: 130px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left;
    opacity: 0.9;
}

.founder-logo--square {
    max-height: 36px;
    max-width: 90px;
}

.founder-role {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-info > p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 4px;
}

.founder-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.founder-contact a {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.founder-contact a:hover {
    color: var(--accent);
}

.footer-founder-divider {
    width: 1px;
    height: 100%;
    min-height: 120px;
    background: var(--border-light);
    align-self: center;
}

/* Footer Middle */
.footer-middle {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-names {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 4px;
}

.footer-name-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.5px;
}

.footer-name-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.footer-name-sep {
    width: 1px;
    height: 20px;
    background: var(--border-light);
    margin: 0 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-location {
    margin-top: 4px;
    font-size: 0.75rem !important;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ============ Flag Marquee ============ */
.flag-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.flag-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.flag-track:hover {
    animation-play-state: paused;
}

.flag-slide {
    display: flex;
    gap: 40px;
    padding-right: 40px;
    flex-shrink: 0;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: var(--transition);
}

.flag-item:hover {
    transform: scale(1.1);
}

.flag-emoji {
    font-size: 1.6rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    /* Anti-flash: invisible hasta que Twemoji termine de parsear */
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* Twemoji genera <img class="emoji"> dentro de .flag-emoji — ajustamos tamaño SVG */
.flag-emoji img.emoji {
    height: 1.5rem;
    width: auto;
    display: block;
    vertical-align: middle;
    border-radius: 2px;
}

/* Una vez Twemoji parseó (o el fallback timeout disparó) → mostramos */
.twemoji-ready .flag-emoji {
    opacity: 1;
}

.flag-item small {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

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

/* ============ Cinematic Reveal Animations ============ */

/* Hero word-by-word reveal */
.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(15deg);
    animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s + 0.3s);
}

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

/* Generic reveal-up for hero elements */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    animation: revealUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s + 0.3s);
}

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

/* Hero badge fade */
.reveal-fade {
    opacity: 0;
    animation: revealFade 1s ease 0.1s forwards;
}

@keyframes revealFade {
    to { opacity: 1; }
}

/* Scroll-triggered reveal for sections */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Text reveal with clip-path mask */
.scroll-reveal .section-title {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.scroll-reveal.revealed .section-title {
    clip-path: inset(0 0% 0 0);
}

.scroll-reveal .section-tag {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-reveal.revealed .section-tag {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-reveal .section-desc {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.35s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.scroll-reveal.revealed .section-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax layer for sections */
.parallax-bg {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ============ Legacy Animations ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ Hero Presenter (Yasmín + Unity) ============ */
.hero-presenter {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(200, 150, 62, 0.08);
    border: 1px solid rgba(200, 150, 62, 0.3);
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-presenter-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(200, 150, 62, 0.55);
    flex-shrink: 0;
}

.hero-presenter-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.hero-presenter-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    opacity: 0.85;
}

.hero-presenter-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.hero-presenter-sep {
    color: var(--accent);
    margin: 0 4px;
    font-weight: 400;
}

/* ============ Reframe Section ============ */
.reframe-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--bg-primary);
}

.reframe-card {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 56px 56px;
    background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.reframe-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.reframe-card::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(123, 79, 194, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.reframe-quote-mark {
    position: absolute;
    top: 16px;
    left: 32px;
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    line-height: 1;
    color: rgba(200, 150, 62, 0.13);
    pointer-events: none;
    user-select: none;
}

.reframe-body {
    position: relative;
    z-index: 1;
}

.reframe-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 8px 0 24px;
    color: var(--text-primary);
}

.reframe-text {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 700px;
}

.reframe-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.reframe-attribution {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.reframe-attribution img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(200, 150, 62, 0.4);
}

.reframe-attribution strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.reframe-attribution span {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 2px;
}

/* ============ Marquee Label (LATAM / Offshore) ============ */
.marquee-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.marquee-label svg {
    color: var(--accent);
    flex-shrink: 0;
}

.flag-marquee--latam {
    border-bottom: none;
    padding-bottom: 6px;
}

.flag-marquee--offshore {
    padding-top: 6px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.flag-track--reverse {
    animation: marqueeScrollReverse 50s linear infinite;
}

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

/* ============ Advisor Pull-Quote (Yasmín voice) ============ */
.advisor-pullquote {
    position: relative;
    max-width: 720px;
    margin: 80px auto 0;
    padding: 48px 40px 40px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.advisor-pullquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 0 0 4px 4px;
}

.pullquote-mark {
    color: var(--accent);
    opacity: 0.28;
    margin-bottom: 12px;
}

.advisor-pullquote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 600;
    font-style: italic;
    margin: 0 0 20px;
}

.advisor-pullquote figcaption {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============ Form Label Helper ============ */
.form-label-helper {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: -6px 0 14px;
    line-height: 1.4;
}

.form-label-helper strong {
    color: var(--accent-light);
    font-weight: 600;
}

/* ============ Legal Pages (Privacy / Terms / Cookies) ============ */
.legal-body {
    background: var(--bg-primary);
    min-height: 100vh;
}

.legal-body .header {
    background: rgba(13, 10, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.legal-page {
    position: relative;
    z-index: 1;
    padding: 140px 0 100px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 32px;
    transition: var(--transition);
}

.legal-back:hover {
    color: var(--accent);
    transform: translateX(-2px);
}

.legal-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 16px 0 12px;
    color: var(--text-primary);
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: 44px;
}

.legal-content section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-light);
    margin: 24px 0 10px;
    letter-spacing: 0.2px;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content em {
    color: var(--text-primary);
    font-style: italic;
}

.legal-content ul {
    margin: 8px 0 16px;
    padding-left: 22px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.legal-content ul li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.legal-content ul li::marker {
    color: var(--accent);
}

.legal-content a {
    color: var(--accent-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 150, 62, 0.3);
    transition: var(--transition);
    word-break: break-word;
}

.legal-content a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.legal-content code {
    font-family: 'Courier New', Consolas, monospace;
    background: rgba(123, 79, 194, 0.15);
    color: var(--blue-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.legal-info-list {
    list-style: none !important;
    padding-left: 0 !important;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px !important;
    margin-top: 12px;
}

.legal-info-list li {
    padding-left: 0 !important;
    margin-bottom: 6px;
}

.legal-info-list li::marker {
    content: '' !important;
}

.legal-info-list li:last-child {
    margin-bottom: 0;
}

/* Footer variant for legal pages (no founders top) */
.footer--legal {
    padding-top: 60px;
}

.footer--legal .footer-middle {
    border-top: none;
    padding-top: 0;
}

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 460px;
        margin: 0 auto;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .investment-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Reduce pinned scroll distance on mobile */
    .hero-wrapper {
        height: 150vh;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 200;
    }

    .nav.active a {
        font-size: 1.2rem;
    }

    .header-brand-name {
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .header-brand-sep {
        margin: 0 10px;
        height: 14px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 300;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .trust-bar-inner {
        gap: 16px;
    }

    .trust-bar-divider {
        display: none;
    }

    .trust-bar-item {
        font-size: 0.8rem;
    }

    .video-play-btn {
        width: 72px;
        height: 72px;
    }

    .video-play-btn svg {
        width: 26px;
        height: 26px;
    }

    .video-caption {
        bottom: 16px;
        left: 20px;
        right: 20px;
    }

    .video-caption strong {
        font-size: 1rem;
    }

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

    .stat-divider {
        width: 48px;
        height: 1px;
    }

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

    .benefit-card--img {
        min-height: 260px;
    }

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

    /* Hero presenter — más compacto en mobile */
    .hero-presenter {
        gap: 10px;
        padding: 6px 16px 6px 6px;
        margin-bottom: 22px;
    }

    .hero-presenter-avatar {
        width: 36px;
        height: 36px;
    }

    .hero-presenter-label {
        font-size: 9.5px;
        letter-spacing: 1.2px;
    }

    .hero-presenter-text strong {
        font-size: 12px;
    }

    /* Reframe section — padding reducido en mobile */
    .reframe-section {
        padding: 60px 0;
    }

    .reframe-card {
        padding: 48px 24px 32px;
    }

    .reframe-quote-mark {
        font-size: 6rem;
        top: 4px;
        left: 16px;
    }

    .reframe-text {
        font-size: 1rem;
    }

    .reframe-attribution {
        flex-direction: row;
        gap: 12px;
    }

    .reframe-attribution img {
        width: 48px;
        height: 48px;
    }

    /* Advisor pull-quote — padding reducido */
    .advisor-pullquote {
        margin-top: 56px;
        padding: 36px 24px 28px;
    }

    .advisor-pullquote blockquote {
        font-size: 1.15rem;
    }

    /* Marquee label — más pequeño en mobile */
    .marquee-label {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 6px 16px 2px;
    }

    /* Legal pages — padding reducido en mobile */
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-header {
        margin-bottom: 40px;
        padding-bottom: 28px;
    }

    .legal-content section {
        margin-bottom: 32px;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1rem;
    }

    .legal-content p,
    .legal-content ul {
        font-size: 0.95rem;
    }

    .legal-info-list {
        padding: 16px 18px !important;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
    }

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

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

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

    .lead-form {
        padding: 28px 20px;
    }

    .final-cta-inner {
        padding: 48px 24px;
    }

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

    .footer-founder-divider {
        width: 100%;
        height: 1px;
        min-height: auto;
    }

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

    /* Mobile sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    /* Extra padding at bottom for sticky CTA */
    .footer {
        padding-bottom: 90px;
    }
}

@media (max-width: 480px) {
    .investment-options {
        grid-template-columns: 1fr 1fr;
    }

    .investment-options .investment-option:last-child {
        grid-column: 1 / -1;
    }

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

    .final-cta .btn-lg {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

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

    .founder-contact {
        align-items: center;
    }
}
