@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette - Modern Dark Fintech */
    --bg-dark: #060f25;
    --bg-surface: #091535;
    --bg-alt: #0b183b;
    --bg-card: rgba(17, 24, 39, 0.65);
    --bg-card-hover: rgba(26, 36, 56, 0.85);

    /* Primary Accent: Electric Cyan & Blue Gradient */
    --primary-accent: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);

    /* Secondary Accent: Emerald Green (Growth / Wealth) */
    --emerald-accent: #10b981;
    --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);

    /* Luxury Gold */
    --gold-accent: #eab308;

    /* Purple Accents */
    --purple-accent: #8b5cf6;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-active: rgba(59, 130, 246, 0.3);

    /* Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Page Preloader */
#page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #060f25;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(16, 185, 129, 0.15);
    border-top-color: var(--emerald-accent);
    border-radius: 50%;
    animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
    position: relative;
}

/* Alternating Section Backgrounds - Smooth Blended Transitions */
.section-dark {
    background-color: var(--bg-dark);
}

.section-surface {
    background:
        radial-gradient(ellipse 90% 60% at 50% 50%, rgba(37, 99, 235, 0.16) 0%, transparent 80%),
        linear-gradient(180deg, #060f25 0%, #0a1738 20%, #0a1738 80%, #060f25 100%);
    border-top: none;
    border-bottom: none;
}

.section-alt {
    background:
        radial-gradient(ellipse 90% 60% at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 80%),
        linear-gradient(180deg, #060f25 0%, #0b183b 20%, #0b183b 80%, #060f25 100%);
    border-top: none;
    border-bottom: none;
}

/* Compact Non-Sticky Header Navigation Bar */
.navbar {
    position: relative;
    z-index: 100;
    padding: 10px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo img {
    height: 60px;
    max-height: 75px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Top Logo Header */
.top-header {
    padding: 20px 0 0 0;
    background-color: var(--bg-dark);
}

.top-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Slide-Out Drawer Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 12, 0.85);
    backdrop-filter: blur(16px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #090e17;
    border-left: 1px solid var(--border-subtle);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-drawer {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mobile-drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    display: block;
    padding: 6px 0;
}

.mobile-nav-link:hover {
    color: #ffffff;
}

.mobile-drawer-btn {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-dark);
    padding-top: 10px;
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-top: 3rem;
    margin-bottom: .5rem;
    line-height: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-btn-main {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.hero-btn-secondary {
    padding: 16px 28px;
    font-size: 1.05rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 32px;
    max-width: 640px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-media {
    margin-top: -40px;
}

/* Founder Circular Blue Spotlight Glow */
.founder-spotlight {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.founder-spotlight-glow {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: min(380px, 85vw);
    height: min(380px, 85vw);
    max-width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 69, 255, 0.6) 0%, rgba(0, 38, 163, 0.35) 55%, rgba(0, 38, 163, 0) 75%);
    opacity: 0.6;
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}

.founder-spotlight img {
    position: relative;
    z-index: 1;
    max-height: 560px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
}

/* Stats Row */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item h3 {
    font-size: 1.8rem;
    color: #ffffff;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Title */
.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-title span {
    color: var(--emerald-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title h2 {
    font-size: 2.5rem;
    margin: 12px 0 16px;
    color: #ffffff;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Glass Card Component */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-emerald {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    font-weight: 800;
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.25);
    transition: all 0.25s ease;
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Curriculum Card */
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Nakshatra Card Styling */
.nakshatra-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 24px;
}

.nakshatra-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nakshatra-icon {
    margin-bottom: 0 !important;
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
}

.nakshatra-title {
    margin-bottom: 4px;
    font-size: 1.35rem;
}

.nakshatra-sub {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0;
}

.nakshatra-body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.94rem;
}

.nakshatra-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.nakshatra-body li i {
    color: var(--emerald-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Astro Trading Setups Card */
.astro-setups-card {
    background:
        radial-gradient(circle at 10% 20%, rgba(234, 179, 8, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #030816 0%, #07112b 50%, #040a1d 100%);
    border: 1px solid rgba(59, 130, 246, 0.28);
    padding: 44px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.astro-setups-card:hover {
    transform: none;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
    border-color: rgba(59, 130, 246, 0.28);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.astro-setups-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.astro-setups-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    line-height: 0.95;
}

.gold-gradient-text {
    background: linear-gradient(180deg, #fff3c4 0%, #f59e0b 45%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.white-text-sub {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-top: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    font-family: var(--font-heading);
}

.astro-setups-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.astro-setups-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.astro-setups-list li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(4px);
}

.astro-setups-list li i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(16, 185, 129, 0.15);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Certified Seal & Right Column */
.hms-certified-seal {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    position: relative;
    box-shadow: none;
    margin-bottom: 24px;
}

.seal-icon {
    font-size: 3.6rem;
    color: #f59e0b;
    margin-bottom: 12px;
    filter: none;
}

.seal-text {
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.4;
    margin: 0;
}

.gold-tag {
    color: #f59e0b;
    font-weight: 900;
}

.astro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 36px;
    margin-top: 32px;
    text-align: center;
}

.astro-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.astro-feature-item .feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(234, 179, 8, 0.45);
    background: rgba(234, 179, 8, 0.08);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: none;
    transition: all 0.25s ease;
}

.astro-feature-item:hover .feature-icon {
    transform: scale(1.08);
    border-color: #f59e0b;
    background: rgba(234, 179, 8, 0.15);
    box-shadow: none;
}

.astro-feature-item span {
    font-size: 0.82rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

/* Exclusive HMS Tools Included Banner */
.hms-tools-wrapper {
    margin-top: 110px;
}

.hms-tools-banner-header {
    text-align: center;
    margin-bottom: 32px;
}

.hms-tools-banner-header h2 {
    font-size: 2.4rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hms-tools-subtitle {
    color: var(--text-muted);
    font-size: 0.96rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}

.hms-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.hms-tool-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hms-tool-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.tool-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hms-tool-item:hover .tool-icon-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.2) 100%);
    color: #ffffff;
    border-color: #60a5fa;
}

.tool-info h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.tool-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0;
}

/* Contact CTA Action Strip */
.hms-cta-action-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(4, 10, 26, 0.65);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 18px;
    padding: 18px 24px;
    backdrop-filter: blur(10px);
}

.cta-strip-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1.02rem;
}

.cta-strip-title i {
    color: #f59e0b;
    font-size: 1.3rem;
    background: rgba(245, 158, 11, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.cta-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-btn-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366 !important;
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff !important;
}

.cta-btn-call {
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 18px rgba(255, 87, 34, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
    background: linear-gradient(135deg, #ff6e40 0%, #e64a19 100%);
}

/* ==========================================================================
   Why HMS Masterclass Section Styles
   ========================================================================== */
#why-hms {
    padding-top: 50px;
}

.why-hms-card {
    background: linear-gradient(135deg, #0a142e 0%, #080f24 100%);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.why-hms-top-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.why-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.25s ease;
}

.why-feature-pill i {
    color: var(--emerald-accent);
    font-size: 1.1rem;
}

.why-feature-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
}

.duration-highlight-box {
    text-align: center;
    margin: 32px 0 40px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 16px;
}

.duration-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 8px;
}

.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 1.05rem;
    color: #ffffff;
}

.duration-badge span {
    color: #94a3b8;
    font-weight: 600;
}

.duration-badge i {
    color: #60a5fa;
    font-size: 0.9rem;
}

.duration-badge strong {
    color: #60a5fa;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.why-hms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.why-info-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.25s ease;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.why-info-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.25);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.why-block-title {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-block-title i {
    color: #60a5fa;
}

.why-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.98rem;
    font-weight: 500;
}

.why-info-list li i {
    color: var(--emerald-accent);
    font-size: 0.9rem;
    background: rgba(16, 185, 129, 0.12);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-hms-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    margin: 36px 0;
}

.why-hms-outcomes {
    text-align: center;
}

.outcomes-heading {
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 28px;
}

.outcomes-heading span {
    color: #60a5fa;
    font-weight: 800;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.outcome-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.outcome-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.outcome-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #60a5fa;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.outcome-card p {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

/* ==========================================================================
   Bonus Day 4 Section Styles
   ========================================================================== */
#bonus {
    padding-top: 50px;
}

.bonus-card {
    background: radial-gradient(ellipse 90% 70% at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, #09132e 0%, #0d1a3e 50%, #070e24 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.bonus-badge {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bonus-title {
    font-size: 2.3rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.bonus-speaker-tag {
    color: #ffcc6d;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.bonus-speaker-tag span {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 204, 109, 0.5);
    text-underline-offset: 4px;
}

.bonus-intro {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 28px;
    line-height: 1.55;
}

.bonus-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bonus-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 18px;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.bonus-feature-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(4px);
}

.feature-bullet {
    color: var(--emerald-accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
}

.feature-text span {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Speaker Spotlight (Natural Portrait Cutout + Glow + Name Badge) */
.speaker-spotlight-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speaker-spotlight {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 360px;
}

.speaker-spotlight-glow {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(37, 99, 235, 0.15) 55%, rgba(0, 0, 0, 0) 75%);
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
}

.speaker-portrait {
    position: relative;
    z-index: 1;
    max-height: 440px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.speaker-spotlight:hover .speaker-portrait {
    transform: translateY(-4px) scale(1.02);
}

.speaker-name-badge {
    position: relative;
    z-index: 2;
    margin-top: -24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(7, 10, 18, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 16px;
    padding: 12px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    width: max-content;
    max-width: 95%;
}

.speaker-name-badge h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.speaker-name-badge p {
    color: #60a5fa;
    font-size: 0.84rem;
    font-weight: 600;
    margin: 0;
}

/* ==========================================================================
   Who Should Join Section Styles (Card Layout)
   ========================================================================== */
.who-join-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.who-join-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.who-right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-enroll-btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
    justify-content: center;
}

.who-card {
    padding: 32px 28px;
}

.who-card-pos {
    border-color: rgba(16, 185, 129, 0.25);
}

.who-card-pos:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.who-card-neg {
    border-color: rgba(239, 68, 68, 0.22);
}

.who-card-neg:hover {
    border-color: rgba(239, 68, 68, 0.45);
}

.who-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.who-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pos-wrap {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.neg-wrap {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.who-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin: 0;
}

.who-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.who-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.97rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.who-card-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.who-card-list li span {
    color: #e2e8f0;
    font-weight: 600;
}

.pos-icon {
    color: #10b981;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.4));
    font-size: 1.1rem;
    flex-shrink: 0;
}

.neg-icon {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 900;
    filter: drop-shadow(0 2px 6px rgba(239, 68, 68, 0.4));
    flex-shrink: 0;
}

.qr-code-box {
    background: #ffffff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease;
}

.qr-code-box:hover {
    transform: scale(1.04);
}

.qr-code-img {
    width: 140px;
    height: 140px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.qr-subtext {
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-top: 14px;
}

.qr-label {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 4px;
}

.strategy-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald-accent);
    border: 1px solid rgba(16, 185, 129, 0.25);
    margin-bottom: 12px;
}

/* Tools Banner */
.tools-wrapper {
    background: rgba(7, 9, 14, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.tool-card {
    background: rgba(15, 20, 28, 0.8);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

/* Bonus Day 4 Section */
.bonus-card {
    background: rgba(15, 18, 30, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.comp-card {
    padding: 36px;
    border-radius: var(--radius-md);
}

.comp-card.good {
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comp-card.bad {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 700;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.98rem;
    color: var(--text-secondary);
}

/* Modern Pricing Card */
.pricing-card {
    background: linear-gradient(180deg, rgba(15, 21, 32, 0.95) 0%, rgba(9, 12, 19, 0.95) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
    position: relative;
    max-width: 580px;
    margin: 0 auto;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald-gradient);
    color: #ffffff;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-original {
    font-size: 1.3rem;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-top: 12px;
}

.price-current {
    font-size: 3.6rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #ffffff;
    margin: 6px 0;
}

.price-gst {
    font-size: 0.9rem;
    color: var(--emerald-accent);
    margin-bottom: 24px;
    font-weight: 600;
}

.pricing-features {
    text-align: left;
    margin: 28px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Last Chance To Enroll Section */
.last-chance-section {
    padding: 40px 0;
}

.last-chance-card {
    background: linear-gradient(135deg, rgba(16, 25, 45, 0.95) 0%, rgba(10, 16, 30, 0.98) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: none;
    transition: all 0.3s ease;
}

@keyframes cardFadeHighlight {
    0% {
        opacity: 0.2;
        transform: scale(0.94);
        border-color: rgba(16, 185, 129, 0.9);
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
        border-color: rgba(16, 185, 129, 1);
        box-shadow: 0 0 50px rgba(16, 185, 129, 0.6);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        border-color: rgba(16, 185, 129, 0.4);
        box-shadow: none;
    }
}

.last-chance-card.highlight-fade {
    animation: cardFadeHighlight 0.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.last-chance-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.last-chance-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-chance-pricing {
    background: rgba(6, 15, 37, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.lc-price-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lc-price-label {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.lc-old-price {
    font-size: 1.25rem;
    color: var(--text-dim);
    text-decoration: line-through;
    font-weight: 600;
}

.lc-special-label {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
}

.lc-price-group {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.lc-strike-inline {
    font-size: 1.25rem;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.85;
    font-weight: 600;
}

.lc-current-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--emerald-accent);
    line-height: 1;
}

.lc-gst {
    font-size: 1.1rem;
    color: #f59e0b;
    font-weight: 800;
}

.last-chance-btn {
    width: 100%;
    max-width: 480px;
    padding: 18px 32px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.last-chance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.6);
}

/* Testimonials Slider */
.testimonials-slider-container {
    position: relative;
    margin-top: 30px;
}

.testimonials-slider-track-wrap {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-md);
    padding: 10px 0;
}

.testimonials-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-card {
    background: rgba(15, 20, 28, 0.75);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.slider-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 25, 45, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--emerald-accent);
    color: #000000;
    border-color: var(--emerald-accent);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--emerald-accent);
    width: 28px;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(15, 20, 28, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
}

.faq-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--emerald-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
    line-height: 1.7;
}

.faq-item.active .faq-body {
    display: block;
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(9, 13, 20, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 1000px;
    margin: 40px auto 0;
}

.disclaimer-box h4 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Floating Bottom Bar */
.floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(9, 12, 19, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-subtle);
    padding: 6px 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
}

.floating-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.floating-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-floating-call {
    height: 42px;
    padding: 0 18px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.btn-floating-call:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-floating-whatsapp {
    height: 42px;
    padding: 0 20px;
    border-radius: 99px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366 !important;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.btn-floating-whatsapp:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: #ffffff !important;
}

/* Footer */
.footer {
    background: #040508;
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 100px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin: 20px 0;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .container {
        padding: 0 24px;
        width: 100%;
        max-width: 100%;
    }

    .top-header {
        text-align: left;
        padding: 24px 0 16px 0;
    }

    .brand-logo img {
        height: 38px;
        max-height: 44px;
        margin: 0;
    }

    .hero-section {
        padding-top: 10px;
        padding-bottom: 40px;
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 32px;
        text-align: left;
    }

    .hero-content {
        width: 100%;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2.9rem;
        margin-top: 3.5rem;
        margin-bottom: 1.2rem;
        line-height: 1.05;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .btn {
        white-space: normal;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-btn-main {
        width: 100%;
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .hero-btn-secondary {
        display: none !important;
    }

    .hero-media {
        margin-top: 10px;
        width: 100%;
    }

    .founder-spotlight img {
        max-height: 380px;
        max-width: 90vw;
        margin: 0 auto;
    }

    .founder-spotlight-glow {
        width: min(280px, 80vw);
        height: min(280px, 80vw);
    }

    .founder-badge {
        width: 95%;
        padding: 12px 16px;
    }

    .founder-badge h2 {
        font-size: 1.35rem !important;
    }

    .founder-badge p {
        font-size: 0.8rem !important;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 24px;
        padding-top: 20px;
    }

    .stat-item h3 {
        font-size: 1.25rem;
    }

    .stat-item p {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .floating-info {
        display: none;
    }

    .floating-bar {
        padding: 10px 14px;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.8);
    }

    .floating-actions {
        width: 100%;
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .floating-actions .btn {
        max-width: none;
    }

    .btn-floating-call {
        height: 44px;
        padding: 0 16px !important;
        font-size: 0.88rem;
        flex: 0 0 35% !important;
        min-width: 120px !important;
        white-space: nowrap !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-floating-whatsapp {
        height: 44px;
        padding: 0 12px !important;
        flex: 1 1 auto !important;
        font-size: 0.84rem;
        white-space: nowrap !important;
        letter-spacing: 0.1px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nakshatra-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nakshatra-header {
        gap: 12px;
    }

    .nakshatra-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .nakshatra-title {
        font-size: 1.15rem;
    }

    .nakshatra-sub {
        font-size: 0.82rem;
    }

    .nakshatra-body ul {
        gap: 10px;
        font-size: 0.88rem;
    }

    #trading-setups {
        padding-top: 20px;
    }

    #why-hms {
        padding-top: 0px;
    }

    .astro-setups-card {
        padding: 24px 18px;
    }

    .astro-setups-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gold-gradient-text {
        font-size: 2.8rem;
    }

    .white-text-sub {
        font-size: 1.55rem;
    }

    .astro-setups-list li {
        font-size: 1rem;
    }

    .astro-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hms-tools-wrapper {
        margin-top: 70px;
    }

    .hms-tools-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hms-tools-banner-header h2 {
        font-size: 1.65rem;
    }

    .hms-cta-action-strip {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 18px 16px;
    }

    .cta-strip-title {
        flex-direction: column;
        gap: 8px;
        font-size: 0.95rem;
        text-align: center;
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cta-btn-whatsapp,
    .cta-btn-call {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    .why-hms-card {
        padding: 24px 16px;
    }

    .why-hms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-feature-pill {
        width: 100%;
        justify-content: center;
    }

    .duration-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .bonus-card {
        padding: 28px 18px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bonus-title {
        font-size: 1.75rem;
    }

    .speaker-portrait {
        max-height: 350px;
    }

    .who-join-cards-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .who-enroll-btn {
        display: none !important;
    }

    .last-chance-section {
        padding: 30px 0;
    }

    .last-chance-card {
        padding: 32px 18px 24px 18px;
    }

    .last-chance-title {
        font-size: 1.65rem;
        margin-top: 14px;
        margin-bottom: 18px;
    }

    .last-chance-pricing {
        padding: 18px 14px;
        gap: 10px;
    }

    .lc-price-label,
    .lc-special-label {
        font-size: 0.95rem;
    }

    .lc-current-price {
        font-size: 2.1rem;
    }

    .lc-strike-inline,
    .lc-old-price {
        font-size: 1.1rem;
    }

    .lc-gst {
        font-size: 0.95rem;
    }

    .last-chance-btn {
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .footer-links {
        gap: 10px 16px;
        font-size: 0.85rem;
        padding: 0 12px;
    }

    /* Mobile Testimonials Slider Optimization */
    .testimonials-slider-container {
        padding: 0;
        margin-top: 20px;
    }

    .testimonials-slider-track {
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px 18px;
        border-radius: var(--radius-sm);
    }

    .testimonial-card p {
        font-size: 0.9rem !important;
        line-height: 1.55;
    }

    .slider-controls-row {
        margin-top: 18px;
        gap: 16px;
    }

    .slider-btn {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}