/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
    --bg-darker: #0d0708;
    --bg-dark: #120b0c;
    --bg-card: rgba(26, 15, 17, 0.65);
    --border-color: rgba(183, 110, 121, 0.15);
    --border-color-glow: rgba(255, 117, 151, 0.35);
    
    --color-primary: #ff7597;      /* Hot pink accent */
    --color-secondary: #b76e79;    /* Rose Gold */
    --color-pastel: #ffb7c5;       /* Soft pink */
    --color-plum: #3d2428;         /* Deep rich plum */
    --color-text-bright: #ffffff;
    --color-text-main: #e5d5d7;
    --color-text-muted: #a69295;
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(255, 117, 151, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-darker);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

ul {
    list-style: none;
}

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

/* ----------------------------------------------------
   AMBIENT GLOWS
   ---------------------------------------------------- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.glow-1 {
    top: 5%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

.glow-2 {
    top: 35%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
}

.glow-3 {
    bottom: 10%;
    left: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

/* ----------------------------------------------------
   TYPOGRAPHY & GRADIENTS
   ---------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-bright);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-pastel) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 117, 151, 0.1);
    border: 1px solid rgba(255, 117, 151, 0.2);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
    display: inline-block;
}

/* ----------------------------------------------------
   BUTTONS
   ---------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-bright);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 117, 151, 0.2);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.4;
    border-radius: inherit;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-glow:hover::after {
    opacity: 0.7;
    filter: blur(15px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-bright);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.icon-svg {
    width: 20px;
    height: 20px;
}

.w-full {
    width: 100%;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(13, 7, 8, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: var(--color-text-bright);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

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

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

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

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

.btn-nav {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 110;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-bright);
    transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 99;
    padding: 100px 2rem 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.mobile-btn-nav {
    margin-top: 1rem;
    width: 100%;
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-description strong {
    color: var(--color-pastel);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-bright);
    margin-bottom: 2px;
}

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

/* Hero Portrait & Badges */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* to allow floating badges */
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(255, 117, 151, 0.1) 0%, rgba(183, 110, 121, 0.05) 100%);
    padding: 10px;
    box-shadow: var(--shadow-premium);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 117, 151, 0.15);
    pointer-events: none;
    z-index: -1;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(26, 15, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color-glow);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-premium);
    animation: floatAnimation 4s ease-in-out infinite;
    z-index: 10;
}

.fb-icon {
    font-size: 1.5rem;
}

.fb-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

.fb-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-text-bright);
    font-weight: 700;
}

.badge-top {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 15%;
    right: -30px;
    animation-delay: 2s;
}

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

/* ----------------------------------------------------
   TICKER FEED
   ---------------------------------------------------- */
.ticker-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ticker-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------
   SECTION HEADERS
   ---------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------
   JOURNEY SECTION
   ---------------------------------------------------- */
.journey-section {
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-secondary) 15%, var(--color-primary) 85%, transparent);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: flex-end;
}

.timeline-item.right {
    left: 50%;
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    top: 2.8rem;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-darker);
    border: 3px solid var(--color-secondary);
    z-index: 10;
    box-shadow: 0 0 10px var(--color-secondary);
    transition: var(--transition-fast);
}

.timeline-item.right .timeline-dot {
    left: 0;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    background-color: var(--color-text-bright);
}

.timeline-content {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-glow);
    box-shadow: 0 10px 30px rgba(255, 117, 151, 0.1);
}

.timeline-date {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-item.right .timeline-date {
    color: var(--color-secondary);
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------
   FOREX SUITE SECTION
   ---------------------------------------------------- */
.suite-section {
    padding: 100px 0;
}

.suite-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.suite-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.suite-card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sch-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text-bright);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    box-shadow: 0 0 8px var(--color-secondary);
}

.sch-badge {
    background: rgba(183, 110, 121, 0.1);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* TradingView Chart Frame */
.tradingview-chart-wrapper {
    height: 480px;
    width: 100%;
}

/* Currency Converter Card */
.calc-body {
    padding: 2rem;
}

.calc-intro {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="number"], input[type="text"], input[type="email"], select, textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--color-text-bright);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    outline: none;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 117, 151, 0.15);
}

.input-prefix-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.input-prefix-wrapper input {
    padding-left: 2rem;
    width: 100%;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a69295' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.calc-result-box {
    background: rgba(255, 117, 151, 0.03);
    border: 1px dashed rgba(255, 117, 151, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin: 1.5rem 0;
}

.crb-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.25rem;
}

.crb-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.crb-rate {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: block;
    margin-top: 0.25rem;
}

/* Calendar Card */
.calendar-card {
    margin-top: 1rem;
}

.calendar-wrapper {
    padding: 1rem;
}

/* ----------------------------------------------------
   MENTORSHIP & SIGNAL SECTION
   ---------------------------------------------------- */
.mentorship-section {
    padding: 100px 0;
}

.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.mentor-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.mentor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 117, 151, 0.25);
    box-shadow: 0 15px 40px rgba(255, 117, 151, 0.08);
}

.mentor-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 117, 151, 0.1);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mentor-badge-hot {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-bright);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 117, 151, 0.3);
}

.mentor-card.highlighted {
    background: linear-gradient(180deg, rgba(38, 20, 23, 0.8) 0%, rgba(26, 15, 17, 0.8) 100%);
    border: 1px solid rgba(255, 117, 151, 0.3);
    box-shadow: 0 15px 40px rgba(255, 117, 151, 0.15);
}

.mentor-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mentor-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mentor-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    min-height: 72px;
}

.mentor-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.mentor-features li {
    font-size: 0.9rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mentor-price {
    margin-top: auto;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-bright);
}

.mentor-card.highlighted .price-val {
    color: var(--color-primary);
}

.price-period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.mentor-btn {
    width: 100%;
}

/* ----------------------------------------------------
   SOCIAL MEDIA SECTION
   ---------------------------------------------------- */
.social-section {
    padding: 100px 0;
    position: relative;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.social-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-bright);
    margin-bottom: 1.5rem;
}

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

.social-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.social-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    min-height: 40px;
}

.social-subscribers {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-bright);
    margin-bottom: 1.5rem;
}

.social-action-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.chevron-svg {
    width: 14px;
    height: 14px;
}

.social-card:hover .social-action-text {
    color: var(--color-text-bright);
}

/* Individual Platform Styling */
.telegram-card::before { background: #0088cc; }
.telegram-card .social-icon { background: rgba(0, 136, 204, 0.15); color: #0088cc; }
.telegram-card:hover { border-color: #0088cc; box-shadow: 0 10px 25px rgba(0, 136, 204, 0.15); }
.telegram-card:hover .social-action-text { color: #0088cc; }

.instagram-card::before { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.instagram-card .social-icon { background: rgba(220, 39, 67, 0.15); color: #dc2743; }
.instagram-card:hover { border-color: #dc2743; box-shadow: 0 10px 25px rgba(220, 39, 67, 0.15); }
.instagram-card:hover .social-action-text { color: #dc2743; }

.youtube-card::before { background: #ff0000; }
.youtube-card .social-icon { background: rgba(255, 0, 0, 0.15); color: #ff0000; }
.youtube-card:hover { border-color: #ff0000; box-shadow: 0 10px 25px rgba(255, 0, 0, 0.15); }
.youtube-card:hover .social-action-text { color: #ff0000; }

.tiktok-card::before { background: #010101; }
.tiktok-card .social-icon { background: rgba(255, 255, 255, 0.05); color: var(--color-text-bright); }
.tiktok-card:hover { border-color: var(--color-secondary); box-shadow: 0 10px 25px rgba(183, 110, 121, 0.15); }
.tiktok-card:hover .social-action-text { color: var(--color-secondary); }

/* ----------------------------------------------------
   APPLICATION FORM SECTION
   ---------------------------------------------------- */
.apply-section {
    padding: 100px 0;
    position: relative;
}

.form-container-box {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.form-section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 117, 151, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

textarea {
    resize: none;
}

.form-submit-btn {
    padding: 1rem 2rem;
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.footer {
    background: #070304;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    text-align: justify;
}

.disclaimer strong {
    color: var(--color-text-bright);
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* ----------------------------------------------------
   WHATSAPP WIDGET & SIMULATOR
   ---------------------------------------------------- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-text-bright);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.pulse-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-text-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
}

/* Popup Chat Window */
.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-dark);
    border: 1px solid var(--border-color-glow);
    box-shadow: var(--shadow-premium);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: var(--transition-smooth);
}

.whatsapp-popup.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, var(--color-plum) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wph-avatar {
    font-size: 1.8rem;
    background: rgba(255, 117, 151, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color-glow);
}

.wph-info {
    display: flex;
    flex-direction: column;
}

.wph-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-bright);
}

.wph-status {
    font-size: 0.75rem;
    color: var(--color-primary);
}

.whatsapp-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-close:hover {
    color: var(--color-text-bright);
}

.whatsapp-popup-body {
    padding: 1.5rem;
    background-color: var(--bg-darker);
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 15px 15px;
    height: 200px;
    overflow-y: auto;
}

.wp-message {
    max-width: 85%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    margin-bottom: 1rem;
}

.wp-message.received {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--color-text-main);
    border-bottom-left-radius: 2px;
}

.wpm-time {
    display: block;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-align: right;
    margin-top: 4px;
}

.whatsapp-popup-footer {
    padding: 1rem 1.25rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.whatsapp-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    width: 100%;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-send-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.send-arrow-svg {
    width: 16px;
    height: 16px;
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid, .apply-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .apply-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-row {
        justify-content: center;
    }
    
    .suite-grid {
        grid-template-columns: 1fr;
    }
    
    .mentorship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .timeline-line {
        left: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 4.5rem;
        padding-right: 1.5rem;
        justify-content: flex-start;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-dot {
        left: 2rem !important;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .mentorship-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .form-container-box {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-desc {
        margin: 1rem auto 0;
    }
    
    .footer-links-grid {
        justify-content: center;
    }
}

/* ----------------------------------------------------
   HEADER SOCIALS
   ---------------------------------------------------- */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-left: 1.5rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1.5rem;
}

.nav-social-icon {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-social-icon:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px var(--color-primary));
}

.nav-social-icon svg {
    width: 18px;
    height: 18px;
}

/* ----------------------------------------------------
   COMPACT JOURNEY GRID & TIMELINE
   ---------------------------------------------------- */
.journey-layout-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.journey-timeline-side {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--border-color);
    text-align: left;
}

.compact-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ct-item {
    position: relative;
}

.ct-dot {
    position: absolute;
    left: calc(-2rem - 6px);
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bg-darker);
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    transition: var(--transition-fast);
}

.ct-item:hover .ct-dot {
    transform: scale(1.3);
    background-color: var(--color-text-bright);
}

.ct-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.ct-date {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ct-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-bright);
}

.ct-text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Backstory Right Side Visual */
.journey-image-side {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.jis-header {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-bright);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.jis-dot {
    width: 6px;
    height: 6px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 6px #25D366;
}

.jis-caption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1.2rem;
    line-height: 1.4;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .journey-layout-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .nav-socials {
        display: none;
    }
}


/* Final mobile polish for hosted Mother of Forex site */
@media (max-width: 768px) {
    body { overflow-x: hidden; }
    .container { width: 100%; padding-left: 1rem; padding-right: 1rem; }
    .main-header { min-height: 74px; }
    .nav-container { min-height: 74px; padding-top: .7rem; padding-bottom: .7rem; }
    .logo-text { font-size: clamp(1.05rem, 6vw, 1.55rem); line-height: 1; }
    .logo-subtitle { font-size: .56rem; letter-spacing: .18em; }
    .btn-nav { display: none; }
    .hero-section { padding-top: 7.2rem; padding-bottom: 3.5rem; min-height: auto; }
    .hero-grid { gap: 2.5rem; }
    .hero-content { text-align: left; }
    .hero-badge { width: 100%; justify-content: center; font-size: .78rem; padding: .7rem 1rem; }
    .hero-title { font-size: clamp(2.55rem, 13vw, 3.55rem); line-height: 1.02; letter-spacing: 0; }
    .hero-description { font-size: .98rem; line-height: 1.75; margin-left: 0; margin-right: 0; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: .9rem; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; justify-content: center; min-height: 52px; }
    .stats-grid { grid-template-columns: 1fr; max-width: none; gap: .75rem; }
    .hero-image-container { width: 100%; }
    .hero-image-wrapper { max-width: 100%; padding: 8px; border-radius: 22px; overflow: hidden; }
    .hero-image { width: 100%; max-height: 520px; object-fit: cover; object-position: center top; border-radius: 18px; }
    .floating-card { position: static; width: 100%; margin-top: .85rem; transform: none !important; }
    .section { padding: 4rem 0; }
    .section-title { font-size: clamp(2rem, 9vw, 2.65rem); line-height: 1.08; }
    .section-subtitle { font-size: .96rem; line-height: 1.65; }
    .suite-grid,
    .journey-layout-grid,
    .apply-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .tradingview-widget-container,
    .chart-container { min-height: 360px; }
    .form-container-box { padding: 1.25rem; border-radius: 20px; }
    .whatsapp-widget { right: 14px; bottom: 14px; }
    .whatsapp-popup { width: calc(100vw - 28px); right: 0; bottom: 78px; max-height: min(560px, calc(100vh - 110px)); }
    .whatsapp-popup-body { max-height: 300px; }
}

@media (max-width: 420px) {
    .hero-title { font-size: clamp(2.25rem, 12vw, 3rem); }
    .hero-description { font-size: .94rem; }
    .section-title { font-size: 1.9rem; }
    .hero-image { max-height: 440px; }
    .whatsapp-send-btn { font-size: .82rem; padding-left: .8rem; padding-right: .8rem; }
}