/* ==========================================================================
   INVESTOOR.DE - REDESIGNED STYLESHEET
   Modern Luxury Dark FinTech & Prop-Trading Aesthetic
   ========================================================================== */

   :root {
    /* Color Palette */
    --bg-dark: #07090e;
    --bg-surface: #0e121a;
    --bg-card: rgba(18, 24, 38, 0.75);
    --bg-card-hover: rgba(26, 34, 52, 0.85);
    --bg-glass: rgba(15, 23, 42, 0.65);
    --bg-light: #ffffff;
    --bg-muted: #f3f5f8;
    --bg-light-card: #ffffff;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(6, 182, 212, 0.3);
    --border-light: rgba(15, 23, 42, 0.08);
    --ink-on-light: #0b1220;
    --ink-muted-on-light: #5b6475;
    --ink-secondary-on-light: #3d4658;
    --section-pad-y: 120px;
    --section-pad-y-sm: 72px;
    
    /* Brand Accents */
    --primary: #06B6D4;          /* Electric Cyan */
    --primary-glow: rgba(6, 182, 212, 0.4);
    --primary-gradient: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    
    --accent-green: #10B981;     /* Profit Emerald */
    --accent-green-glow: rgba(16, 185, 129, 0.35);
    --green-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
    
    --accent-purple: #8B5CF6;    /* Master Purple */
    --accent-amber: #F59E0B;     /* Gold / Trophy */
    --accent-rose: #F43F5E;      /* Action / Alert */
    
    /* Typography Colors — high contrast on dark surfaces */
    --text-primary: #F8FAFC;
    --text-secondary: #E2E8F0;
    --text-muted: #CBD5E1;
    --text-inverse: #07090E;
    
    /* Fonts */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px var(--primary-glow);
    --shadow-glow-green: 0 0 25px var(--accent-green-glow);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset & Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Ambient Glow Blobs in Background */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.glow-1 {
    top: -100px;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
}

.glow-2 {
    top: 40%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    opacity: 0.18;
}

.glow-3 {
    bottom: 5%;
    left: 20%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    opacity: 0.15;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.25;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #38BDF8 0%, #818CF8 50%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-accent {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-green {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--primary) !important; }
.text-emerald { color: var(--accent-green) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-amber { color: var(--accent-amber) !important; }

/* Section Headers */
.section-header {
    margin-bottom: 64px;
}

.section-header.text-center {
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-left {
    text-align: left;
    margin-bottom: 24px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.6rem;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Consistent readable body copy across homepage sections */
.hero-description,
.trust-pill,
.pillar-desc,
.service-desc,
.partner-desc,
.perk-label,
.step-desc,
.t-quote,
.blog-excerpt,
.faq-answer,
.cta-desc,
.footer-about,
.footer-nav li a,
.footer-contact-list,
.cs-label,
.cs-stats-row,
.stat-numbers .label,
.card-ribbon:not(.ribbon-popular) {
    color: var(--text-secondary);
}

.dash-label,
.tier-label,
.m-label,
.chart-header,
.card-title-pill,
.author-role,
.blog-meta,
.footer-bottom-container,
.dash-amount .cents,
.fb-title,
.support-text,
.ticker-label {
    color: var(--text-muted);
}

.highlight-link {
    color: #FBBF24 !important;
}

/* Button Component Suite */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
    color: #ffffff;
}

.btn-secondary,
.btn-hero-secondary {
    background: rgba(6, 182, 212, 0.14);
    color: #ECFEFF;
    border: 1px solid rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.12), 0 8px 24px rgba(6, 182, 212, 0.18);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-hero-secondary:hover {
    background: rgba(6, 182, 212, 0.24);
    color: #ffffff;
    border-color: #22D3EE;
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.25), 0 12px 28px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.btn-secondary i,
.btn-hero-secondary i {
    color: #67E8F9;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: rotate(30deg);
    animation: btnShimmer 4s infinite;
}

@keyframes btnShimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.glass-btn {
    backdrop-filter: blur(12px);
}

.w-100 { width: 100%; }

/* ==========================================================================
   TOP BAR & LIVE TICKER
   ========================================================================== */
.top-bar {
    background: rgba(10, 14, 23, 0.95);
    border-bottom: 1px solid var(--border-glass);
    padding: 8px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: 102;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding-right: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.ticker-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: tickerScroll 28s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.ticker-item .symbol {
    font-weight: 600;
    color: var(--text-secondary);
}

.ticker-item .val {
    font-weight: 700;
    color: var(--text-primary);
}

.ticker-item .val.highlight {
    color: var(--primary);
    font-weight: 600;
}

.ticker-item .change.up {
    color: var(--accent-green);
    font-weight: 600;
}

.ticker-item .change.down {
    color: var(--accent-rose);
    font-weight: 600;
}

.badge-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    border-radius: 4px;
    font-weight: 700;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    padding-left: 20px;
    border-left: 1px solid var(--border-glass);
}

.support-text {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.support-text i {
    color: var(--primary);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    background: rgba(7, 9, 14, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

.header.scrolled,
.header.is-scrolled {
    background: rgba(7, 9, 14, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.top-bar > .container {
    max-width: 1680px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.header > .container,
.header-container {
    max-width: 1480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 80px;
    min-width: 0;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo-img {
    display: block;
    height: 40px;
    width: auto;
    max-width: min(220px, 46vw);
    object-fit: contain;
}

.footer-logo .brand-logo-img {
    height: 44px;
    max-width: 240px;
}

.drawer-header .brand-logo-img {
    height: 34px;
    max-width: 180px;
}

.logo-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.1;
}

.accent-dot {
    color: var(--primary);
}

.brand-sub {
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-item {
    flex: 0 0 auto;
}

.nav-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link i {
    margin-right: 4px;
    font-size: 0.85em;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.highlight-link {
    color: #FBBF24 !important;
}

@media (max-width: 1600px) {
    .header > .container,
    .header-container {
        gap: 12px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-list { gap: 12px; }
    .nav-link { font-size: 0.8rem; }
}

@media (max-width: 1400px) {
    .header > .container,
    .header-container {
        gap: 10px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-list { gap: 8px; }
    .nav-link { font-size: 0.74rem; }
    .header-actions { gap: 6px; }
    .header-actions .btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.custom-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 110;
}

.custom-dropdown.open .dropdown-menu,
.custom-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.dropdown-menu li a span {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lang-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-trigger .lang-flag {
    width: 18px;
    height: 18px;
}

.dropdown-menu li a:hover, .dropdown-menu li.active a {
    background: rgba(6, 182, 212, 0.15);
    color: #ffffff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 200;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.open,
.mobile-drawer.is-open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
}

.drawer-close {
    background: none;
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    padding: 8px 0;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-highlight {
    color: #FBBF24 !important;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.drawer-overlay.open,
.drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 88px 0 112px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: #38BDF8;
    margin-bottom: 24px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBBF24;
}

.hero-title {
    font-size: 3.4rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.18rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-description strong {
    color: var(--text-primary);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    max-width: 540px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Hero Interactive Dashboard Visual */
.hero-visual {
    position: relative;
}

.visual-card.main-dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.15);
    backdrop-filter: blur(20px);
    padding: 24px;
    position: relative;
    z-index: 2;
}

.card-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 20px;
}

.dots-group {
    display: flex;
    gap: 6px;
}

.dots-group .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.card-title-pill {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulseGlow 1.2s infinite;
}

.dash-balance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.dash-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.dash-amount .cents {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.dash-badge-tier {
    text-align: right;
}

.tier-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
}

.tier-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(6, 182, 212, 0.15);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 4px;
}

.dash-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
}

.m-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.m-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.m-sub {
    font-size: 0.72rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
}

/* Mini Chart */
.mini-chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.chart-tag {
    color: var(--accent-green);
}

.sparkline-svg {
    width: 100%;
    height: 85px;
}

.chart-glow-dot {
    filter: drop-shadow(0 0 6px #10B981);
}

.dash-activity-strip {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.78rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-ago {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.72rem;
}

/* Floating Micro Badges */
.floating-badge {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floatAnim 4s ease-in-out infinite alternate;
}

.badge-top-right {
    top: -24px;
    right: -24px;
}

.badge-bottom-left {
    bottom: -24px;
    left: -24px;
    animation-delay: -2s;
}

@keyframes floatAnim {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.badge-icon-sq {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bg-green { background: rgba(16, 185, 129, 0.2); color: var(--accent-green); }
.bg-purple { background: rgba(139, 92, 246, 0.2); color: var(--accent-purple); }

.fb-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.fb-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

/* ==========================================================================
   STATS BANNER SECTION
   ========================================================================== */
.stats-banner-section {
    padding: 24px 0 72px;
}

.stats-glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(15px);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.stat-card:not(:last-child) {
    border-right: 1px solid var(--border-glass);
}

.stat-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-numbers .number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.stat-numbers .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
}

/* ==========================================================================
   THREE CORE PILLARS SECTION
   ========================================================================== */
.pillars-section {
    padding: var(--section-pad-y) 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(16px);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.15);
}

.pillar-card.featured {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(18, 24, 38, 0.8) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(16, 185, 129, 0.18);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.ribbon-popular {
    background: var(--green-gradient);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.pillar-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.bg-gradient-cyan { background: var(--primary-gradient); color: #ffffff; }
.bg-gradient-emerald { background: var(--green-gradient); color: #ffffff; }
.bg-gradient-purple { background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%); color: #ffffff; }

.pillar-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.pillar-desc {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

.pillar-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex: 1;
}

.pillar-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.pillar-features li i {
    margin-top: 4px;
    font-size: 1rem;
}

.pillar-footer {
    margin-top: auto;
}

.btn-pillar {
    border: 1px solid transparent;
    color: #ffffff;
    font-weight: 700;
}

.btn-pillar:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-pillar-cyan {
    background: var(--primary-gradient);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 18px rgba(6, 182, 212, 0.35);
}

.btn-pillar-cyan:hover {
    box-shadow: 0 8px 26px rgba(6, 182, 212, 0.5);
}

.btn-pillar-emerald {
    background: var(--green-gradient);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
}

.btn-pillar-emerald:hover {
    box-shadow: 0 8px 26px rgba(16, 185, 129, 0.5);
}

.btn-pillar-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.35);
}

.btn-pillar-purple:hover {
    box-shadow: 0 8px 26px rgba(139, 92, 246, 0.5);
}

/* ==========================================================================
   INTERACTIVE CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
    padding: var(--section-pad-y) 0;
}

.calculator-glass-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(14, 18, 26, 0.95) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(20px);
}

.calculator-glass-box .section-subtitle {
    color: #FBBF24;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.calculator-glass-box .section-subtitle i {
    color: #FBBF24;
}

.calc-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 40px;
}

.calc-title {
    font-size: 2.2rem;
    margin-top: 8px;
    color: #ffffff;
    line-height: 1.25;
}

.calc-type-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 6px;
    gap: 6px;
    flex-shrink: 0;
}

.switch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: #F8FAFC;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.switch-btn:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.55);
    color: #ffffff;
}

.switch-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.calc-body-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.control-group {
    margin-bottom: 32px;
}

.control-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.control-label-row label {
    font-size: 1rem;
    font-weight: 600;
    color: #F8FAFC;
}

.input-display-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
}

.input-display-box .currency {
    font-weight: 700;
    color: var(--accent-green);
    margin-right: 6px;
}

.input-display-box input {
    background: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    width: 140px;
}

/* Custom Range Slider */
.custom-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 15px var(--accent-green-glow);
    cursor: pointer;
    border: 3px solid #ffffff;
    transition: var(--transition-fast);
}

.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.custom-range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 15px var(--accent-green-glow);
    cursor: pointer;
    border: 3px solid #ffffff;
}

.range-marks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #E2E8F0;
    margin-top: 10px;
    font-weight: 600;
}

.custom-select {
    width: 100%;
    padding: 14px 44px 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-md);
    color: #F8FAFC;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.08);
    transition: var(--transition-fast);
}

.custom-select:hover,
.custom-select:focus {
    outline: none;
    border-color: rgba(52, 211, 153, 0.7);
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.18), 0 8px 20px rgba(16, 185, 129, 0.15);
}

.custom-select option {
    background: var(--bg-surface);
    color: #F8FAFC;
}

.calc-select-wrap {
    position: relative;
    width: 100%;
}

.calc-select-caret {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6EE7B7;
    font-size: 0.8rem;
    pointer-events: none;
}

.calc-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}

.callout-icon {
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-top: 2px;
}

.callout-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.callout-text {
    font-size: 0.85rem;
    color: #E2E8F0;
    line-height: 1.5;
}

/* Result Card — matches partner commission showcase */
.calc-result-card {
    background: var(--bg-surface);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card), 0 0 30px rgba(16, 185, 129, 0.12);
}

.res-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #E2E8F0;
    margin-bottom: 24px;
}

.live-pill {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-return-display {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.res-subtitle {
    font-size: 0.88rem;
    color: #E2E8F0;
    font-weight: 600;
}

.res-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 8px 0;
    letter-spacing: -1px;
}

.res-gain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    color: #6EE7B7;
}

.res-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    gap: 12px;
}

.b-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E2E8F0;
}

.b-value {
    font-weight: 700;
    color: #ffffff;
}

.calc-result-card .b-value.text-emerald,
.calc-result-card .text-emerald {
    color: #6EE7B7 !important;
}

.calc-result-card .text-cyan {
    color: #67E8F9 !important;
}

.calc-result-card .text-amber {
    color: #FBBF24 !important;
}

/* ==========================================================================
   SERVICES & PRIME GRID
   ========================================================================== */
.services-section {
    padding: var(--section-pad-y) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition-fast);
}

.service-box:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   PRICING & ACCOUNT TIERS
   ========================================================================== */
.pricing-section {
    padding: var(--section-pad-y) 0;
}

.pricing-section .section-desc {
    color: #E2E8F0;
}

.pricing-tabs {
    display: inline-flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 6px;
    margin-top: 24px;
}

.pricing-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.32);
    border-radius: var(--radius-full);
    color: #F8FAFC;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pricing-tab:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.55);
    color: #ffffff;
}

.pricing-tab.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.plan-card.popular-plan {
    border-color: var(--accent-green);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, rgba(18, 24, 38, 0.9) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.2);
}

.plan-badge {
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    margin-bottom: 16px;
}

.plan-card .badge-green {
    background: rgba(16, 185, 129, 0.28);
    color: #D1FAE5;
    border-color: rgba(167, 243, 208, 0.55);
}

.plan-card .badge-cyan {
    background: rgba(6, 182, 212, 0.28);
    color: #CFFAFE;
    border-color: rgba(165, 243, 252, 0.55);
}

.plan-card .badge-purple {
    background: rgba(139, 92, 246, 0.28);
    color: #EDE9FE;
    border-color: rgba(221, 214, 254, 0.55);
}

/* Match feature + info icons to each plan's pill/badge tone */
.plan-card.tone-purple .spec-row span i,
.plan-card.tone-purple .plan-info-trigger,
.plan-card.tone-purple .plan-info-trigger i,
.plan-card[data-category="academy"] .spec-row span i,
.plan-card[data-category="academy"] .plan-info-trigger,
.plan-card[data-category="academy"] .plan-info-trigger i {
    color: #C4B5FD !important;
}

.plan-card.tone-cyan .spec-row span i,
.plan-card.tone-cyan .plan-info-trigger,
.plan-card.tone-cyan .plan-info-trigger i,
.plan-card[data-category="trading"] .spec-row span i,
.plan-card[data-category="trading"] .plan-info-trigger,
.plan-card[data-category="trading"] .plan-info-trigger i {
    color: #67E8F9 !important;
}

.plan-card.tone-green .spec-row span i,
.plan-card.tone-green .plan-info-trigger,
.plan-card.tone-green .plan-info-trigger i,
.plan-card.popular-plan .spec-row span i,
.plan-card.popular-plan .plan-info-trigger,
.plan-card.popular-plan .plan-info-trigger i,
.plan-card[data-category="festanlage"] .spec-row span i,
.plan-card[data-category="festanlage"] .plan-info-trigger,
.plan-card[data-category="festanlage"] .plan-info-trigger i {
    color: #6EE7B7 !important;
}

.plan-card.tone-purple .plan-badge,
.plan-card[data-category="academy"] .plan-badge {
    background: rgba(139, 92, 246, 0.28);
    color: #EDE9FE;
    border-color: rgba(221, 214, 254, 0.55);
}

.plan-card[data-category="trading"] .plan-badge {
    background: rgba(6, 182, 212, 0.28);
    color: #CFFAFE;
    border-color: rgba(165, 243, 252, 0.55);
}

.plan-card[data-category="festanlage"] .plan-badge {
    background: rgba(16, 185, 129, 0.28);
    color: #D1FAE5;
    border-color: rgba(167, 243, 208, 0.55);
}

.popular-ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    background: var(--green-gradient);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.plan-header {
    margin-bottom: 20px;
}

.plan-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.plan-price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price-box .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F8FAFC;
}

.plan-price-box .price-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.plan-price-box .price-period {
    font-size: 0.92rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-left: 4px;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 20px;
    flex: 1;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    gap: 12px;
}

.spec-row span {
    color: #F1F5F9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-row span i {
    color: #E2E8F0;
}

.plan-card .spec-row span i.text-cyan {
    color: #A5F3FC !important;
}

.plan-card .spec-row span i.text-emerald {
    color: #A7F3D0 !important;
}

.spec-row strong {
    color: #FFFFFF;
    font-weight: 700;
    text-align: right;
}

.plan-card .spec-row strong.text-cyan,
.plan-card .spec-row .text-cyan {
    color: #A5F3FC !important;
}

.plan-card .spec-row strong.text-emerald,
.plan-card .spec-row .text-emerald {
    color: #A7F3D0 !important;
}

.spec-row.highlight-row {
    background: rgba(16, 185, 129, 0.16);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    margin: 4px -6px;
}

.plan-info-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #A5F3FC;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.plan-info-trigger:hover {
    text-decoration: underline;
}

.custom-tier-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
}

.ct-text h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.ct-text p {
    font-size: 0.92rem;
    color: #E2E8F0;
}

/* ==========================================================================
   PARTNER & AFFILIATE SECTION
   ========================================================================== */
.partner-section {
    padding: var(--section-pad-y) 0;
}

.partner-glow-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(14, 18, 26, 0.95) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(20px);
    align-items: center;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FBBF24;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.partner-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.partner-desc {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.partner-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.perk-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px;
}

.perk-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1.1;
    margin-bottom: 4px;
}

.perk-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.partner-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-partner-secondary {
    background: rgba(16, 185, 129, 0.14);
    color: #ECFDF5;
    border: 1px solid rgba(52, 211, 153, 0.55);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.12), 0 8px 24px rgba(16, 185, 129, 0.18);
    backdrop-filter: blur(10px);
}

.btn-partner-secondary:hover {
    background: rgba(16, 185, 129, 0.24);
    color: #ffffff;
    border-color: #34D399;
    box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.25), 0 12px 28px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.btn-partner-secondary i {
    color: #6EE7B7;
}

.btn-advice-amber {
    background: rgba(245, 158, 11, 0.14);
    color: #FFFBEB;
    border: 1px solid rgba(251, 191, 36, 0.55);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.12), 0 8px 24px rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
}

.btn-advice-amber:hover {
    background: rgba(245, 158, 11, 0.26);
    color: #ffffff;
    border-color: #FBBF24;
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.28), 0 12px 28px rgba(245, 158, 11, 0.32);
    transform: translateY(-2px);
}

.btn-advice-amber i {
    color: #FBBF24;
}

.commission-showcase-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cs-amount-box {
    margin-bottom: 20px;
}

.cs-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.cs-val {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 4px;
}

.cs-val .cents {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.cs-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.cs-progress-fill {
    height: 100%;
    background: var(--green-gradient);
    border-radius: 4px;
}

.cs-stats-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-top: 16px;
    border-top: 1px solid var(--border-glass);
}

/* ==========================================================================
   HOW IT WORKS (3 STEPS)
   ========================================================================== */
.how-it-works-section {
    padding: var(--section-pad-y) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-fast);
}

.step-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-4px);
}

.step-num-badge {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.step-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: var(--section-pad-y) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.t-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 18px;
    display: flex;
    gap: 4px;
}

.t-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   BLOG / ACADEMY INSIGHTS
   ========================================================================== */
.blog-section {
    padding: var(--section-pad-y) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.4);
}

.blog-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: var(--section-pad-y) 0;
}

.faq-accordion-box {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(6, 182, 212, 0.4);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 24px;
    display: none;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-intro {
    max-width: 760px;
    margin: 8px auto 0;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 36px 0 14px;
}

.faq-category-title:first-child {
    margin-top: 8px;
}

.faq-outro-section {
    padding: 20px 0 100px;
}

.faq-outro-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(14, 18, 26, 0.95) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
}

.faq-model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 36px 0 28px;
    text-align: left;
}

.faq-model-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-model-card h4 {
    font-size: 1.05rem;
    color: #ffffff;
    margin: 0;
}

.faq-model-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.faq-model-card .btn {
    align-self: flex-start;
    margin-top: 8px;
}

.faq-outro-actions {
    margin-bottom: 40px;
}

.faq-brand-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    max-width: 720px;
    margin: 0 auto;
}

.faq-brand-block h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.faq-brand-tagline {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}

.faq-brand-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .faq-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .faq-model-grid {
        grid-template-columns: 1fr;
    }

    .faq-outro-card {
        padding: 36px 20px;
    }
}

/* ==========================================================================
   CTA BOTTOM SECTION
   ========================================================================== */
.cta-bottom-section {
    padding: 80px 0 120px;
}

.cta-glass-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(14, 18, 26, 0.95) 100%);
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(6, 182, 212, 0.15);
    backdrop-filter: blur(20px);
}

.cta-content {
    max-width: 740px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    margin: 16px 0 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #040609;
    border-top: 1px solid var(--border-glass);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer-about {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 20px 0 24px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-social-links a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-list li i {
    margin-top: 3px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 24px 0;
    background: #020305;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-risk-disclaimer {
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-backdrop.open,
.modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 550px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.modal-backdrop.open .modal-card,
.modal-backdrop.is-open .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-glass);
}

.modal-title {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close-btn {
    background: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-body {
    padding: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 2.8rem; }
    .stats-glass-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-card:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .login-btn { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-badge { margin: 0 auto 20px; }
    .hero-description { margin: 0 auto 32px; }
    .hero-cta-group { justify-content: center; }
    .hero-trust-list { margin: 0 auto; }
    
    .floating-badge { display: none; }
    
    .pillars-grid, .services-grid, .pricing-grid, .steps-grid, .testimonials-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .calc-body-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-glow-card {
        grid-template-columns: 1fr;
        padding: 36px 24px;
    }
    
    .custom-tier-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .top-bar-right { display: none; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.2rem; }
    .stats-glass-grid { grid-template-columns: 1fr; }
    .stat-card:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border-glass); padding-bottom: 16px; }
    
    .calculator-glass-box { padding: 24px; }
    .cta-glass-card { padding: 40px 20px; }
    .cta-title { font-size: 2rem; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; }
    
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }
    
    .partner-perks-grid { grid-template-columns: 1fr; }
    .partner-cta-row { flex-direction: column; width: 100%; }
    .partner-cta-row .btn { width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-container { flex-direction: column; gap: 12px; text-align: center; }
    .footer-risk-disclaimer { text-align: center; }
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 170px 0 72px;
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.45; }

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 900px;
}

.page-hero p.lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 680px;
    margin-bottom: 28px;
}

.inner-section { padding: 80px 0; }

.legal-wrap,
.article-wrap {
    max-width: 860px;
}

.legal-wrap h2,
.article-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin: 36px 0 12px;
}

.legal-wrap h3,
.article-wrap h3 {
    font-size: 1.1rem;
    margin: 24px 0 10px;
}

.legal-wrap p,
.article-wrap p,
.legal-wrap li,
.article-wrap li {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-wrap ul,
.legal-wrap ol,
.article-wrap ul {
    padding-left: 1.2rem;
    list-style: disc;
    margin-bottom: 16px;
}

.legal-wrap ol {
    list-style: decimal;
}

.legal-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
}

.legal-wrap .btn i {
    font-size: 1rem;
}

.pillar-sublist {
    margin: 8px 0 0;
    padding-left: 1.1rem;
    list-style: disc;
    color: var(--text-secondary);
}

.pillar-sublist li {
    margin-bottom: 6px;
}

.article-cover {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    margin-bottom: 28px;
}

.article-meta {
    display: flex;
    gap: 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
}

.form-card,
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(16px);
}

.form-row { margin-bottom: 16px; }

.form-row label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: rgb(57 58 61 / 70%);;
    /* background: rgba(7, 9, 14, 0.7); */
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-success {
    margin-top: 14px;
    color: var(--accent-green);
    font-size: 0.92rem;
}

.auth-wrap {
    max-width: 460px;
    margin: 0 auto;
}

.auth-wrap--register {
    max-width: 720px;
}

.auth-wrap form.is-disabled {
    pointer-events: none;
    opacity: 0.55;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-check input {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-check a { color: var(--primary); }

.form-banner {
    margin-bottom: 16px;
    color: var(--accent-amber);
    font-size: 0.92rem;
}

.form-card .form--group,
.form-card .mb-3 {
    margin-bottom: 16px;
}

.form-card .form--control,
.form-card .form-control {
    width: 100%;
    background: rgba(7, 9, 14, 0.7);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.form-card .help-block {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
}

.form-card .text-success { color: var(--accent-green); }
.form-card .text--danger,
.form-card .text-danger { color: var(--accent-rose); }

.form-card .hover-input-popup { position: relative; }
.form-card .input-popup { display: none; }
.form-card .hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    max-width: calc(100vw - 40px);
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    transform: translateX(-50%);
    z-index: 5;
}
.form-card .input-popup p {
    position: relative;
    padding-left: 22px;
    margin: 0 0 6px;
    font-size: 0.82rem;
}
.form-card .input-popup p:last-child { margin-bottom: 0; }
.form-card .input-popup p::before {
    position: absolute;
    left: 0;
    top: 0;
}
.form-card .input-popup p.error { text-decoration: line-through; color: var(--text-secondary); }
.form-card .input-popup p.error::before { content: "✕"; color: var(--accent-rose); }
.form-card .input-popup p.success::before { content: "✓"; color: var(--accent-green); }

.auth-switch {
    text-align: center;
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.auth-switch a { color: var(--primary); }

@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 140px 0 52px; }
    .article-cover { height: 220px; }
}

/* ==========================================================================
   MOBILE & TABLET ONLY
   Laptop/desktop rules above are unchanged. These queries never apply
   at 1025px and up (typical laptop/desktop viewports).
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    body.inv-drawer-open {
        overflow: hidden;
        touch-action: none;
    }

    img {
        max-width: 100%;
    }

    .header,
    .top-bar,
    .hero-section,
    .page-hero,
    main,
    .footer {
        max-width: 100%;
        min-width: 0;
    }

    .header-container,
    .hero-container,
    .footer-grid,
    .header-actions {
        min-width: 0;
    }

    .mobile-toggle {
        flex-shrink: 0;
    }

    .mobile-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn {
        max-width: 100%;
    }

    .container,
    .container-fluid,
    .top-bar > .container,
    .header > .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-bar > div {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0 16px;
        overflow: hidden;
    }

    .ticker-wrapper {
        width: 100%;
        min-width: 0;
        gap: 10px;
    }

    .ticker-label {
        padding-right: 8px;
        font-size: 0.72rem;
    }

    .ticker-slider {
        min-width: 0;
    }

    .header-container {
        height: 68px;
        gap: 8px;
    }

    .nav-menu,
    .login-btn,
    .top-bar-right {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-actions {
        gap: 6px;
    }

    .dropdown-trigger {
        padding: 8px 10px;
    }

    .header-actions > .btn-primary {
        padding: 10px 14px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .brand-logo-img {
        height: 34px;
        max-width: min(180px, 38vw);
    }

    .mobile-drawer {
        width: min(340px, 88vw);
        padding: 20px 16px;
        height: 100dvh;
    }

    .drawer-actions .mb-2 {
        margin-bottom: 10px;
    }

    .hero-section {
        padding: 36px 0 48px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-badge {
        margin: 0 auto 16px;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
    }

    .hero-title {
        font-size: clamp(1.85rem, 5vw, 2.6rem);
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero-description {
        margin: 0 auto 24px;
        font-size: 1.02rem;
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trust-list {
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .floating-badge {
        display: none;
    }

    .visual-card.main-dashboard-card {
        padding: 18px;
    }

    .card-header-bar {
        flex-wrap: wrap;
        gap: 8px;
    }

    .dash-balance-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .dash-amount {
        font-size: 1.7rem;
        overflow-wrap: anywhere;
    }

    .activity-item {
        flex-wrap: wrap;
    }

    .time-ago {
        margin-left: 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title,
    .calc-title,
    .partner-title,
    .cta-title {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .pillars-section,
    .calculator-section,
    .services-section,
    .pricing-section,
    .partner-section,
    .how-it-works-section,
    .testimonials-section,
    .blog-section,
    .faq-section,
    .inner-section {
        padding: 56px 0;
    }

    .cta-bottom-section {
        padding: 40px 0 64px;
    }

    .footer {
        padding-top: 56px;
    }

    .stats-banner-section {
        padding: 16px 0 40px;
    }

    .stats-glass-grid {
        padding: 20px;
        gap: 16px;
    }

    .stat-card {
        min-width: 0;
    }

    .stat-numbers .number {
        font-size: 1.4rem;
        overflow-wrap: anywhere;
    }

    .calculator-glass-box {
        padding: 28px 20px;
    }

    .calc-type-switch {
        flex-wrap: wrap;
        width: 100%;
    }

    .switch-btn {
        flex: 1 1 auto;
        justify-content: center;
        min-height: 44px;
    }

    .control-label-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .input-display-box {
        width: 100%;
        justify-content: flex-start;
    }

    .input-display-box input {
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }

    .custom-select,
    .form-row input,
    .form-row select,
    .form-row textarea {
        font-size: 16px;
    }

    .range-marks {
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 0.62rem;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .calc-result-card {
        padding: 24px 18px;
    }

    .res-amount {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        overflow-wrap: anywhere;
    }

    .res-gain-badge {
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }

    .breakdown-item {
        gap: 8px;
        align-items: flex-start;
    }

    .breakdown-item .b-value {
        text-align: right;
        overflow-wrap: anywhere;
    }

    .pricing-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .pricing-tab {
        flex: 1 1 calc(50% - 8px);
        min-height: 44px;
        text-align: center;
        white-space: normal;
        line-height: 1.25;
    }

    .plan-price-box {
        flex-wrap: wrap;
    }

    .plan-price-box .price-val {
        overflow-wrap: anywhere;
    }

    .spec-row {
        gap: 10px;
    }

    .spec-row span,
    .spec-row strong {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .partner-glow-card {
        padding: 32px 20px;
        gap: 28px;
    }

    .cs-val {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        overflow-wrap: anywhere;
    }

    .cs-stats-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 0.98rem;
        min-height: 48px;
        align-items: flex-start;
    }

    .faq-question span {
        overflow-wrap: anywhere;
    }

    .faq-answer {
        padding: 12px 16px 18px;
    }

    .cta-glass-card {
        padding: 36px 20px;
    }

    .cta-buttons {
        flex-wrap: wrap;
        width: 100%;
    }

    .form-card,
    .info-card {
        padding: 22px 18px;
    }

    .page-hero {
        padding: 128px 0 48px;
    }

    .page-hero h1,
    .page-hero p.lead {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .legal-wrap,
    .article-wrap {
        max-width: 100%;
    }

    .legal-wrap ul,
    .legal-wrap ol,
    .article-wrap ul {
        padding-left: 1.1rem;
    }

    .modal-backdrop {
        padding: 12px;
        align-items: flex-end;
    }

    .modal-card {
        max-height: min(88dvh, 640px);
        overflow: auto;
        margin-bottom: env(safe-area-inset-bottom, 0);
    }

    .scroll-to-top {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .pillar-card:hover,
    .plan-card:hover,
    .service-box:hover,
    .step-card:hover,
    .blog-card:hover,
    .btn-primary:hover,
    .btn-outline:hover,
    .btn-secondary:hover {
        transform: none;
    }
}

@media (max-width: 1024px) and (min-width: 993px) {
    .pillars-grid,
    .services-grid,
    .pricing-grid,
    .steps-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta-group .btn {
        min-height: 48px;
    }
}

@media (max-width: 768px) {
    .header-actions > .btn-primary.glow-btn {
        display: none;
    }

    .header-container {
        height: 60px;
    }

    .brand-logo-img {
        height: 30px;
        max-width: min(160px, 42vw);
    }

    .ticker-label {
        display: none;
    }

    .hero-section {
        padding: 28px 0 36px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 7.2vw, 2.15rem);
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.98rem;
        margin-bottom: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        margin-bottom: 24px;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-trust-list {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 420px;
    }

    .trust-pill {
        justify-content: flex-start;
    }

    .section-title {
        font-size: clamp(1.55rem, 6vw, 2rem);
    }

    .section-desc {
        font-size: 1rem;
    }

    .pillars-section,
    .calculator-section,
    .services-section,
    .pricing-section,
    .partner-section,
    .how-it-works-section,
    .testimonials-section,
    .blog-section,
    .faq-section,
    .inner-section {
        padding: 44px 0;
    }

    .pillar-card,
    .service-box,
    .plan-card,
    .step-card,
    .testimonial-card {
        padding: 24px 18px;
    }

    .calculator-glass-box {
        padding: 20px 16px;
    }

    .calc-header-row {
        gap: 16px;
    }

    .calc-title {
        font-size: 1.55rem;
    }

    .partner-title {
        font-size: clamp(1.55rem, 6vw, 2rem);
    }

    .partner-perks-grid {
        grid-template-columns: 1fr;
    }

    .partner-cta-row {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .partner-cta-row .btn {
        width: 100%;
    }

    .cta-title {
        font-size: clamp(1.55rem, 6.5vw, 2rem);
    }

    .cta-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .custom-tier-box {
        padding: 22px 18px;
    }

    .page-hero {
        padding: 112px 0 40px;
    }

    .page-hero h1 {
        font-size: clamp(1.55rem, 7vw, 2.15rem);
        margin-bottom: 12px;
    }

    .dash-metrics-grid {
        grid-template-columns: 1fr;
    }

    .dash-badge-tier {
        text-align: left;
    }

    .footer-grid {
        gap: 28px;
        padding-bottom: 40px;
    }

    .footer-bottom-container {
        align-items: center;
    }

    .footer-risk-disclaimer {
        max-width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        min-width: min(220px, calc(100vw - 32px));
        right: 0;
        left: auto;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid,
    .top-bar > .container,
    .header > .container,
    .top-bar > div {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-actions .lang-code,
    .dropdown-trigger i.fa-chevron-down {
        display: none;
    }

    .dropdown-trigger {
        padding: 8px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 7px 12px;
    }

    .hero-title {
        font-size: 1.55rem;
        letter-spacing: -0.4px;
    }

    .section-subtitle {
        font-size: 0.72rem;
        padding: 5px 12px;
        letter-spacing: 1px;
    }

    .stats-glass-grid {
        padding: 16px 12px;
    }

    .stat-card {
        gap: 10px;
        padding: 6px 0;
    }

    .stat-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .calculator-glass-box,
    .partner-glow-card,
    .cta-glass-card,
    .form-card,
    .info-card {
        padding: 18px 14px;
    }

    .pricing-tab {
        white-space: normal;
        padding: 8px 12px;
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .switch-btn {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    .res-amount {
        font-size: 1.55rem;
    }

    .mobile-drawer {
        width: 100%;
        border-left: none;
    }

    .page-hero {
        padding: 104px 0 32px;
    }
}

@media (max-width: 1024px) and (max-height: 500px) and (orientation: landscape) {
    .header-container {
        height: 56px;
    }

    .hero-section {
        padding: 20px 0 28px;
    }

    .page-hero {
        padding: 96px 0 28px;
    }

    .mobile-drawer {
        height: 100dvh;
    }
}

/* ==========================================================================
   DESIGN REFINEMENT � section themes, calm hero, light product cards
   ========================================================================== */

.section-theme-light {
    background: transparent;
    color: inherit;
}

.section-theme-muted {
    background: transparent;
    color: inherit;
}

.section-theme-navy {
    background: transparent;
    color: inherit;
}

.section-theme-light .section-title,
.section-theme-muted .section-title,
.section-theme-light h1,
.section-theme-light h2,
.section-theme-light h3,
.section-theme-light h4,
.section-theme-muted h1,
.section-theme-muted h2,
.section-theme-muted h3,
.section-theme-muted h4 {
    color: var(--ink-on-light);
}

.section-theme-light .section-desc,
.section-theme-muted .section-desc,
.section-theme-light .pillar-desc,
.section-theme-light .service-desc,
.section-theme-light .faq-answer,
.section-theme-light .blog-excerpt,
.section-theme-light .t-quote,
.section-theme-muted .partner-desc,
.section-theme-muted .perk-label {
    color: var(--ink-secondary-on-light);
}

.section-theme-light .section-subtitle,
.section-theme-muted .section-subtitle {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
}

.section-theme-light .pillar-card,
.section-theme-light .service-box,
.section-theme-light .faq-item,
.section-theme-light .testimonial-card,
.section-theme-light .blog-card,
.section-theme-light .plan-card,
.section-theme-muted .partner-glow-card,
.section-theme-muted .blog-card,
.section-theme-muted .testimonial-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 28px rgba(11, 18, 32, 0.05);
    backdrop-filter: none;
}

.section-theme-light .pillar-card:hover,
.section-theme-light .service-box:hover,
.section-theme-light .plan-card:hover,
.section-theme-light .blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 14px 36px rgba(11, 18, 32, 0.08);
}

.section-theme-light .pillar-card.featured {
    background: #ffffff;
    border-color: rgba(6, 182, 212, 0.28);
    box-shadow: 0 10px 32px rgba(11, 18, 32, 0.06);
}

.section-theme-light .pillar-title,
.section-theme-light .service-title,
.section-theme-light .plan-title,
.section-theme-light .blog-title,
.section-theme-light .blog-title a,
.section-theme-light .author-name,
.section-theme-light .faq-question,
.section-theme-light .pillar-features li,
.section-theme-light .plan-price-box .price-val,
.section-theme-light .plan-price-box .currency,
.section-theme-light .ct-text h4,
.section-theme-muted .blog-title,
.section-theme-muted .blog-title a,
.section-theme-muted .author-name {
    color: var(--ink-on-light);
}

.section-theme-light .pillar-features li,
.section-theme-light .spec-row span,
.section-theme-light .spec-row strong,
.section-theme-light .plan-price-box .price-period,
.section-theme-light .ct-text p,
.section-theme-light .pricing-section .section-desc,
.section-theme-light .author-role,
.section-theme-light .blog-meta,
.section-theme-muted .blog-excerpt,
.section-theme-muted .blog-meta,
.section-theme-muted .author-role {
    color: var(--ink-secondary-on-light);
}

.section-theme-light .card-ribbon {
    background: rgba(11, 18, 32, 0.04);
    color: var(--ink-muted-on-light);
}

.section-theme-light .ribbon-popular {
    background: rgba(6, 182, 212, 0.12);
    color: #0e7490;
    box-shadow: none;
}

.section-theme-light .pillar-key-figure {
    color: var(--primary);
}

.section-theme-light .stats-glass-grid {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 8px 0;
}

.section-theme-light .stat-card:not(:last-child) {
    border-right-color: var(--border-light);
}

.section-theme-light .stat-numbers .number {
    color: var(--ink-on-light);
    font-weight: 600;
    font-size: 1.35rem;
}

.section-theme-light .stat-numbers .label {
    color: var(--ink-muted-on-light);
}

.section-theme-light .stat-icon-wrapper {
    background: rgba(6, 182, 212, 0.06);
    border-color: rgba(6, 182, 212, 0.15);
}

.section-theme-light .pricing-tabs {
    background: rgba(11, 18, 32, 0.03);
    border-color: var(--border-light);
}

.section-theme-light .pricing-tab {
    background: transparent;
    border-color: transparent;
    color: var(--ink-secondary-on-light);
}

.section-theme-light .pricing-tab.active {
    color: #ffffff;
}

.section-theme-light .custom-tier-box {
    background: #ffffff;
    border-color: var(--border-light);
}

.section-theme-light .plan-card.popular-plan {
    background: #ffffff;
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 10px 30px rgba(11, 18, 32, 0.06);
}

.section-theme-light .spec-row.highlight-row {
    background: rgba(6, 182, 212, 0.06);
}

.section-theme-light .faq-item.active {
    background: #ffffff;
    border-color: rgba(6, 182, 212, 0.3);
}

.section-theme-light .blog-category {
    background: rgba(255, 255, 255, 0.92);
    color: #0e7490;
}

/* Hero calm hierarchy */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    letter-spacing: -1.2px;
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title .hero-capital {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-products-line {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-description strong {
    font-weight: 600;
}

.hero-cta-group {
    margin-bottom: 36px;
}

.hero-cta-group .btn-secondary {
    opacity: 0.9;
    font-weight: 500;
}

.hero-trust-list {
    gap: 10px 16px;
    max-width: 480px;
}

.trust-pill {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
}

.hero-visual .floating-badge,
.hero-visual .dash-activity-strip {
    display: none;
}

.visual-card.main-dashboard-card {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.dash-amount {
    font-weight: 600;
    font-size: 1.9rem;
}

.m-value {
    font-weight: 600;
}

.m-value.text-emerald {
    color: var(--text-primary) !important;
}

.chart-tag {
    color: var(--text-muted);
    font-weight: 500;
}

/* Product cards � institutional */
.pillar-card {
    padding: 36px 28px;
}

.pillar-card:hover {
    transform: translateY(-4px);
}

.pillar-icon-box {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
    margin-bottom: 20px;
    background: rgba(6, 182, 212, 0.1) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-theme-light .pillar-icon-box {
    background: rgba(6, 182, 212, 0.08) !important;
}

.pillar-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-theme-light .card-ribbon {
    font-weight: 600;
    letter-spacing: 0.06em;
}

.pillar-key-figure {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-glass);
}

.section-theme-light .pillar-key-figure {
    border-bottom-color: var(--border-light);
}

.pillar-desc {
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.pillar-features {
    gap: 10px;
    margin-bottom: 28px;
}

.pillar-features li {
    font-size: 0.88rem;
    font-weight: 400;
}

.pillar-features li strong {
    font-weight: 600;
}

.btn-pillar {
    font-weight: 600;
    box-shadow: none !important;
}

/* Calculator � professional tool on light */
.section-theme-light .calculator-glass-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(11, 18, 32, 0.06);
    backdrop-filter: none;
}

.section-theme-light .calc-title,
.section-theme-light .control-label-row label,
.section-theme-light .input-display-box input,
.section-theme-light .custom-select,
.section-theme-light .callout-title,
.section-theme-light .callout-text,
.section-theme-light .range-marks {
    color: var(--ink-on-light);
}

.section-theme-light .calc-header-row {
    border-bottom-color: var(--border-light);
}

.section-theme-light .calculator-glass-box .section-subtitle {
    color: var(--primary);
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
}

.section-theme-light .calculator-glass-box .section-subtitle i {
    color: var(--primary);
}

.section-theme-light .calc-type-switch,
.section-theme-light .input-display-box,
.section-theme-light .custom-select,
.section-theme-light .calc-callout {
    background: var(--bg-muted);
    border-color: var(--border-light);
}

.section-theme-light .input-display-box .currency {
    color: var(--primary);
}

.section-theme-light .custom-select option {
    background: #ffffff;
    color: var(--ink-on-light);
}

.section-theme-light .calc-result-card {
    background: var(--bg-dark);
    border-color: rgba(6, 182, 212, 0.25);
}

.section-theme-light .calc-select-caret {
    color: var(--primary);
}

/* Partner demoted */
.partner-glow-card--simple {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
}

.partner-glow-card--simple .partner-title {
    font-size: 2rem;
    font-weight: 600;
}

.partner-glow-card--simple .partner-title .gradient-text-green {
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
    font-weight: 600;
}

.partner-glow-card--simple .perk-num {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.partner-glow-card--simple .partner-badge {
    color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.25);
}

.section-theme-muted .partner-badge {
    color: var(--primary);
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
}

.section-theme-muted .partner-title {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--ink-on-light);
}

.section-theme-muted .partner-title .gradient-text-green {
    background: none;
    -webkit-text-fill-color: var(--ink-on-light);
    color: var(--ink-on-light);
    font-weight: 600;
}

.section-theme-muted .perk-num {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-on-light);
}

.section-theme-muted .perk-item {
    background: var(--bg-muted);
    border-color: var(--border-light);
}

.section-theme-muted .commission-showcase-box {
    background: var(--bg-muted);
    border-color: var(--border-light);
    padding: 24px;
}

.section-theme-muted .cs-val {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink-on-light);
}

.section-theme-muted .cs-label,
.section-theme-muted .cs-stats-row,
.section-theme-muted .cs-header {
    color: var(--ink-muted-on-light);
}

.section-theme-muted .partner-visual {
    opacity: 0.85;
}

.section-theme-muted .btn-partner-secondary {
    background: transparent;
    color: var(--ink-on-light);
    border-color: var(--border-light);
    box-shadow: none;
}

.section-theme-muted .btn-partner-secondary:hover {
    background: var(--bg-muted);
    color: var(--ink-on-light);
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: none;
}

.section-theme-muted .btn-partner-secondary i {
    color: var(--primary);
}

/* Services typography-led */
.section-theme-light .service-box {
    padding: 28px 24px;
}

.section-theme-light .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.section-theme-light .service-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA navy finish */
.cta-bottom-section.section-theme-navy .cta-glass-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 48px 24px 24px;
}

.cta-title {
    font-weight: 600;
}

/* Ambient glow quieter on light-heavy page */
.ambient-glow {
    opacity: 0.12;
}

@media (max-width: 991px) {
    :root {
        --section-pad-y: 88px;
    }

    .section-theme-muted .partner-glow-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .section-theme-muted .partner-visual {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --section-pad-y: 64px;
    }

    .hero-section {
        padding: 48px 0 64px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-products-line {
        font-size: 0.95rem;
    }
}
