/* ============================================
   INSTITUTE OF FUNDED TRADING - MODERN REDESIGN
   Premium, Conversion-Optimized Design System
   ============================================ */

/* ============================================
   CSS VARIABLES - DESIGN TOKENS
   ============================================ */
:root {
    /* Primary Colors */
    --primary-dark: #0F172A;
    --primary-navy: #1E293B;
    --primary-slate: #334155;

    /* Accent Colors */
    --accent-emerald: #10B981;
    --accent-emerald-hover: #059669;
    --accent-gold: #F59E0B;
    --accent-gold-light: #FCD34D;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0F172A;

    /* Typography - Inter for optimal screen readability */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Typography Scale */
    --line-height-body: 1.6;
    --max-line-width: 70ch;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem; /* 18px minimum for body text */
    font-weight: 400;
    line-height: var(--line-height-body);
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    min-width: 320px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700; /* Headlines: 600-700 weight */
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
    font-size: 1.125rem; /* 18px minimum */
    line-height: var(--line-height-body);
    max-width: var(--max-line-width); /* 70 characters max width */
}

/* Remove max-width constraint inside cards and other constrained containers */
.card p,
.pricing-card p,
.stage-card p,
.benefit-card p,
.pathway-content p,
.faq-answer-content p {
    max-width: none;
}

/* Tabular figures for numerical data and financial figures */
.tabular-nums {
    font-variant-numeric: tabular-nums;
}

/* Apply tabular figures to elements that typically contain numbers */
.pricing-amount,
.pricing-row span:last-child,
.stage-example,
.split-value,
.sharpe-value,
.rule-value,
table td,
.stat-number {
    font-variant-numeric: tabular-nums;
}

a {
    color: var(--accent-emerald);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--accent-emerald-hover);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: var(--space-8);
}

.container-narrow {
    max-width: 960px;
}

.container-wide {
    max-width: 1440px;
}

.section {
    padding-block: var(--space-20);
    padding-inline: var(--space-4);
}

.section-sm {
    padding-block: var(--space-12);
}

.section-lg {
    padding-block: var(--space-24);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--space-4);
    gap: var(--space-8);
}

.logo {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    transition: transform var(--transition-base);
    white-space: nowrap;
}

.logo:hover {
    transform: translateY(-2px);
    color: var(--accent-emerald);
}

.logo-accent {
    color: var(--accent-emerald);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    color: var(--gray-200);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.1);
}

/* Dropdown Navigation */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + var(--space-2));
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--gray-700);
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown a:hover {
    background: var(--gray-50);
    color: var(--accent-emerald);
    transform: translateX(4px);
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-base);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: background var(--transition-base);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

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

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

/* CTA Button in Nav */
.nav-cta {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    color: var(--white) !important;
    font-weight: 600;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    margin-left: var(--space-4);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-emerald-hover), var(--accent-emerald));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Two-Row Header Layout */
.header-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-row-title {
    padding-top: var(--space-4);
    padding-bottom: var(--space-3);
}

.header-row-title .logo {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: all var(--transition-base);
    text-align: center;
}

.header-row-title .logo:hover {
    color: var(--accent-emerald);
}

.header-row-nav {
    padding-bottom: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-3);
}

/* Centered Navigation Menu */
.main-nav-centered {
    display: flex;
    justify-content: center;
}

.nav-list-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    list-style: none;
    flex-wrap: wrap;
}

.nav-list-centered .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

.nav-list-centered .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-list-centered .nav-link.active {
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
    .header-row-title {
        padding-top: var(--space-3);
        padding-bottom: var(--space-2);
    }

    .header-row-nav {
        padding-top: var(--space-2);
        padding-bottom: var(--space-3);
    }

    .nav-list-centered {
        gap: var(--space-1);
    }

    .nav-list-centered .nav-link {
        padding: var(--space-2) var(--space-3);
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .header-row-title .logo {
        font-size: 1.125rem;
    }

    .nav-list-centered .nav-link {
        padding: var(--space-1) var(--space-2);
        font-size: 0.75rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, #1a3a52 100%);
    color: var(--white);
    padding-block: var(--space-24);
    padding-inline: var(--space-4);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin-bottom: var(--space-6);
    animation: fade-in-up 0.6s ease-out;
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-6);
    animation: fade-in-up 0.6s ease-out 0.2s both;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: var(--line-height-body);
    color: var(--gray-200);
    margin-bottom: var(--space-8);
    animation: fade-in-up 0.6s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: fade-in-up 0.6s ease-out 0.6s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: 1.125rem;
}

.btn-sm {
    padding: var(--space-2) var(--space-5);
    font-size: 0.875rem;
}

/* ============================================
   FEATURE CARDS & GRIDS
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-8);
}

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

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-emerald);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.card h3 {
    margin-bottom: var(--space-3);
    color: var(--primary-dark);
}

.card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--primary-dark);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: var(--space-12);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    color: var(--accent-emerald);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: var(--line-height-body);
}

/* Background Variants */
.bg-gray {
    background: var(--gray-50);
}

.bg-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--white);
}

.bg-dark p {
    color: var(--gray-300);
}

.bg-dark .card h3,
.bg-dark .card h4 {
    color: var(--primary-dark);
}

.bg-dark .card p {
    color: var(--primary-dark);
}

/* ============================================
   STATS/METRICS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    margin-block: var(--space-12);
}

.stat-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--accent-emerald);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   TABLES
   ============================================ */
.table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-block: var(--space-8);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

thead {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: var(--white);
}

th {
    padding: var(--space-4) var(--space-5);
    text-align: left;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

tbody tr:hover {
    background: var(--gray-50);
}

tbody tr:last-child td {
    border-bottom: none;
}

.table-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    font-weight: 700;
    color: var(--accent-emerald);
}

/* ============================================
   TIER CARDS (Programs Page)
   ============================================ */
.tier-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.tier-card.featured {
    border: 2px solid var(--accent-gold);
}

.tier-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-bottom-left-radius: var(--radius-lg);
}

.tier-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    padding: var(--space-6);
    text-align: center;
    position: relative;
}

.tier-header .tier-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.tier-header .tier-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.tier-header.gold .tier-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.tier-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-emerald);
    margin-bottom: var(--space-2);
}

.tier-header.gold .tier-label {
    color: var(--accent-gold-light);
}

.tier-deposit {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.tier-max {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.tier-max span {
    color: var(--accent-emerald);
    font-weight: 700;
}

.tier-header.gold .tier-max span {
    color: var(--accent-gold-light);
}

.tier-body {
    padding: var(--space-6);
}

.tier-features {
    list-style: none;
    margin-bottom: var(--space-6);
}

.tier-features li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li span {
    color: var(--gray-600);
}

.tier-features li strong {
    color: var(--primary-dark);
}

.tier-benefits {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
}

.tier-benefits h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-benefits ul {
    list-style: none;
}

.tier-benefits li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: var(--space-1) 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.tier-benefits li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
}

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

.tier-cta .btn {
    width: 100%;
}

/* How It Works Box */
.how-it-works-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-10);
}

@media (max-width: 576px) {
    .how-it-works-box {
        flex-direction: column;
        text-align: center;
    }
}

.how-it-works-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .how-it-works-icon {
        margin: 0 auto;
    }
}

.how-it-works-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.how-it-works-content h4 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
}

.how-it-works-content p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.how-it-works-content strong {
    color: var(--accent-emerald);
}

/* Tier Section Header */
.tier-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

@media (max-width: 576px) {
    .tier-section-header {
        flex-direction: column;
        text-align: center;
    }
}

.tier-section-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-section-icon.emerald {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
}

.tier-section-icon.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.tier-section-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.tier-section-header h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.tier-section-header p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon.emerald {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
}

.info-card-icon.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.info-card-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.info-card-header h3 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin: 0;
}

.info-list {
    list-style: none;
    padding: var(--space-5);
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li.highlight {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), transparent);
    margin: 0 calc(var(--space-5) * -1);
    padding-left: var(--space-5);
    padding-right: var(--space-5);
    border-radius: var(--radius-lg);
}

.info-label {
    font-weight: 500;
    color: var(--gray-700);
}

.info-value {
    font-weight: 700;
    color: var(--accent-emerald);
}

.info-value.gold {
    color: var(--accent-gold);
}

/* ============================================
   STAGE CARDS
   ============================================ */
.stage-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.stage-card {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.stage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.stage-card.elite {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), rgba(255, 255, 255, 0.05));
}

.stage-number {
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stage-number.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.stage-content {
    flex: 1;
    padding: var(--space-5);
}

.stage-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}

.stage-header h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
}

.stage-multiplier {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

.stage-multiplier.gold {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
}

.stage-stats {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}

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

.stage-stat .stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stage-stat .stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.stage-stat .stat-value.emerald {
    color: var(--accent-emerald);
}

.stage-stat .stat-value.gold {
    color: var(--accent-gold);
}

.stage-objective {
    color: var(--gray-300);
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 576px) {
    .stage-card {
        flex-direction: column;
    }

    .stage-number {
        width: 100%;
        min-width: auto;
        padding: var(--space-3);
    }
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.feature-card h4 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   RULE CARDS (Universal Risk Rules)
   ============================================ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.rule-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
}

.rule-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.rule-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.rule-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.rule-icon.warning {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.rule-icon.success {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.rule-icon.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.rule-card h4 {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.rule-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-emerald);
    margin-bottom: var(--space-2);
}

.rule-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

/* Trading Freedom Banner */
.trading-freedom-banner {
    margin-top: var(--space-8);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

@media (max-width: 768px) {
    .trading-freedom-banner {
        flex-direction: column;
        text-align: center;
    }
}

.freedom-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    display: flex;
    align-items: center;
    justify-content: center;
}

.freedom-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.freedom-content h4 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    font-weight: 700;
}

.freedom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

@media (max-width: 768px) {
    .freedom-tags {
        justify-content: center;
    }
}

.freedom-tag {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ============================================
   COMPARISON CARDS (Micro vs Standard)
   ============================================ */
.comparison-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all var(--transition-base);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.comparison-card.standard {
    border: 2px solid var(--accent-gold);
}

.comparison-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-bottom-left-radius: var(--radius-lg);
}

.comparison-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    padding: var(--space-6);
    text-align: center;
}

.comparison-header.gold {
    background: linear-gradient(135deg, var(--primary-dark), #4a3800);
}

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
}

.comparison-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-emerald);
}

.comparison-header.gold .comparison-icon svg {
    fill: var(--accent-gold);
}

.comparison-header h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
}

.comparison-price {
    color: var(--accent-emerald);
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-header.gold .comparison-price {
    color: var(--accent-gold);
}

.comparison-body {
    padding: var(--space-6);
}

.comparison-ideal {
    color: var(--gray-600);
    font-size: 0.9375rem;
    text-align: center;
    margin-bottom: var(--space-4);
}

.comparison-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.comparison-stat {
    background: var(--gray-50);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    text-align: center;
}

.comparison-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.comparison-stat .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.comparison-features {
    list-style: none;
    margin-bottom: var(--space-5);
}

.comparison-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.comparison-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: 700;
}

.comparison-features.premium li::before {
    color: var(--accent-gold);
}

/* ============================================
   PROGRESSION TIMELINE
   ============================================ */
.progression-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-8);
    position: relative;
}

.progression-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
    z-index: 0;
}

@media (max-width: 768px) {
    .progression-timeline {
        flex-direction: column;
        gap: var(--space-4);
    }

    .progression-timeline::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 4px;
        height: auto;
    }
}

.progression-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

@media (max-width: 768px) {
    .progression-step {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-4);
    }
}

.step-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.progression-step.final .step-marker {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

@media (max-width: 768px) {
    .step-marker {
        margin-bottom: 0;
    }
}

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

@media (max-width: 768px) {
    .step-content {
        text-align: left;
    }
}

.step-capital {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.step-details span {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.step-target {
    color: var(--primary-dark) !important;
    font-weight: 500;
}

.step-earn {
    color: var(--accent-emerald) !important;
    font-weight: 600;
}

/* Total Earnings Card */
.total-earnings-card {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

@media (max-width: 576px) {
    .total-earnings-card {
        flex-direction: column;
        text-align: center;
    }
}

.earnings-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.earnings-content {
    display: flex;
    flex-direction: column;
}

.earnings-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.earnings-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.progression-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9375rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CTA BOX
   ============================================ */
.cta-box {
    text-align: center;
    padding: var(--space-10);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(245, 158, 11, 0.15));
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-2xl);
}

.cta-box h2 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: var(--space-3);
}

.cta-box p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-6);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
}

.btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-dark);
    color: var(--gray-300);
    padding-block: var(--space-16);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--space-5);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-3);
}

.footer-section a {
    color: var(--gray-300);
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

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

.footer-disclaimer {
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-8);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-2xl);
    animation: slide-up 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: 2rem;
    color: var(--gray-400);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--space-5);
}

label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    font-size: 0.9375rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: var(--space-4);
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--gray-700);
    transition: all var(--transition-base);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: var(--space-6);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-xl);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-4);
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: var(--space-2);
        display: none;
        border-radius: var(--radius-md);
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown a {
        color: var(--gray-200);
        padding: var(--space-3) var(--space-5);
    }

    .dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .hero {
        padding-block: var(--space-16);
    }

    .section {
        padding-block: var(--space-12);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .table-container {
        margin-inline: 0;
        padding-inline: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }

    .table-container table {
        min-width: 500px;
        font-size: 0.875rem;
    }

    th, td {
        padding: var(--space-3) var(--space-4);
        font-size: 0.8125rem;
    }

    .card {
        padding: var(--space-6);
    }

    .section-header {
        margin-bottom: var(--space-8);
    }

    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: var(--space-6);
    }

    .card {
        padding: var(--space-5);
    }

    th, td {
        padding: var(--space-2) var(--space-3);
        font-size: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .stat-card {
        padding: var(--space-5);
    }

    .stat-number {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }

    .hero {
        padding-block: var(--space-12);
    }

    .section {
        padding-block: var(--space-10);
    }

    .btn {
        padding: var(--space-3) var(--space-6);
        font-size: 0.9375rem;
    }

    .btn-lg {
        padding: var(--space-4) var(--space-8);
        font-size: 1rem;
    }

    .modal-content {
        padding: var(--space-8);
        margin: var(--space-4);
    }

    .footer-grid {
        gap: var(--space-8);
    }

    .logo {
        font-size: clamp(0.875rem, 4vw, 1.125rem);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   ENHANCED COMPARISON TABLE (Compare Page)
   ============================================ */
.comparison-table.enhanced thead th {
    vertical-align: middle;
}

.comparison-table.enhanced .th-content {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    justify-content: center;
}

.comparison-table.enhanced .th-content svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comparison-table .prop-col {
    background: rgba(239, 68, 68, 0.05);
    color: var(--gray-700);
}

.comparison-table thead .prop-col {
    background: var(--gray-600);
}

.comparison-table .highlight-col {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-emerald);
    font-weight: 500;
}

.comparison-table thead .highlight-col {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
}

.comparison-table tbody tr:hover .prop-col {
    background: rgba(239, 68, 68, 0.1);
}

.comparison-table tbody tr:hover .highlight-col {
    background: rgba(16, 185, 129, 0.15);
}

/* ============================================
   INFO CARD DARK VARIANT
   ============================================ */
.info-card.dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card.dark .info-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.info-card.dark .info-card-header h3 {
    color: var(--white);
}

.info-card.dark.featured {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.05));
}

.info-card-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.info-list.dark li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.info-list.dark .info-label {
    color: var(--gray-400);
}

.info-list.dark .info-value {
    color: var(--gray-300);
}

.info-list.dark .info-value.emerald {
    color: var(--accent-emerald);
}

/* ============================================
   CHECK LIST (Compare Page)
   ============================================ */
.check-list {
    list-style: none;
    padding: var(--space-5);
    margin: 0;
}

.check-list li {
    position: relative;
    padding: var(--space-3) 0;
    padding-left: var(--space-8);
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(var(--space-3) + 0.25rem);
    width: 20px;
    height: 20px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-list li::after {
    content: '?';
    position: absolute;
    left: 6px;
    top: calc(var(--space-3) + 0.35rem);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
}

.check-list.dark li {
    color: var(--gray-300);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.check-list.dark li::before {
    background: rgba(255, 255, 255, 0.1);
}

.check-list.dark li::after {
    color: var(--gray-400);
}

.check-list.emerald li::before {
    background: rgba(16, 185, 129, 0.2);
}

.check-list.emerald li::after {
    content: '\2713';
    color: var(--accent-emerald);
}

/* ============================================
   JOURNEY STEPS (Compare Page)
   ============================================ */
.journey-steps {
    margin-bottom: var(--space-5);
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.journey-step:last-child {
    border-bottom: none;
}

.journey-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
}

.journey-text {
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.5;
    padding-top: 0.2rem;
}

.journey-step.success .journey-number {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    color: white;
}

.journey-step.success .journey-text {
    color: var(--primary-dark);
}

.journey-step.warning .journey-number {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.journey-step.warning .journey-text {
    color: #dc2626;
    font-weight: 500;
}

.journey-step.highlight .journey-number {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
}

.journey-step.highlight .journey-text {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ============================================
   OUTCOME BOX (Compare Page)
   ============================================ */
.outcome-box {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border-left: 4px solid var(--gray-300);
}

.outcome-box.warning {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #ef4444;
}

.outcome-box.success {
    background: rgba(16, 185, 129, 0.08);
    border-left-color: var(--accent-emerald);
}

.outcome-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.outcome-stat:last-child {
    border-bottom: none;
}

.outcome-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.outcome-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.outcome-box.warning .outcome-value {
    color: #dc2626;
}

.outcome-box.success .outcome-value {
    color: var(--accent-emerald);
}

/* ============================================
   HOW IT WORKS BOX VARIANTS
   ============================================ */
.how-it-works-box.gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(252, 211, 77, 0.1));
    border-color: rgba(245, 158, 11, 0.3);
}

.how-it-works-box.gold .how-it-works-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.how-it-works-box.gold .how-it-works-content h4 {
    color: var(--accent-gold);
}

/* ============================================
   FEATURE ICON VARIANTS
   ============================================ */
.feature-icon.emerald {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
}

.feature-icon.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

/* ============================================
   BTN LIGHT VARIANT
   ============================================ */
.btn-light {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

/* ============================================
   SECTION VARIANTS
   ============================================ */
.section-light {
    background: var(--white);
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: var(--gray-300);
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

.section-gray {
    background: var(--gray-50);
}

/* ============================================
   SECTION TITLE STYLING
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: var(--space-8);
}

.section-title h2 {
    margin-bottom: var(--space-3);
}

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

/* ============================================
   CARD DARK VARIANT
   ============================================ */
.card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark h3 {
    color: var(--white);
}

.card-dark p {
    color: var(--gray-300);
}

.card-dark strong {
    color: var(--accent-emerald);
}

/* ============================================
   CONTACT FORM CARD
   ============================================ */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-card .form-group {
    margin-bottom: var(--space-5);
}

.contact-form-card label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    font-size: 0.9375rem;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: var(--space-4);
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--accent-emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: var(--gray-400);
}

.contact-form-card textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-card .btn {
    margin-top: var(--space-2);
}

/* Text accent class for links */
.text-accent {
    color: var(--accent-emerald);
    transition: color var(--transition-base);
}

.text-accent:hover {
    color: var(--accent-emerald-hover);
}

/* ============================================
   HOMEPAGE - 5-STAGE JOURNEY VISUAL
   ============================================ */
.stage-journey {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding: var(--space-8) 0;
}

.stage-journey-line {
    position: absolute;
    left: 36px;
    top: 80px;
    bottom: 80px;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
}

@media (min-width: 992px) {
    .stage-journey {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .stage-journey-line {
        left: 60px;
        right: 60px;
        top: 36px;
        bottom: auto;
        width: auto;
        height: 4px;
        background: linear-gradient(to right, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    }
}

.stage-journey-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .stage-journey-step {
        flex-direction: column;
        align-items: center;
        flex: 1;
        max-width: 180px;
    }
}

.journey-node {
    position: relative;
    width: 72px;
    height: 72px;
    min-width: 72px;
}

.journey-node-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.stage-journey-step:nth-child(4) .journey-node-number,
.stage-journey-step:nth-child(5) .journey-node-number {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.journey-node-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.stage-journey-step:nth-child(4) .journey-node-ring,
.stage-journey-step:nth-child(5) .journey-node-ring {
    border-color: rgba(245, 158, 11, 0.3);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.journey-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    flex: 1;
    transition: all var(--transition-base);
}

.journey-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-emerald);
}

.stage-journey-step:nth-child(4) .journey-card:hover,
.stage-journey-step:nth-child(5) .journey-card:hover {
    border-color: var(--accent-gold);
}

@media (min-width: 992px) {
    .journey-card {
        text-align: center;
        min-height: 200px;
    }
}

.journey-card h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: var(--space-2);
}

.journey-card .multiplier {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.stage-journey-step:nth-child(4) .journey-card .multiplier,
.stage-journey-step:nth-child(5) .journey-card .multiplier {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
}

.journey-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

.journey-card .target {
    display: block;
    margin-top: var(--space-2);
    font-weight: 600;
    color: var(--primary-dark);
}

/* Stage Rules Banner */
.stage-rules-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-top: var(--space-8);
}

.rules-banner-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--white);
}

.rules-banner-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    display: flex;
    align-items: center;
    justify-content: center;
}

.rules-banner-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.rules-banner-item span {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ============================================
   HOMEPAGE - INSTITUTIONAL TRACK SHOWCASE
   ============================================ */
.institutional-showcase {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 992px) {
    .institutional-showcase {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.institutional-main {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
}

.institutional-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.institutional-badge {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    position: relative;
}

.institutional-badge-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.institutional-badge-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-dark);
}

.institutional-badge h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}

.institutional-badge p {
    color: var(--accent-gold);
    font-size: 0.9375rem;
    margin: 0;
    font-weight: 600;
}

.institutional-highlights {
    display: grid;
    gap: var(--space-4);
    position: relative;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: all var(--transition-base);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
}

.highlight-item span {
    color: var(--gray-200);
    font-size: 0.9375rem;
    font-weight: 500;
}

.highlight-item strong {
    color: var(--accent-gold);
}

.institutional-benefits {
    display: grid;
    gap: var(--space-4);
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(252, 211, 77, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-gold);
}

.benefit-content h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   HOMEPAGE - COMPARISON VISUAL
   ============================================ */
.comparison-visual {
    display: grid;
    gap: var(--space-6);
    align-items: stretch;
}

@media (min-width: 992px) {
    .comparison-visual {
        grid-template-columns: 1fr auto 1fr;
    }
}

.comparison-column {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-column.prop-firm {
    border: 2px solid var(--gray-200);
}

.comparison-column.ift {
    border: 2px solid var(--accent-emerald);
    position: relative;
}

.comparison-column.ift::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    letter-spacing: 0.05em;
}

.comparison-header-visual {
    padding: var(--space-6);
    text-align: center;
}

.comparison-column.prop-firm .comparison-header-visual {
    background: var(--gray-100);
}

.comparison-column.ift .comparison-header-visual {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.comparison-header-visual h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
}

.comparison-column.prop-firm .comparison-header-visual h3 {
    color: var(--gray-600);
}

.comparison-column.ift .comparison-header-visual h3 {
    color: var(--accent-emerald);
}

.comparison-header-visual p {
    font-size: 0.9375rem;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: var(--space-5);
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.comparison-column.prop-firm .comparison-list .icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.comparison-column.ift .comparison-list .icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-divider span {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .comparison-divider {
        padding: var(--space-4) 0;
    }
}

.comparison-bottom-card {
    margin-top: var(--space-8);
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.comparison-bottom-card .message {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: white;
}

.comparison-bottom-card .message-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-bottom-card .message-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.comparison-bottom-card .message p {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .comparison-bottom-card {
        flex-direction: column;
        text-align: center;
    }

    .comparison-bottom-card .message {
        flex-direction: column;
    }
}

/* ============================================
   HOMEPAGE - JOURNEY CARD DETAILED STRUCTURE
   ============================================ */
.journey-card-header {
    margin-bottom: var(--space-3);
}

.journey-card-header h4 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
}

.journey-multiplier {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

.journey-multiplier.gold {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
}

.stage-journey-step:nth-child(4) .journey-multiplier,
.stage-journey-step:nth-child(5) .journey-multiplier,
.stage-journey-step.final .journey-multiplier {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
}

.journey-card-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.journey-stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.journey-stat-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-stat-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-emerald);
}

.journey-stat-icon.gold {
    background: rgba(245, 158, 11, 0.1);
}

.journey-stat-icon.gold svg {
    fill: var(--accent-gold);
}

.journey-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.journey-stat-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-left: auto;
}

.journey-stat-value.emerald {
    color: var(--accent-emerald);
}

.journey-stat-value.gold {
    color: var(--accent-gold);
}

.journey-card-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.journey-card.elite {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), white);
}

.journey-card.elite:hover {
    border-color: var(--accent-gold);
}

.journey-node.gold .journey-node-number {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.journey-node.gold .journey-node-ring {
    border-color: rgba(245, 158, 11, 0.3);
}

/* Rules Banner Text */
.rules-banner-text {
    display: flex;
    flex-direction: column;
}

.rules-banner-text strong {
    font-size: 0.9375rem;
    color: var(--white);
}

.rules-banner-text span {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.rules-banner-icon.success {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.rules-banner-icon.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

/* ============================================
   HOMEPAGE - INSTITUTIONAL SHOWCASE ADJUSTMENTS
   ============================================ */
.institutional-main h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
}

.institutional-main > p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.institutional-badge svg {
    width: 48px;
    height: 48px;
    fill: var(--accent-gold);
    margin-bottom: var(--space-4);
}

.institutional-highlights .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.institutional-highlights .highlight-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--space-1);
}

.institutional-highlights .highlight-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (min-width: 576px) {
    .institutional-highlights {
        display: flex;
        gap: var(--space-4);
    }

    .institutional-highlights .highlight-item {
        flex: 1;
    }
}

.benefit-card h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: var(--space-2);
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.benefit-icon.gold svg {
    fill: var(--accent-gold);
}

/* ============================================
   HOMEPAGE - COMPARISON VISUAL ADJUSTMENTS
   ============================================ */
.comparison-icon-visual {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.comparison-icon-visual.warning {
    background: rgba(239, 68, 68, 0.1);
}

.comparison-icon-visual.warning svg {
    width: 28px;
    height: 28px;
    fill: #ef4444;
}

.comparison-icon-visual.success {
    background: rgba(16, 185, 129, 0.1);
}

.comparison-icon-visual.success svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-emerald);
}

.comparison-list li.negative {
    color: var(--gray-600);
}

.comparison-list li.negative svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    fill: #ef4444;
}

.comparison-list li.positive {
    color: var(--primary-dark);
}

.comparison-list li.positive svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    fill: var(--accent-emerald);
}

.comparison-bottom-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
}

.comparison-bottom-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-bottom-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.comparison-bottom-content h4 {
    color: var(--accent-emerald);
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
}

.comparison-bottom-content p {
    color: var(--gray-300);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .comparison-bottom-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================
   SIMPLIFIED HEADER - CENTERED LOGO
   ============================================ */
.site-header-centered {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
}

.site-header-centered .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-block: var(--space-5);
}

.logo-centered {
    font-size: clamp(1rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    text-align: center;
    display: block;
    width: 100%;
}

/* ============================================
   SIMPLIFIED FOOTER
   ============================================ */
.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-4);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

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

/* ============================================
   SIMPLIFIED 5-STAGE VISUAL
   ============================================ */
.simple-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}

.simple-stage {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    text-align: center;
    min-width: 100px;
    transition: all var(--transition-base);
}

.simple-stage:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-emerald);
    transform: translateY(-4px);
}

.simple-stage.final {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-color: var(--accent-gold);
}

.simple-stage.final:hover {
    border-color: var(--accent-gold-light);
}

.simple-stage-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin: 0 auto var(--space-3);
}

.simple-stage.final .simple-stage-number {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.simple-stage-info {
    margin-bottom: var(--space-2);
}

.simple-stage-multiplier {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.simple-stage.final .simple-stage-multiplier {
    color: var(--accent-gold);
}

.simple-stage-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.simple-stage-split {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
}

.simple-stage.final .simple-stage-split {
    color: var(--accent-gold);
    background: rgba(245, 158, 11, 0.1);
}

.simple-stage-arrow {
    color: var(--gray-500);
    display: flex;
    align-items: center;
}

.simple-stage-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .simple-stages {
        flex-direction: column;
        gap: var(--space-3);
    }

    .simple-stage {
        width: 100%;
        max-width: 200px;
        display: flex;
        align-items: center;
        gap: var(--space-4);
        text-align: left;
        padding: var(--space-4);
    }

    .simple-stage-number {
        margin: 0;
        min-width: 36px;
    }

    .simple-stage-info {
        margin-bottom: 0;
        flex: 1;
    }

    .simple-stage-arrow {
        transform: rotate(90deg);
    }
}

/* Example Box */
.example-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-10);
}

.example-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}

.example-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.example-deposit {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.example-progression {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.example-step {
    text-align: center;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.example-step.highlight {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
}

.example-stage {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
}

.example-step.highlight .example-stage {
    color: rgba(255, 255, 255, 0.8);
}

.example-capital {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.example-arrow {
    color: var(--gray-500);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .example-progression {
        flex-direction: column;
        gap: var(--space-2);
    }

    .example-step {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .example-stage {
        margin-bottom: 0;
    }

    .example-arrow {
        transform: rotate(90deg);
    }
}

/* The Only Rules */
.only-rules {
    text-align: center;
}

.only-rules h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
}

.only-rules-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.only-rule {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
}

.only-rule-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.only-rule-icon.target {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
}

.only-rule-icon.drawdown {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.only-rule-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.only-rule-content {
    text-align: left;
}

.only-rule-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.only-rule-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.only-rules-note {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin: 0;
    max-width: 500px;
    margin-inline: auto;
}

@media (max-width: 576px) {
    .only-rules-grid {
        flex-direction: column;
        align-items: center;
    }

    .only-rule {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table-wrap {
    overflow-x: auto;
    margin-bottom: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.compare-table thead {
    background: var(--primary-dark);
}

.compare-table th {
    padding: var(--space-4) var(--space-5);
    font-weight: 700;
    font-size: 0.9375rem;
    text-align: left;
    color: var(--white);
}

.compare-table th.feature-col {
    width: 25%;
    background: var(--primary-navy);
}

.compare-table th.prop-col {
    width: 37.5%;
    background: #7f1d1d;
}

.compare-table th.ift-col {
    width: 37.5%;
    background: var(--accent-emerald-hover);
}

.compare-table td {
    padding: var(--space-4) var(--space-5);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: var(--gray-50);
}

.compare-table td.feature-col {
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--gray-50);
}

.compare-table td.prop-col {
    color: var(--gray-600);
}

.compare-table td.prop-col.bad {
    position: relative;
    padding-left: var(--space-8);
}

.compare-table td.prop-col.bad::before {
    content: '✗';
    position: absolute;
    left: var(--space-3);
    color: #dc2626;
    font-weight: 700;
}

.compare-table td.ift-col {
    color: var(--primary-dark);
    font-weight: 500;
}

.compare-table td.ift-col.good {
    position: relative;
    padding-left: var(--space-8);
    background: rgba(16, 185, 129, 0.05);
}

.compare-table td.ift-col.good::before {
    content: '✓';
    position: absolute;
    left: var(--space-3);
    color: var(--accent-emerald);
    font-weight: 700;
}

@media (max-width: 768px) {
    .compare-table {
        font-size: 0.8125rem;
    }

    .compare-table th,
    .compare-table td {
        padding: var(--space-3);
    }
}

/* Honesty Section */
.honesty-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

.honesty-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.honesty-header svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-emerald);
}

.honesty-header h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin: 0;
}

.honesty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.honesty-item {
    text-align: center;
    padding: var(--space-4);
}

.honesty-item h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: var(--space-2);
}

.honesty-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MOBILE RESPONSIVENESS FIXES
   ============================================ */

/* Ensure media elements respect viewport */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Prevent sections from causing overflow */
.section,
.hero,
.site-footer {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Container mobile padding */
@media (max-width: 768px) {
    .container {
        padding-inline: var(--space-4);
    }

    /* Hero mobile */
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-card {
        padding: var(--space-4);
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Section headers mobile */
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        word-wrap: break-word;
    }

    .section-description {
        font-size: 0.9375rem;
    }

    /* Cards grid mobile */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    /* Table mobile - scrollable */
    .table-container {
        margin-inline: calc(-1 * var(--space-4));
        padding-inline: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-container table {
        font-size: 0.75rem;
        min-width: 480px;
    }

    .table-container table th,
    .table-container table td {
        padding: var(--space-2) var(--space-3);
        white-space: nowrap;
    }

    /* Simple stages mobile - already handled but ensure it works */
    .simple-stages {
        gap: var(--space-2);
    }

    /* Example box mobile */
    .example-box {
        padding: var(--space-4);
    }

    .example-deposit {
        font-size: 1.125rem;
    }

    /* Only rules mobile */
    .only-rule {
        padding: var(--space-4);
    }

    .only-rule-value {
        font-size: 1.5rem;
    }

    .only-rule-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .only-rule-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Institutional showcase mobile */
    .institutional-main {
        padding: var(--space-5);
    }

    .institutional-main h3 {
        font-size: 1.25rem;
    }

    /* Comparison table mobile - scrollable */
    .compare-table-wrap {
        margin-inline: calc(-1 * var(--space-4));
        padding-inline: var(--space-4);
        border-radius: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        font-size: 0.75rem;
        min-width: 480px;
    }

    .compare-table th,
    .compare-table td {
        padding: var(--space-2) var(--space-3);
    }

    .compare-table td.prop-col.bad,
    .compare-table td.ift-col.good {
        padding-left: var(--space-6);
    }

    .compare-table td.prop-col.bad::before,
    .compare-table td.ift-col.good::before {
        left: var(--space-2);
    }

    /* Honesty section mobile */
    .honesty-section {
        padding: var(--space-5);
    }

    .honesty-header h3 {
        font-size: 1.25rem;
    }

    .honesty-grid {
        gap: var(--space-4);
    }

    /* Footer mobile */
    .footer-disclaimer {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .footer-links {
        gap: var(--space-4);
    }

    /* Buttons mobile */
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding-inline: var(--space-3);
    }

    .hero h1 {
        font-size: 1.5rem;
    }

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

    .simple-stage {
        max-width: 100%;
    }

    .example-progression {
        gap: var(--space-1);
    }

    .example-step {
        padding: var(--space-2) var(--space-3);
    }

    .example-capital {
        font-size: 0.875rem;
    }

    .only-rules-grid {
        gap: var(--space-4);
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin-inline: auto;
    }

    .comparison-bottom-card {
        padding: var(--space-4);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-2);
        align-items: center;
    }
}

/* ============================================
   CRITICAL MOBILE OVERFLOW FIX
   ============================================ */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Force all direct children of body to respect viewport */
body > * {
    max-width: 100vw;
}

/* Ensure containers never exceed viewport */
.container {
    max-width: min(1280px, 100%);
    box-sizing: border-box;
}

/* Fix any potential overflow from pseudo-elements */
*::before, *::after {
    box-sizing: border-box;
}

/* All sections must stay within bounds */
.section,
.hero,
.site-header,
.site-footer {
    max-width: 100%;
    box-sizing: border-box;
}

/* Mobile-specific aggressive fixes */
@media (max-width: 768px) {
    /* Force everything to stay within bounds */
    html, body {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Fix table container negative margin issue */
    .table-container {
        margin-inline: 0 !important;
        width: 100%;
        max-width: 100%;
    }

    /* Tables must scroll within their container */
    table {
        display: block;
        overflow-x: auto;
        max-width: 100%;
    }

    /* Fix comparison table wrapper */
    .compare-table-wrap {
        margin-inline: 0;
        max-width: 100%;
    }

    /* Prevent any element from causing overflow */
    .section,
    .hero,
    .site-header,
    .site-footer,
    .container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Ensure text wraps properly */
    h1, h2, h3, h4, h5, h6, p, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Fix hero section */
    .hero::before {
        width: 100%;
        left: 0;
        right: 0;
    }

    /* Ensure flex containers wrap */
    .simple-stages {
        max-width: 100%;
    }

    /* Fix example box */
    .example-box {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Fix institutional showcase */
    .institutional-showcase {
        max-width: 100%;
    }

    /* Fix honesty grid */
    .honesty-grid {
        max-width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding-inline: var(--space-4);
    }

    /* Ensure all grids stay within bounds */
    .grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .stats-grid {
        max-width: 100%;
        width: 100%;
    }

    /* Fix any wide content */
    img, video, iframe, svg {
        max-width: 100%;
        height: auto;
    }
}

/* ============================================
   INTERACTIVE TIER SELECTOR & CAPITAL JOURNEY
   ============================================ */

/* Tier Selector Buttons */
.tier-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    padding: 0 var(--space-2);
}

.tier-btn {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: 60px;
}

.tier-btn:hover {
    border-color: var(--accent-emerald);
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.05);
}

.tier-btn.active {
    background: var(--accent-emerald);
    border-color: var(--accent-emerald);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.tier-btn.premium {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.tier-btn.premium:hover {
    background: rgba(245, 158, 11, 0.1);
}

.tier-btn.premium.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Capital Journey Container */
.capital-journey {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--gray-200);
    transition: transform 0.15s ease;
}

/* Journey Header */
.journey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    gap: var(--space-4);
}

.journey-deposit,
.journey-max {
    text-align: center;
    flex: 1;
}

.deposit-label,
.max-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.deposit-amount {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.max-amount {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-emerald);
}

.journey-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--accent-emerald);
}

/* Journey Stages */
.journey-stages {
    padding: var(--space-5);
}

.journey-stage {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.journey-stage:last-child {
    border-bottom: none;
}

.stage-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.journey-stage.final .stage-circle {
    background: var(--accent-emerald);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.stage-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stage-multiplier {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
}

.journey-stage.final .stage-multiplier {
    color: var(--accent-emerald);
}

.stage-capital {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.journey-stage.final .stage-capital {
    color: var(--accent-emerald);
    font-size: 1.25rem;
}

/* Stage Progress Bar */
.stage-bar {
    width: 60px;
    height: 6px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
}

.stage-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-emerald-light));
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.journey-stage.final .stage-bar {
    background: rgba(16, 185, 129, 0.2);
}

/* Journey Footer */
.journey-footer {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-4) var(--space-5);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.journey-stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 16px;
    height: 16px;
}

.stat-icon.profit {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
}

.stat-icon.shield {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.stat-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* Mobile-Identical Styles - Keep layout the same */
@media (max-width: 768px) {
    .tier-selector {
        gap: 0.375rem;
        margin-bottom: var(--space-6);
        padding: 0;
    }

    .tier-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
        min-width: 50px;
        border-radius: var(--radius-md);
    }

    .capital-journey {
        border-radius: var(--radius-xl);
        margin: 0 auto;
    }

    .journey-header {
        padding: var(--space-4);
        gap: var(--space-2);
    }

    .deposit-label,
    .max-label {
        font-size: 0.625rem;
    }

    .deposit-amount,
    .max-amount {
        font-size: 1.25rem;
    }

    .journey-arrow {
        width: 32px;
        height: 32px;
    }

    .journey-arrow svg {
        width: 18px;
        height: 18px;
    }

    .journey-stages {
        padding: var(--space-4);
    }

    .journey-stage {
        gap: var(--space-3);
        padding: var(--space-2) 0;
    }

    .stage-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8125rem;
    }

    .stage-multiplier {
        font-size: 0.75rem;
    }

    .stage-capital {
        font-size: 1rem;
    }

    .journey-stage.final .stage-capital {
        font-size: 1.125rem;
    }

    .stage-bar {
        width: 50px;
        height: 5px;
    }

    .journey-footer {
        gap: var(--space-4);
        padding: var(--space-3) var(--space-4);
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-icon {
        width: 24px;
        height: 24px;
    }

    .stat-icon svg {
        width: 14px;
        height: 14px;
    }

    .stat-text {
        font-size: 0.75rem;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .tier-btn {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
        min-width: 44px;
    }

    .deposit-amount,
    .max-amount {
        font-size: 1.125rem;
    }

    .stage-bar {
        width: 40px;
    }
}

/* ============================================
   PAGE-SPECIFIC FORMATTING UTILITIES
   ============================================ */

/* Text utility classes */
.text-emerald { color: var(--accent-emerald); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--gray-500); margin-top: 1rem; }

/* Card accent borders */
.card-accent-left { border-left: 4px solid; }
.card-accent-emerald { border-left-color: var(--accent-emerald); }
.card-accent-gold { border-left-color: var(--accent-gold); }

/* Stages Grid for How It Works */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

/* Make Stage 5 card span full width and centered */
.stages-grid .stage-card-premium {
    grid-column: 1 / -1;
    max-width: 450px;
    justify-self: center;
}

@media (max-width: 768px) {
    .stages-grid {
        grid-template-columns: 1fr;
    }

    .stages-grid .stage-card-premium {
        max-width: 100%;
    }
}

.stages-grid .stage-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.stage-card-premium {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.02), rgba(245, 158, 11, 0.05));
}

.stage-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.stage-number {
    width: 48px;
    height: 48px;
    background: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stage-number-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
}

.stage-info {
    flex: 1;
}

.stage-info h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.stage-multiplier {
    color: var(--accent-emerald);
    font-weight: 600;
    font-size: 0.875rem;
}

.stage-multiplier-gold {
    color: var(--accent-gold);
}

.stage-split {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
}

.stage-split-gold {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
}

.stage-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: var(--line-height-body);
    max-width: none; /* Override the general p max-width */
    flex: 1;
}

.stage-example {
    background: var(--gray-50);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.stage-example-gold {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
}

/* Split table styling */
.split-table {
    margin-top: var(--space-4);
}

.split-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
}

.split-row-last {
    border-bottom: none;
}

.split-stage {
    font-weight: 600;
    color: var(--gray-700);
}

.split-value {
    font-weight: 600;
    color: var(--accent-emerald);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.pricing-card-premium {
    border: 2px solid var(--accent-gold);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-5);
}

.pricing-header-premium {
    padding-top: var(--space-2);
}

.pricing-tier-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier-label-gold {
    color: var(--accent-gold);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0.5rem 0;
}

.pricing-deposit-note {
    color: var(--accent-emerald);
    font-weight: 600;
}

.pricing-deposit-note-gold {
    color: var(--accent-gold);
}

.pricing-details {
    flex: 1;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-row span:first-child {
    color: var(--gray-600);
}

.pricing-row span:last-child {
    font-weight: 600;
    color: var(--gray-800);
}

.pricing-row-highlight {
    background: rgba(16, 185, 129, 0.1);
    margin: 0 calc(var(--space-6) * -1);
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    border-bottom: none;
}

.pricing-row-highlight span {
    color: var(--accent-emerald) !important;
    font-weight: 700 !important;
}

.pricing-row-highlight-gold {
    background: rgba(245, 158, 11, 0.15);
    margin: 0 calc(var(--space-6) * -1);
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    border-bottom: none;
}

.pricing-row-highlight-gold span {
    color: var(--accent-gold) !important;
    font-weight: 700 !important;
}

.btn-full {
    width: 100%;
    margin-top: var(--space-5);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
}

/* ============================================
   INSTITUTIONAL TRACK PAGE COMPONENTS
   ============================================ */

/* Lead Text for Featured Cards */
.lead-text {
    font-size: 1.125rem;
    line-height: var(--line-height-body);
    margin-bottom: var(--space-4);
}

.lead-text:last-child {
    margin-bottom: 0;
}

/* Featured Card Styling */
.card-featured {
    padding: var(--space-8);
}

/* Qualification Cards */
.qualification-card {
    text-align: center;
    padding: var(--space-8);
}

.qualification-card-gold {
    border: 2px solid var(--accent-gold);
}

.qualification-card-emerald {
    border: 2px solid var(--accent-emerald);
}

.qualification-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.qualification-icon-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.qualification-icon-emerald {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
}

.qualification-icon svg {
    width: 40px;
    height: 40px;
}

.qualification-card h3 {
    margin-bottom: var(--space-4);
}

/* Sharpe Ratio Explanation Box */
.sharpe-explanation-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    margin-top: var(--space-8);
}

.sharpe-explanation-box h3 {
    color: var(--accent-gold);
    margin-bottom: var(--space-4);
}

.sharpe-explanation-box > p {
    color: var(--gray-200);
    font-size: 1.125rem;
    line-height: var(--line-height-body);
}

.sharpe-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.sharpe-level {
    text-align: center;
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.sharpe-level-inactive {
    opacity: 0.7;
}

.sharpe-level-active {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid var(--accent-gold);
}

.sharpe-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.sharpe-level-inactive .sharpe-value {
    color: var(--gray-400);
}

.sharpe-level:not(.sharpe-level-inactive):not(.sharpe-level-active) .sharpe-value {
    color: var(--white);
}

.sharpe-level-active .sharpe-value {
    color: var(--accent-gold);
}

.sharpe-label {
    font-size: 0.875rem;
}

.sharpe-level-inactive .sharpe-label {
    color: var(--gray-400);
}

.sharpe-level:not(.sharpe-level-inactive):not(.sharpe-level-active) .sharpe-label {
    color: var(--gray-300);
}

.sharpe-level-active .sharpe-label {
    color: var(--accent-gold-light);
}

/* Benefit Cards */
.benefit-card {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    flex-wrap: nowrap;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-gold {
    background: rgba(245, 158, 11, 0.15);
}

.benefit-icon-emerald {
    background: rgba(16, 185, 129, 0.15);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    margin-bottom: 0;
    flex: 1;
}

.benefit-card p {
    max-width: none;
    margin-bottom: 0;
}

/* Pathway Steps */
.pathway-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 800px;
    margin: 0 auto;
}

.pathway-step {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.pathway-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.pathway-number-emerald {
    background: var(--accent-emerald);
    color: white;
}

.pathway-number-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
}

.pathway-content {
    flex: 1;
}

.pathway-content .card {
    margin: 0;
}

.pathway-content .card h3 {
    margin-bottom: var(--space-3);
}

.pathway-content .card p {
    margin-bottom: 0;
}

.pathway-card-highlight {
    border: 2px solid var(--accent-gold);
}

.pathway-card-highlight h3 {
    color: var(--accent-gold);
}

/* About Section Content */
.about-content p {
    font-size: 1.125rem;
    line-height: var(--line-height-body);
}

.regulation-box {
    background: var(--gray-50);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    margin-top: var(--space-6);
}

.regulation-box h4 {
    margin-bottom: var(--space-4);
}

.regulation-list {
    color: var(--gray-600);
    margin: 0;
    padding-left: var(--space-5);
}

.regulation-list li {
    margin-bottom: var(--space-2);
}

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

/* CTA Button Gold Gradient */
.btn-gold-gradient {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
}

/* Hero Badge Gold Variant */
.hero-badge-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light)) !important;
    color: var(--primary-dark) !important;
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: background var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question.active {
    background: var(--gray-50);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: var(--line-height-body);
}

.faq-answer-content ol,
.faq-answer-content ul {
    margin: 1rem 0 0 1.25rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-emerald);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-emerald);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.telegram-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 2px solid var(--accent-emerald);
}

.telegram-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0088cc, #00a8e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.telegram-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.telegram-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.telegram-card p {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #00a8e8);
}

.telegram-note {
    margin-top: 1.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-features {
    margin-top: 3rem;
}

.contact-features h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-card-centered {
    text-align: center;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-card-icon-emerald {
    background: rgba(16, 185, 129, 0.15);
}

.feature-card-icon-gold {
    background: rgba(245, 158, 11, 0.15);
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-link {
    font-weight: 600;
}

.contact-note {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
