/*
Theme Name: FX Mentor Hub
Theme URI: https://fxmentorhub.com
Author: FX Mentor Hub
Description: Professional Forex education and mentorship theme for youth and women.
Version: 1.0.0
Text Domain: fx-mentor-hub
*/

/* ==================== CSS VARIABLES ==================== */
:root {
    --color-black: #0a0a0a;
    --color-dark: #111111;
    --color-gray: #1a1a1a;
    --color-medium-gray: #2d3338;
    --color-header: #1e2428;
    --color-light-gray: #9ca3af;
    --color-gold: #d4af37;
    --color-gold-light: #f0d060;
    --color-gold-dark: #b8960c;
    --color-white: #ffffff;
    --color-green: #10b981;
    --color-red: #ef4444;
    --color-cyan: #22d3ee;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --header-height: 70px;
    --ticker-height: 36px;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-white);
    background: var(--color-black);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--color-dark);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-gold);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    color: var(--color-black);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
    }
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

/* ==================== FOREX TICKER ==================== */
.forex-ticker {
    background: linear-gradient(90deg, var(--color-gray), var(--color-dark), var(--color-gray));
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--ticker-height);
}

.ticker-content {
    display: flex;
    align-items: center;
    height: var(--ticker-height);
    animation: ticker-scroll 35s linear infinite;
    white-space: nowrap;
    padding: 0 20px;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 50px;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.ticker-pair {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ticker-rate {
    color: var(--color-white);
    font-weight: 500;
}

.ticker-change {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.ticker-change.up {
    color: var(--color-green);
    background: rgba(16, 185, 129, 0.15);
}

.ticker-change.down {
    color: var(--color-red);
    background: rgba(239, 68, 68, 0.15);
}

.ticker-loading {
    color: var(--color-light-gray);
    font-size: 0.8rem;
    padding: 0 2rem;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: var(--ticker-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #2d3338 0%, #1a1d20 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #252a2e 0%, #151719 100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: var(--header-height);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    border-radius: 6px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.site-logo:hover img {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-branding {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text .gold {
    color: var(--color-gold);
}

.tagline {
    font-family: var(--font-secondary);
    font-size: 0.65rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
}

.nav-menu li a.active {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.12);
}

/* Header CTA */
.header-cta {
    flex-shrink: 0;
}

.header-cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -6px;
}

.hamburger-inner::after {
    content: '';
    top: 6px;
}

.menu-toggle.active .hamburger-inner {
    background: transparent;
}

.menu-toggle.active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

/* ==================== RESPONSIVE HEADER ==================== */
@media (max-width: 1024px) {
    .nav-menu li a {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--color-gray) 0%, var(--color-black) 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 1.5rem 2rem;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li a {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
        border-radius: 0;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: rgba(212, 175, 55, 0.1);
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --ticker-height: 34px;
    }

    .header-container {
        padding: 0 1rem;
    }

    .site-logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .tagline {
        display: none;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: calc(var(--ticker-height) + var(--header-height) + 2rem);
    padding-bottom: 4rem;
    overflow: hidden;
    background: var(--color-black);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-light-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero .btn-group {
    justify-content: center;
}

/* ==================== SECTION HEADER ==================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-light-gray);
    font-size: 1.05rem;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--color-gray);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Offering Cards */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offering-card {
    background: var(--color-gray);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.offering-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.offering-card h4 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.offering-card p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.program-card {
    background: var(--color-gray);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.program-card.featured {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--color-gray) 30%);
}

.program-level {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.program-card h3 {
    margin-bottom: 0.75rem;
}

.program-card>p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.program-duration {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.program-features {
    margin-top: 1rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

.program-features li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: bold;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* ==================== CHURCHILL QUOTE ==================== */
.churchill-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.churchill-quote blockquote {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.churchill-quote cite {
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
}

/* ==================== FUNDED SECTION ==================== */
.funded-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3.5rem 2rem;
}

.funded-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
}

.funded-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.profit-split {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.profit-item {
    text-align: center;
}

.profit-item .number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.profit-item .label {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ==================== APPROACH GRID ==================== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.approach-item {
    text-align: center;
    padding: 1.5rem;
}

.approach-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-item h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.approach-item p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

/* ==================== WOMEN SECTION ==================== */
.women-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.women-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.women-text .lead {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 1rem;
}

.women-text p {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

.women-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.women-feature {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-gold);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .women-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==================== WHY SECTION ==================== */
.why-section {
    background: var(--color-black);
}

.why-list {
    max-width: 700px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-item:last-child {
    border-bottom: none;
}

.why-item-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.why-item h4 {
    color: var(--color-white);
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.why-item p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

/* ==================== MOVEMENT SECTION ==================== */
.movement-section {
    background: linear-gradient(135deg, var(--color-gray), var(--color-dark));
    text-align: center;
}

.movement-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.movement-title span {
    color: var(--color-gold);
}

.movement-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.movement-value h4 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.movement-value p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

.movement-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .movement-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==================== VIDEOS GRID ==================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    background: var(--color-gray);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--color-dark), var(--color-gray));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
    background: var(--color-gold);
}

.video-info {
    padding: 1.25rem;
}

.video-info h4 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.video-info p {
    color: var(--color-light-gray);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-white);
    padding-right: 1rem;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--color-gold);
    color: var(--color-black);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding-bottom: 1.5rem;
}

.faq-answer-content p {
    color: var(--color-light-gray);
    line-height: 1.7;
}

/* ==================== LOCATIONS ==================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    background: var(--color-gray);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-card h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.location-card .address {
    color: var(--color-light-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-card .phone {
    color: var(--color-white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    text-align: center;
}

.cta-content h2 {
    color: var(--color-black);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: var(--color-black);
    color: var(--color-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    background: var(--color-dark);
}

.cta-section .btn-secondary {
    color: var(--color-black);
    border-color: var(--color-black);
}

.cta-section .btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-gold);
}

.cta-section .btn-group {
    justify-content: center;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--color-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--color-light-gray);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    color: var(--color-light-gray);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ==================== PAGE TEMPLATES ==================== */
.page-header {
    padding-top: calc(var(--ticker-height) + var(--header-height) + 4rem);
    padding-bottom: 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-gray) 0%, var(--color-black) 100%);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--color-light-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
}

/* ==================== UTILITY CLASSES ==================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.body.menu-open {
    overflow: hidden;
}

/* Story content */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    color: var(--color-light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.3rem !important;
    margin-top: 1.5rem;
}

/* ==================== HERO STATS ==================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-light-gray);
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ==================== LIVE RATES WIDGET ==================== */
.live-rates-widget {
    background: var(--color-gray);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.widget-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
}

.update-time {
    font-size: 0.8rem;
    color: var(--color-light-gray);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.rate-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rate-card:hover {
    background: rgba(212, 175, 55, 0.08);
}

.rate-pair {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rate-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.rate-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

.rate-change.up {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-green);
}

.rate-change.down {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-red);
}

.rate-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-light-gray);
    padding: 2rem;
}

/* ==================== MARKET OVERVIEW ==================== */
.market-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.market-card {
    background: var(--color-gray);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.market-card h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--color-gold);
}

.currency-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.currency-bar .currency {
    width: 40px;
    font-weight: 600;
    font-size: 0.85rem;
}

.currency-bar .bar-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.currency-bar .bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.currency-bar .bar-fill.strong {
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.currency-bar .bar-fill.weak {
    background: var(--color-red);
}

.mover-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mover-item:last-child {
    border-bottom: none;
}

.mover-pair {
    font-weight: 600;
    font-size: 0.9rem;
}

.mover-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.mover-change.up {
    color: var(--color-green);
}

.mover-change.down {
    color: var(--color-red);
}

.session-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.session-item:last-child {
    border-bottom: none;
}

.session-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.session-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.session-status.open {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-green);
}

.session-status.closed {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-light-gray);
}

@media (max-width: 900px) {
    .market-overview {
        grid-template-columns: 1fr;
    }
}

/* ==================== CHURCHILL SECTION ==================== */
.churchill-section {
    overflow: hidden;
}

.churchill-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.churchill-image {
    text-align: center;
}

.churchill-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    object-fit: cover;
}

.churchill-name {
    margin-top: 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.churchill-text {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
}

.churchill-text blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.churchill-text cite {
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .churchill-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .churchill-image img {
        width: 150px;
        height: 150px;
    }
}

/* ==================== BANNER SECTION ==================== */
.banner-section {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    padding: 3rem 0;
}

.banner-content {
    text-align: center;
}

.banner-content h2 {
    color: var(--color-black);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.banner-content p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.05rem;
}

/* ==================== FUNDED ACCOUNT SECTION ==================== */
.funded-account-section {
    background: var(--color-black);
}

.profit-divider {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    font-weight: 300;
}

/* ==================== WOMEN FEATURES GRID ==================== */
.women-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.women-feature-card {
    background: var(--color-gray);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.women-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.women-feature-card .feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.women-feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.women-feature-card p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .women-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .women-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: calc(var(--ticker-height) + var(--header-height) + 3rem);
    padding-bottom: 5rem;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--color-gold);
}

.breadcrumbs .separator {
    color: var(--color-light-gray);
}

.breadcrumbs .current {
    color: var(--color-white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-light-gray);
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    color: var(--color-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
}

.story-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--color-light-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-quote {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 12px 12px 0;
}

.quote-mark {
    color: var(--color-gold);
    font-size: 2rem;
    line-height: 1;
}

.story-quote p {
    color: var(--color-gold);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.mini-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-gold);
}

.stat-txt {
    font-size: 0.8rem;
    color: var(--color-light-gray);
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mission Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mv-card {
    position: relative;
    background: var(--color-gray);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.mv-icon-wrapper {
    margin-bottom: 1.5rem;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.mv-content h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.mv-content p {
    color: var(--color-light-gray);
    line-height: 1.7;
}

.mv-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* Churchill Premium Section */
.churchill-premium {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.churchill-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.churchill-img-col {
    text-align: center;
}

.churchill-photo-frame {
    position: relative;
    display: inline-block;
}

.churchill-photo-frame img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--color-gold);
    object-fit: cover;
}

.photo-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    z-index: -1;
}

.churchill-info {
    margin-top: 1.5rem;
}

.churchill-info h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.churchill-info span {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.churchill-quote-col {
    position: relative;
}

.quote-decoration .big-quote {
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: -2rem;
}

.churchill-quote-col blockquote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-line {
    width: 50px;
    height: 3px;
    background: var(--color-gold);
}

.quote-footer cite {
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .churchill-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .churchill-quote-col blockquote {
        font-size: 1.15rem;
    }

    .quote-footer {
        justify-content: center;
    }
}

/* Values Premium Grid */
.values-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.value-premium-card {
    background: var(--color-gray);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-premium-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.25);
}

.value-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.value-premium-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.value-premium-card p {
    color: var(--color-light-gray);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .values-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .values-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Philosophy Timeline */
.philosophy-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
    padding-left: 2rem;
    margin-left: 1.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 1.5rem;
    width: 13px;
    height: 13px;
    background: var(--color-gold);
    border-radius: 50%;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

.philosophy-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-icon {
    font-size: 2rem;
}

.philosophy-highlight p {
    color: var(--color-gold);
    font-size: 1.05rem;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-box {
    display: flex;
    gap: 1.5rem;
    background: var(--color-gray);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.5;
    line-height: 1;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Premium */
.cta-premium {
    text-align: center;
}

/* ==================== FUTURISTIC FOREX HOMEPAGE ==================== */

/* Hero FX */
.hero-fx {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--ticker-height) + var(--header-height) + 2rem);
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #151820 50%, #0d1117 100%);
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-fx .container {
    position: relative;
    z-index: 2;
}

.hero-fx .hero-content {
    max-width: 700px;
}

.hero-badge-fx {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-fx h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-fx .hero-desc {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Mini Rates */
.hero-rates {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mini-rate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.75rem;
}

.mini-rate .pair {
    color: var(--color-gold);
    font-weight: 600;
}

.mini-rate .value {
    color: var(--color-white);
}

.mini-rate .change {
    font-weight: 600;
    font-size: 0.7rem;
}

.mini-rate .change.up {
    color: var(--color-green);
}

.mini-rate .change.down {
    color: var(--color-red);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(90deg, var(--color-gray), var(--color-dark));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.25rem 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-val {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-lbl {
    font-size: 0.7rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .stats-row {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }
}

/* Section Header FX */
.section-header-fx {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--color-gold);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-intro {
    max-width: 650px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--color-light-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.highlight-box {
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
    color: var(--color-gold);
    text-align: center;
    font-size: 0.95rem;
}

/* Churchill Row */
.churchill-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.churchill-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    object-fit: cover;
}

.churchill-quote {
    flex: 1;
}

.churchill-quote .quote-mark {
    font-size: 2.5rem;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
}

.churchill-quote blockquote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.churchill-quote cite {
    color: var(--color-gold);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .churchill-row {
        flex-direction: column;
        text-align: center;
    }
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.offer-card {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.offer-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.offer-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.offer-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.offer-card p {
    font-size: 0.75rem;
    color: var(--color-light-gray);
}

@media (max-width: 900px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Banner FX */
.banner-fx {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 0;
    text-align: center;
}

.banner-fx h3 {
    color: var(--color-black);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.banner-fx p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-num {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.5;
}

.why-card h4 {
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.why-card p {
    font-size: 0.8rem;
    color: var(--color-light-gray);
}

@media (max-width: 700px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Program Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.program-card {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.program-card.featured {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
}

.program-card .lvl {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.program-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.program-card p {
    font-size: 0.8rem;
    color: var(--color-light-gray);
    margin-bottom: 0.75rem;
}

.program-card .duration {
    font-size: 0.7rem;
    color: var(--color-gold);
}

@media (max-width: 700px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

/* Funded Box */
.funded-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--color-gray);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.funded-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.funded-amt {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profit-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.profit-box {
    text-align: center;
}

.profit-box .pct {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
}

.profit-box .who {
    font-size: 0.75rem;
    color: var(--color-light-gray);
}

.profit-row .divider {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
}

/* Women Grid */
.women-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.women-card {
    background: var(--color-gray);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.women-card span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .women-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.location-card {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.location-card p {
    font-size: 0.85rem;
    color: var(--color-light-gray);
    line-height: 1.6;
}

.location-card .phone {
    margin-top: 0.75rem;
    color: var(--color-white);
}

@media (max-width: 600px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Box */
.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

/* ==================== ABOUT PAGE SPECIFIC ==================== */

/* Page Hero */
.page-hero-fx {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: calc(var(--ticker-height) + var(--header-height) + 2rem);
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #151820 50%, #0d1117 100%);
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-fx h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.page-hero-fx>p {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

/* About Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text-col p {
    color: var(--color-light-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-stats-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .story-stats-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        flex: 1;
        min-width: 120px;
    }
}

/* Mission Vision Row */
.mv-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.mv-box {
    background: var(--color-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mv-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.mv-box h3 {
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.mv-box p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .mv-row {
        grid-template-columns: 1fr;
    }
}

/* Values Row */
.values-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.value-box {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-box span {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.value-box h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.value-box p {
    font-size: 0.75rem;
    color: var(--color-light-gray);
}

@media (max-width: 900px) {
    .values-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .values-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-item {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phi-num {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.5;
}

.philosophy-item h4 {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.philosophy-item p {
    font-size: 0.8rem;
    color: var(--color-light-gray);
}

@media (max-width: 800px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

/* Choose Grid */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.choose-card {
    background: var(--color-gray);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.choose-num {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.5;
}

.choose-card h4 {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.choose-card p {
    font-size: 0.8rem;
    color: var(--color-light-gray);
}

@media (max-width: 800px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== ENHANCED HOMEPAGE STYLES ==================== */

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }
}

/* Stats Strip */
.stats-strip {
    background: linear-gradient(90deg, #1a1d20, #252a2e);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stats-flex .stat {
    text-align: center;
}

.stats-flex .num {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stats-flex .lbl {
    font-size: 0.75rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-flex .divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .stats-flex .divider {
        display: none;
    }

    .stats-flex {
        gap: 2rem;
    }
}

/* Two Column Section */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.col-text h2 {
    margin-top: 0.5rem;
}

.col-text p {
    color: var(--color-light-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.col-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.highlight-quote {
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--color-gold);
    color: var(--color-gold);
    margin-top: 1.5rem;
    border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
    .two-col-section {
        grid-template-columns: 1fr;
    }

    .col-image {
        order: -1;
    }
}

/* Churchill Feature */
.churchill-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.churchill-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--color-gold);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.churchill-content .quote-icon {
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
}

.churchill-content blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0.5rem 0 1rem;
}

.churchill-info .name {
    display: block;
    color: var(--color-gold);
    font-weight: 700;
    font-family: var(--font-primary);
}

.churchill-info .title {
    font-size: 0.85rem;
    color: var(--color-light-gray);
}

@media (max-width: 600px) {
    .churchill-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .churchill-img img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
}

/* Live Mini Rates in Hero */
.live-mini-rates {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.live-mini-rates .mini-rate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
}

.live-mini-rates .pair {
    color: var(--color-gold);
    font-weight: 600;
}

.live-mini-rates .val {
    color: var(--color-white);
}

.live-mini-rates .chg {
    font-weight: 600;
    font-size: 0.7rem;
}

.live-mini-rates .chg.up {
    color: var(--color-green);
}

.live-mini-rates .chg.down {
    color: var(--color-red);
}

/* Gold Banner */
.gold-banner {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    padding: 2.5rem 0;
    text-align: center;
}

.gold-banner h3 {
    color: var(--color-black);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gold-banner p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 1rem;
}