/* ==========================================================================
   AM Fund Premium Corporate Design System
   ========================================================================== */

:root {
    /* Colors */
    --primary-blue: #0B5CFF;
    --primary-blue-hover: #0849CC;
    --dark-navy: #081B33;
    --dark-navy-rgb: 8, 27, 51;
    --light-blue: #EAF2FF;
    --white: #FFFFFF;
    --white-rgb: 255, 255, 255;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-500: #64748B;
    --gray-800: #1E293B;
    
    /* Utility Colors */
    --green: #10B981;
    --orange: #F59E0B;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 0 20px rgba(11, 92, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(8, 27, 51, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Global Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-light-blue { color: var(--light-blue) !important; }
.text-blue { color: var(--primary-blue) !important; }
.text-green { color: var(--green) !important; }
.text-orange { color: var(--orange) !important; }

.bg-light { background-color: var(--gray-50); }
.bg-dark { background-color: var(--dark-navy); }
.bg-blue { background-color: var(--primary-blue); color: var(--white); }
.bg-navy { background-color: var(--dark-navy); color: var(--white); }

.mb-20 { margin-bottom: 20px; }
.mb-50 { margin-bottom: 50px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.w-100 { width: 100%; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.shadow { box-shadow: var(--shadow-md); }

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.align-center { align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 5px 0; /* Reduced padding for a tighter header */
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 5px 0; /* Reduced padding */
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled .nav-links a { color: var(--dark-navy); }
.navbar.scrolled .logo img { content: url('logo_transparent.png'); }

/* Default to light colors if at top on dark hero */
.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-links a:hover { color: var(--primary-blue); }
.nav-links a:hover { color: var(--light-blue); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* லோகோ மட்டும் தெரிய மற்றும் பேக்ரவுண்ட் நீக்க */
.logo-container {
    background: transparent !important; /* எந்த பேக்ரவுண்டையும் நீக்கும் */
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 85px; /* Slightly tightened to reduce empty visual space */
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, height 0.3s ease;
}

.navbar.scrolled .brand-logo {
    height: 65px;
}

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

.nav-cta {
    padding: 10px 24px !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--dark-navy);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a254a 50%, var(--primary-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for nav */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 92, 255, 0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i { color: var(--light-blue); font-size: 1.1rem; }

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--light-blue);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    font-weight: 600;
    font-size: 1.1rem;
}

.stat-item .counter { font-family: var(--font-heading); }

.divider {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 15px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}



.main-dashboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    background: var(--glass-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    margin-bottom: 30px;
}

.dash-header i { font-size: 2.5rem; color: var(--primary-blue); }
.dash-header small { color: var(--gray-200); display: block; }
.dash-header strong { font-size: 1.5rem; }

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, rgba(11, 92, 255, 0.2), var(--primary-blue));
    border-radius: 6px 6px 0 0;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

.h-60 { height: 60%; }
.h-80 { height: 80%; }
.h-40 { height: 40%; }
.h-100 { height: 100%; }
.h-70 { height: 70%; }

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--glass-bg);
    animation: float 6s ease-in-out infinite;
}

.float-card strong { color: var(--dark-navy); display: block; font-size: 0.95rem; }
.float-card small { color: var(--gray-500); font-size: 0.8rem; }
.float-card i { font-size: 1.5rem; }

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 3s;
}

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

/* ==========================================================================
   Logo Marquee
   ========================================================================== */
.bank-partners-section {
    background: var(--white);
    padding: 60px 0;
    overflow: hidden;
    width: 100%;
}

.marquee-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Fallback Grid (No JS or Loading) */
.logo-track.grid-fallback {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Slider Track (JS Enabled) */
.logo-track.slider-active {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-seamless 40s linear infinite;
    align-items: center;
}

.logo-track.slider-active:hover {
    animation-play-state: paused;
}

.bank-card {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    min-width: 180px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 92, 255, 0.15);
    border-color: rgba(11, 92, 255, 0.3);
}

.bank-card img {
    width: auto;
    height: 60px;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

/* Fallback Styling for Missing Logos */
.bank-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    text-align: center;
}

.bank-fallback i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.bank-fallback span {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-navy);
}

@keyframes scroll-seamless {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
    background-color: var(--gray-50);
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--white);
    background: var(--primary-blue);
    padding: 4px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.about-visual {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.glass-bg-shape {
    position: absolute;
    top: 20px;
    left: 0;
    width: 90%;
    height: 90%;
    background: var(--light-blue);
    border-radius: 20px;
    z-index: 0;
}

.rounded-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 450px;
    width: 100%;
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    z-index: 2;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-navy);
    animation: float 5s ease-in-out infinite;
}

.floating-badge i { color: var(--orange); }

/* ==========================================================================
   Why Us (Benefits)
   ========================================================================== */
.benefit-card {
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--light-blue), transparent);
    transition: var(--transition-smooth);
    opacity: 0;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.benefit-card:hover::before {
    height: 100%;
    opacity: 0.5;
}

.benefit-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.benefit-card:hover .icon-box {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ==========================================================================
   Services
   ========================================================================== */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-500);
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
}

.timeline-track {
    position: absolute;
    top: 45px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-dot {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    box-shadow: 0 0 0 5px var(--dark-navy), 0 0 0 7px var(--primary-blue);
    transition: var(--transition-fast);
}

.timeline-step:hover .step-dot {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-blue);
}

.timeline-step h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-step p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ==========================================================================
   Who Can Join
   ========================================================================== */
.role-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 25px 20px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    cursor: default;
}

.role-card:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Training
   ========================================================================== */
.training-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--gray-800);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--white);
    z-index: 2;
    cursor: pointer;
    transition: var(--transition-fast);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--primary-blue);
}

.floating-stat {
    position: absolute;
    bottom: 50px;
    right: 0;
    padding: 15px 25px;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.floating-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-blue);
    line-height: 1;
}

.floating-stat small {
    font-weight: 600;
    color: var(--dark-navy);
}

.training-content p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 25px;
}

.training-list {
    list-style: none;
}

.training-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.training-list i { font-size: 1.2rem; }

/* ==========================================================================
   Partner Benefits & Chart
   ========================================================================== */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.benefit-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.benefit-item h4 { font-size: 1.1rem; }

.earnings-chart-container {
    max-width: 800px;
    margin: 0 auto;
}

.earnings-chart {
    padding: 30px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.badge {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 250px;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gray-200);
}

.c-bar {
    flex: 1;
    background: linear-gradient(to top, var(--light-blue), var(--primary-blue));
    border-radius: 8px 8px 0 0;
    position: relative;
    height: 0;
    transition: height 1.5s ease-out;
}

.reveal.active .c-bar {
    height: var(--h);
}

.c-bar span {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
}

/* ==========================================================================
   Performance Stats
   ========================================================================== */
.stat-box {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.glow-text {
    text-shadow: 0 0 20px rgba(11, 92, 255, 0.5);
}

.stat-label {
    color: var(--light-blue);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.quote-icon {
    color: var(--light-blue);
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.5;
}

.quote {
    font-size: 1.1rem;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
}

.author strong { display: block; color: var(--dark-navy); }
.author small { color: var(--gray-500); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.accordion-header:hover { color: var(--primary-blue); }

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 20px;
}

.accordion-content p { color: var(--gray-500); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a254a 50%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(11, 92, 255, 0.5) 0%, rgba(255,255,255,0) 70%);
    filter: blur(80px);
    z-index: 0;
}

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

.cta-banner h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
    gap: 30px;
}

.contact-card {
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.c-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover .c-icon {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
}

.contact-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--dark-navy);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding-top: 80px;
}

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--gray-500);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-bottom {
    padding: 25px 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-fast);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #0ea5e9; /* Changed hover to blueish or darker green, let's keep it green */
    background: #059669;
    animation: none;
}

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

/* ==========================================================================
   Animations & Reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-container { gap: 30px; }
    .hero h1 { font-size: 3rem; }
    .timeline-container { flex-direction: column; align-items: flex-start; padding-left: 40px; }
    .timeline-track { width: 4px; height: 100%; left: 34px; top: 0; }
    .timeline-step { display: flex; align-items: center; text-align: left; gap: 20px; margin-bottom: 30px; width: 100%; }
    .timeline-step .step-dot { margin: 0; flex-shrink: 0; }
}

@media (max-width: 768px) {
    .grid-3, .two-col { grid-template-columns: 1fr; gap: 40px; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        clip-path: circle(0% at top right);
        transition: all 0.4s ease-out;
    }
    
    .nav-links.active {
        clip-path: circle(150% at top right);
    }
    
    .nav-links a { color: var(--dark-navy) !important; font-size: 1.1rem; }
    .mobile-menu-toggle { display: block; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { margin: 0 auto 30px; }
    .hero-stats, .hero-ctas { justify-content: center; }
    .hero-visual { display: none; } /* Hide complex visual on mobile */
    
    .chart-bars { display: none; } /* Hide complex chart on mobile, or simplify */
    .earnings-chart { text-align: center; }
    
    .cta-banner h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; }
    
    .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
    .hero h1 { font-size: 2rem; }
    .trust-grid { flex-direction: column; align-items: flex-start; }
}
