/* ===== FORBES CASE STUDY — Standalone Client Page ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #050508;
    --accent: #C8A34E;
    --accent-dark: #9B7B2F;
    --accent-light: #E8C96A;
    --accent-glow: rgba(200,163,78,0.15);
    --teal: #00a78a;
    --teal-glow: rgba(0,167,138,0.15);
    --text: #F2F2F2;
    --text-dim: #7B8CA8;
    --surface: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.06);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="light"] {
    --bg: #F5F5F7;
    --text: #1A1A2E;
    --text-dim: #64748B;
    --surface: rgba(0,0,0,0.03);
    --border: rgba(0,0,0,0.06);
    --accent-glow: rgba(200,163,78,0.10);
    --teal-glow: rgba(0,167,138,0.10);
    /* Gold accent colors stay the same */
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== TOPBAR ===== */
.topbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    height: 56px;
    display: flex; align-items: center;
    padding: 0 32px;
    background: var(--theme-nav-bg, rgba(5,5,8,0.7));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s, border-color 0.3s;
}
.topbar-inner {
    width: 100%; max-width: 1200px;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar-logo img { height: 30px; width: auto; }
.topbar-back {
    font-size: 13px; font-weight: 500;
    color: var(--text-dim);
    display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
}
.topbar-back:hover { color: var(--text); }
.topbar-back svg { width: 16px; height: 16px; }
.topbar-actions {
    display: flex; align-items: center; gap: 12px;
}
.topbar-cta {
    padding: 7px 18px; font-size: 13px; font-weight: 600;
    color: #fff; background: var(--teal);
    border-radius: 7px;
    transition: background 0.2s, box-shadow 0.2s;
}
.topbar-cta:hover {
    background: #0c7762;
    box-shadow: 0 0 24px var(--teal-glow);
}

/* ===== HERO — CINEMATIC FORBES ===== */
.forbes-hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Diagonal gold lines background */
.forbes-hero-lines {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(200,163,78,0.03) 0px,
            rgba(200,163,78,0.03) 1px,
            transparent 1px,
            transparent 80px
        );
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 70%);
    animation: lines-drift 25s linear infinite;
}

@keyframes lines-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Central gold orb */
.forbes-hero-orb {
    position: absolute;
    top: 50%; left: 50%;
    width: 700px; height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(200,163,78,0.10) 0%,
        rgba(232,201,106,0.05) 25%,
        rgba(155,123,47,0.02) 45%,
        transparent 65%);
    animation: orb-pulse 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.65; }
}

/* Floating gold particles */
.forbes-hero-particles {
    position: absolute; inset: 0;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 9s ease-in-out infinite;
}
.particle:nth-child(1) { left: 12%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 28%; animation-delay: 1.8s; animation-duration: 10s; }
.particle:nth-child(3) { left: 45%; animation-delay: 3.2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 62%; animation-delay: 0.6s; animation-duration: 9s; }
.particle:nth-child(5) { left: 78%; animation-delay: 2.5s; animation-duration: 11s; }
.particle:nth-child(6) { left: 35%; animation-delay: 4.2s; animation-duration: 8.5s; }
.particle:nth-child(7) { left: 55%; animation-delay: 1.2s; animation-duration: 10.5s; }
.particle:nth-child(8) { left: 88%; animation-delay: 3.8s; animation-duration: 7.5s; }
.particle:nth-child(9) { left: 20%; animation-delay: 2.1s; animation-duration: 9.5s; }
.particle:nth-child(10) { left: 70%; animation-delay: 0.3s; animation-duration: 8s; }

@keyframes float-up {
    0% { bottom: -10px; opacity: 0; }
    15% { opacity: 0.5; }
    85% { opacity: 0.2; }
    100% { bottom: 110%; opacity: 0; }
}

.forbes-hero-content {
    position: relative; z-index: 1;
    max-width: 860px; padding: 0 24px;
}

.forbes-hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 18px 6px 8px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(200,163,78,0.06);
    border: 1px solid rgba(200,163,78,0.15);
    border-radius: 100px;
    margin-bottom: 36px;
}

.forbes-hero-badge-icon {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent);
    border-radius: 50%;
}
.forbes-hero-badge-icon svg { width: 13px; height: 13px; color: #050508; }

.forbes-hero-client-logo {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 40%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.forbes-hero h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.forbes-hero h1 .gold-text {
    background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forbes-hero-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 20px;
}

.forbes-hero-countries {
    display: flex; flex-wrap: wrap;
    gap: 10px; justify-content: center;
    margin-bottom: 44px;
}

.forbes-country-tag {
    padding: 6px 14px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent-light);
    background: rgba(200,163,78,0.06);
    border: 1px solid rgba(200,163,78,0.12);
    border-radius: 8px;
}

.forbes-hero-ctas {
    display: flex; flex-wrap: wrap;
    gap: 14px; justify-content: center;
}

.btn-forbes {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: 15px; font-weight: 600;
    color: #050508; background: var(--accent);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.btn-forbes::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn-forbes:hover::before { transform: translateX(100%); }
.btn-forbes:hover {
    box-shadow: 0 0 40px rgba(200,163,78,0.4), 0 4px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.btn-forbes-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: 15px; font-weight: 600;
    color: var(--text);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}
.btn-forbes-outline:hover {
    border-color: rgba(200,163,78,0.3);
    background: rgba(200,163,78,0.05);
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    color: var(--text-dim);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce-down 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }

@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== IMPACT STATS ===== */
.impact-stats {
    position: relative;
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(200,163,78,0.02), transparent);
}

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

.impact-stats-header .section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.impact-stats-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.impact-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.impact-card {
    position: relative;
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.impact-card:hover {
    border-color: rgba(200,163,78,0.2);
    box-shadow: 0 0 32px var(--accent-glow);
    transform: translateY(-4px);
}
.impact-card:hover::before { opacity: 1; }

.impact-value {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    font-size: 14px; font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.impact-detail {
    font-size: 12px;
    color: rgba(123,140,168,0.6);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .impact-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-inner {
    max-width: 900px; margin: 0 auto; padding: 0 24px;
}

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

.timeline-header .section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.timeline-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.timeline-header p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(200,163,78,0.1));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-dot {
    position: absolute;
    left: -40px; top: 4px;
    width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
}

.timeline-dot::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(200,163,78,0.5);
}

.timeline-dot::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    border: 1px solid rgba(200,163,78,0.2);
    border-radius: 50%;
    animation: timeline-ping 3s ease-in-out infinite;
}

@keyframes timeline-ping {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.6); opacity: 0; }
}

.timeline-year {
    font-size: 13px; font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 20px; font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.timeline-desc {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ===== PRODUCTS USED ===== */
.products-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
}

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

.products-header {
    text-align: center;
    margin-bottom: 72px;
}

.products-header .section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.products-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.products-header p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

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

.product-card {
    position: relative;
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card:hover {
    border-color: rgba(200,163,78,0.2);
    box-shadow: 0 0 32px var(--accent-glow);
    transform: translateY(-4px);
}

.product-card-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(200,163,78,0.08);
    border: 1px solid rgba(200,163,78,0.15);
    border-radius: 12px;
    color: var(--accent);
    flex-shrink: 0;
}
.product-card-icon svg { width: 24px; height: 24px; }

.product-card-name {
    font-size: 18px; font-weight: 700;
    margin-bottom: 4px;
}

.product-card-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

.product-card-metric {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    font-size: 12px; font-weight: 600;
    color: var(--accent-light);
    background: rgba(200,163,78,0.06);
    border-radius: 6px;
    align-self: flex-start;
}

.product-card-metric svg { width: 14px; height: 14px; }

.product-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s;
    align-self: flex-start;
}
.product-card-link:hover { gap: 10px; }
.product-card-link svg { width: 14px; height: 14px; }

@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== QUOTE / TESTIMONIAL ===== */
.quote-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,163,78,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.quote-inner {
    max-width: 800px; margin: 0 auto; padding: 0 24px;
    text-align: center;
    position: relative; z-index: 1;
}

.quote-mark {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    user-select: none;
}

.quote-text {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    color: var(--text);
}

.quote-author {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
}

.quote-author-name {
    font-size: 16px; font-weight: 700;
    color: var(--text);
}

.quote-author-role {
    font-size: 14px;
    color: var(--text-dim);
}

.quote-author-company {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 4px;
}

/* ===== RESULTS DEEP DIVE ===== */
.results-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
}

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

.results-header {
    text-align: center;
    margin-bottom: 72px;
}

.results-header .section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.results-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.results-header p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

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

.result-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex; align-items: flex-start; gap: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.result-card:hover {
    border-color: rgba(200,163,78,0.2);
    box-shadow: 0 0 24px var(--accent-glow);
}

.result-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(200,163,78,0.08);
    border: 1px solid rgba(200,163,78,0.15);
    border-radius: 10px;
    color: var(--accent);
    flex-shrink: 0;
}
.result-icon svg { width: 22px; height: 22px; }

.result-content { flex: 1; }

.result-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.result-value {
    font-size: 28px; font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.result-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Animated bar */
.result-bar {
    margin-top: 12px;
    height: 6px;
    background: rgba(200,163,78,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.result-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MULTI-COUNTRY VISUAL ===== */
.countries-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.countries-inner {
    max-width: 1000px; margin: 0 auto; padding: 0 24px;
}

.countries-header .section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.countries-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.countries-header p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 60px;
}

.countries-map {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.countries-map-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}

/* Abstract network of nodes representing countries */
.country-node {
    position: absolute;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
}

.country-dot {
    width: 14px; height: 14px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(200,163,78,0.5);
    position: relative;
}

.country-dot::after {
    content: '';
    position: absolute; inset: -6px;
    border: 1px solid rgba(200,163,78,0.3);
    border-radius: 50%;
    animation: country-ping 3s ease-in-out infinite;
}

.country-node:nth-child(2) .country-dot::after { animation-delay: 0.5s; }
.country-node:nth-child(3) .country-dot::after { animation-delay: 1s; }
.country-node:nth-child(4) .country-dot::after { animation-delay: 1.5s; }
.country-node:nth-child(5) .country-dot::after { animation-delay: 2s; }

@keyframes country-ping {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(2); opacity: 0; }
}

.country-label {
    font-size: 11px; font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* Connection lines between nodes */
.country-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,163,78,0.3), rgba(200,163,78,0.05));
    transform-origin: left center;
}

/* Node positions */
.country-node:nth-child(1) { top: 22%; left: 38%; }   /* Mexico */
.country-node:nth-child(2) { top: 38%; left: 58%; }   /* Colombia */
.country-node:nth-child(3) { top: 50%; left: 48%; }   /* Ecuador */
.country-node:nth-child(4) { top: 78%; left: 40%; }   /* Argentina */
.country-node:nth-child(5) { top: 68%; left: 60%; }   /* Uruguay */
.country-node:nth-child(6) { top: 60%; left: 55%; }   /* Paraguay */
.country-node:nth-child(6) .country-dot::after { animation-delay: 2.5s; }

/* ===== CTA FINAL ===== */
.forbes-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.forbes-cta::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(200,163,78,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.forbes-cta-inner {
    position: relative; z-index: 1;
    max-width: 640px; margin: 0 auto; padding: 0 24px;
}

.forbes-cta h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.forbes-cta p {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 36px;
}

.forbes-cta-buttons {
    display: flex; flex-wrap: wrap;
    gap: 14px; justify-content: center;
}

/* ===== FOOTER MINI ===== */
.forbes-footer {
    border-top: 1px solid var(--border);
    padding: 32px 24px;
}

.forbes-footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center;
    gap: 16px;
}
.forbes-footer-logo img { height: 22px; }
.forbes-footer-text {
    font-size: 13px; color: var(--text-dim);
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .forbes-hero { min-height: 90vh; padding-top: 80px; }
    .scroll-indicator { display: none; }
    .timeline-section { padding: 80px 0; }
    .products-section { padding: 80px 0; }
    .quote-section { padding: 80px 0; }
    .results-section { padding: 80px 0; }
    .countries-section { padding: 80px 0; }
    .forbes-cta { padding: 80px 0; }
    .topbar { padding: 0 16px; }
    .impact-stats { padding: 60px 0; }
    .timeline { padding-left: 32px; }
    .result-card { flex-direction: column; }
}
