/* ========================================
   AfroLink - Modern Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8941F;
    --gold-glow: rgba(212, 175, 55, 0.4);

    --black: #000000;
    --dark: #0a0a0a;
    --dark-gray: #111111;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;

    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --text-muted: rgba(255, 255, 255, 0.7);

    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 24px;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    padding: 12px 24px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-lg);
    transition: all 0.5s ease;
}

.navbar.scrolled .nav-container {
    max-width: 900px;
    padding: 12px 24px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: all 0.5s ease;
}

.navbar.scrolled .nav-logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    transition: all 0.5s ease;
}

.navbar.scrolled .nav-links {
    gap: 24px;
}

.navbar.scrolled .nav-link {
    font-size: 0.9rem;
}

.navbar.scrolled .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.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 Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#globe-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#globe-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    margin-top: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator .iconify {
    font-size: 32px;
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.floating-card.card-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 35%;
    right: 8%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 25%;
    left: 12%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
}

.section-gradient {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark) 100%);
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Glass Cards */
.glass-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.glass-card-dark {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-md);
}

/* ========================================
   Stats Row (Problem Section)
   ======================================== */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider-vertical {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.problem-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.callout-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.callout-content strong {
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

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

/* ========================================
   Story Section
   ======================================== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .section-title {
    text-align: left;
}

.story-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.story-highlight {
    padding: 24px;
}

.story-highlight p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    margin-top: 12px;
}

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

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   Dashboard Showcase
   ======================================== */
.dashboard-showcase {
    margin-bottom: 60px;
}

.dashboard-wrapper {
    padding: 16px;
    background: rgba(20, 20, 20, 0.8);
    overflow: hidden;
}

.dashboard-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    display: block;
}

/* ========================================
   Features List
   ======================================== */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.feature-item:nth-child(odd) {
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-item:nth-child(3),
.feature-item:nth-child(4) {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.03);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    min-width: 28px;
}

.feature-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--white);
    font-weight: 600;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   Investment Section
   ======================================== */
.investment-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.image-ring {
    position: absolute;
    inset: -15px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.investment-content .section-title {
    text-align: left;
}

.returns-list {
    margin: 32px 0;
}

.return-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 0;
}

.return-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 100px;
}

.return-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.return-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.return-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.3), transparent);
}

.maturity-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.maturity-info p {
    color: var(--white);
}

/* ========================================
   Why It Works Section
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .section-title {
    text-align: left;
}

.why-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.benefit-icon {
    font-size: 1.4rem;
    color: var(--gold);
}

/* ========================================
   Phase Sections (Zambia Section)
   ======================================== */
.phases-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px 0;
}

.phase-column {
    flex: 1;
    max-width: 400px;
}

.phase-divider-vertical {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
    align-self: stretch;
}

.phase-title-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.phase-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.phase-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phase-title .iconify {
    font-size: 1.5rem;
    color: var(--gold);
}

.phase-title h3 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

.phase-metrics {
    margin-bottom: 24px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.metric-value.highlight {
    color: var(--gold);
    font-size: 1.1rem;
}

.phase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.phase-badge .iconify {
    font-size: 1rem;
}

/* Charts */
.charts-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
}

.chart-container {
    flex: 1;
    max-width: 500px;
}

.chart-divider-vertical {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
    align-self: stretch;
}

.chart-title {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 24px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.chart-wrapper {
    height: 300px;
    position: relative;
}

/* ========================================
   CTA Section
   ======================================== */
.section-cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

.cta-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 48px;
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.cta-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.cta-actions {
    display: flex;
    justify-content: center;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* ========================================
   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);
    }
}

.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.stats-grid .animate-in:nth-child(1) { transition-delay: 0.1s; }
.stats-grid .animate-in:nth-child(2) { transition-delay: 0.2s; }
.stats-grid .animate-in:nth-child(3) { transition-delay: 0.3s; }

.features-grid .animate-in:nth-child(1) { transition-delay: 0.1s; }
.features-grid .animate-in:nth-child(2) { transition-delay: 0.2s; }
.features-grid .animate-in:nth-child(3) { transition-delay: 0.3s; }
.features-grid .animate-in:nth-child(4) { transition-delay: 0.4s; }

.benefits-list .animate-in:nth-child(1) { transition-delay: 0.1s; }
.benefits-list .animate-in:nth-child(2) { transition-delay: 0.2s; }
.benefits-list .animate-in:nth-child(3) { transition-delay: 0.3s; }
.benefits-list .animate-in:nth-child(4) { transition-delay: 0.4s; }

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

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

    .story-grid,
    .investment-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .investment-visual {
        order: -1;
    }

    .investment-content .section-title,
    .why-content .section-title,
    .story-content .section-title {
        text-align: center;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .navbar.scrolled {
        padding: 8px 16px;
    }

    .nav-container {
        padding: 12px 16px;
        border-radius: var(--border-radius-lg);
    }

    .navbar.scrolled .nav-container {
        max-width: 100%;
        padding: 10px 16px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links .nav-link {
        font-size: 1.2rem;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hero-content {
        padding: 0 16px;
    }

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

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

    .stats-row {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider-vertical {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    }

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

    .feature-item {
        padding: 24px 16px;
    }

    .feature-item:nth-child(odd) {
        border-right: none;
    }

    .feature-item:nth-child(3) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

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

    .phases-container {
        flex-direction: column;
        gap: 40px;
    }

    .phase-divider-vertical {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    }

    .phase-column {
        max-width: 100%;
    }

    .charts-section {
        flex-direction: column;
        gap: 40px;
    }

    .chart-divider-vertical {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    }

    .chart-container {
        max-width: 100%;
    }

    .return-item {
        flex-direction: column;
        gap: 12px;
    }

    .return-value {
        min-width: auto;
    }

    .cta-stats-row {
        flex-direction: column;
        gap: 32px;
    }

    .cta-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .section {
        padding: 60px 0;
    }

    .btn-large {
        padding: 14px 24px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-card-value {
        font-size: 2.5rem;
    }

    .return-value {
        font-size: 2.5rem;
    }

    .phase-title-row {
        gap: 16px;
    }

    .phase-number {
        font-size: 2.5rem;
    }

    .chart-wrapper {
        height: 250px;
    }
}
