/* ==========================================================================
   ayam Redesign — Dark Zen-Academia Design System (style.css)
   ========================================================================== */

:root {
    /* Color Palette (Dark Mode default) */
    --bg-dark: #0B130F;          /* Deep Forest-Black */
    --bg-dark-mid: #111D17;      /* Lighter Forest-Black */
    --bg-dark-light: #182B21;    /* Card & Container Background */
    --bg-dark-rgb: 11, 19, 15;   /* Raw RGB for transparency overrides */
    
    --bg-nav: rgba(11, 19, 15, 0.75);
    --bg-nav-scrolled: rgba(11, 19, 15, 0.95);
    
    --primary-gold: #D8B27E;     /* Champagne Gold */
    --primary-gold-dark: #A68252;
    --primary-gold-rgb: 216, 178, 126;
    
    --text-white: #F5F8F6;       /* Soft White */
    --text-gray: #A2B5AB;        /* Muted Sage-Gray */
    --text-dim: #70857A;
    
    --border-color: rgba(216, 178, 126, 0.12);
    --border-color-hover: rgba(216, 178, 126, 0.35);
    --status-neg-bg: rgba(162, 181, 171, 0.15);
    
    /* Typography */
    --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --shadow-soft: 0 12px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(216, 178, 126, 0.15);
    --shadow-glow-strong: 0 0 50px rgba(216, 178, 126, 0.3);
}

body.light-mode {
    /* Light Mode Overrides (Warm Minimalist) */
    --bg-dark: #FDFBF7;          /* Warm Cream */
    --bg-dark-mid: #F5F1E9;      /* Darker Cream background */
    --bg-dark-light: #FFFFFF;    /* Clean White Card */
    --bg-dark-rgb: 253, 251, 247;
    
    --bg-nav: rgba(253, 251, 247, 0.85);
    --bg-nav-scrolled: rgba(253, 251, 247, 0.95);
    
    --primary-gold: #C59B6A;     /* Warm Gold */
    --primary-gold-dark: #9E7445;
    --primary-gold-rgb: 197, 155, 106;
    
    --text-white: #1A1510;       /* Deep Earth Charcoal */
    --text-gray: #564F47;        /* Soft Charcoal-Brown */
    --text-dim: #8E8377;         /* Muted Sage-Gray/Brown */
    
    --border-color: rgba(197, 155, 106, 0.18);
    --border-color-hover: rgba(197, 155, 106, 0.45);
    --status-neg-bg: rgba(142, 131, 119, 0.18);
    
    --shadow-soft: 0 12px 40px -10px rgba(90, 80, 70, 0.06);
    --shadow-glow: 0 0 40px rgba(197, 155, 106, 0.08);
    --shadow-glow-strong: 0 0 50px rgba(197, 155, 106, 0.15);
}

/* Smooth Theme Transitions */
body, nav, .what-card, .who-item, .curr-card, .timeline-content, .outcome-item, .diff-card, .value-stack-card, .pricing-card, .faq-item, .faq-trigger, .faq-panel p, button, a, td, th {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
}

p {
    font-size: 16px;
    font-weight: 300;
}

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

/* Common Section Layouts */
section {
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.section-header {
    max-width: 760px;
    margin-bottom: 80px;
    text-align: left;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-header.centered .section-eyebrow {
    justify-content: center;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background-color: var(--primary-gold);
}

.section-title {
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--primary-gold);
}

.section-title span {
    background: linear-gradient(135deg, var(--text-white) 30%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Button & Link Styles */
.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    padding: 18px 40px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid var(--primary-gold);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(216, 178, 126, 0.15);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-primary.full-width {
    width: 100%;
}

.btn-ghost {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--primary-gold);
    transition: var(--transition-fast);
}

.btn-ghost:hover {
    border-color: var(--text-white);
    padding-left: 4px;
}

/* Radial Glows */
.radial-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-gold-rgb), 0.045) 0%, rgba(var(--bg-dark-rgb), 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    top: -100px;
    left: -100px;
}

.glow-2 {
    bottom: 0px;
    right: -200px;
}

.glow-cta {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(var(--primary-gold-rgb), 0.07) 0%, rgba(var(--bg-dark-rgb), 0) 70%);
}

/* Navigation Bar */
nav#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

nav#main-nav.scrolled {
    padding: 18px 48px;
    background: var(--bg-nav-scrolled);
    border-bottom-color: rgba(216, 178, 126, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-white);
}

.nav-logo span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    text-transform: uppercase;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
    border-color: var(--border-color-hover);
    background-color: rgba(255, 255, 255, 0.03);
}

.theme-toggle-btn .theme-icon-light {
    display: none;
    width: 18px;
    height: 18px;
}

.theme-toggle-btn .theme-icon-dark {
    display: block;
    width: 18px;
    height: 18px;
}

body.light-mode .theme-toggle-btn .theme-icon-light {
    display: block;
}

body.light-mode .theme-toggle-btn .theme-icon-dark {
    display: none;
}

body.light-mode .theme-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.lang-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0 10px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-gold);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
    border-color: var(--border-color-hover);
    background-color: rgba(255, 255, 255, 0.03);
}

body.light-mode .lang-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Bilingual Support Language Toggling */
body.lang-en .lang-tr {
    display: none !important;
}
body.lang-tr .lang-en {
    display: none !important;
}

.nav-cta {
    background-color: transparent;
    color: var(--primary-gold);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--primary-gold);
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* Mobile Navigation Drawer */
#mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-dark-mid);
    z-index: 999;
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 140px 32px 48px;
    border-left: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

#mobile-drawer.open {
    right: 0;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.drawer-link {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-white);
}

.drawer-cta {
    margin-top: 40px;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    padding: 16px;
    text-align: center;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 100px;
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-left {
    padding-right: 24px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background-color: var(--primary-gold);
}

.hero-title {
    font-size: clamp(48px, 5.8vw, 76px);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title span {
    font-weight: 300;
}

.hero-sub {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-key-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 48px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-white);
}

.bullet-icon {
    color: var(--primary-gold);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 46px;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--text-white), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.image-glass-card {
    position: absolute;
    inset: -12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    filter: grayscale(10%) contrast(105%);
}

.hero-badge {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background-color: var(--bg-dark-mid);
    padding: 24px 32px;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-gold);
    z-index: 10;
    animation: floating 6s ease-in-out infinite;
}

.hero-badge-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 6px;
}

.hero-badge-text {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.35;
    color: var(--text-white);
}

/* Animations */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Trust Strip Marquee */
.trust-strip {
    background-color: var(--bg-dark-mid);
    padding: 48px 0;
    border-y: 1px solid var(--border-color);
}

.trust-title {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark-mid), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark-mid), transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 35s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 48px;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text-white);
    opacity: 0.45;
    font-weight: 300;
    letter-spacing: 0.02em;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Method Section */
.method-section {
    background-color: var(--bg-dark);
}

.method-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.method-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 300;
}

.method-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.method-metrics {
    display: flex;
    gap: 32px;
}

.metric-box {
    background-color: var(--bg-dark-mid);
    padding: 24px 32px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    flex: 1;
}

.metric-box h4 {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 6px;
}

.metric-box p {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
}

.method-pillars {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar-card {
    background-color: var(--bg-dark-mid);
    padding: 36px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--border-color-hover);
    transform: translateX(8px);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 12px;
}

.pillar-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.pillar-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-gray);
}

/* Comparison Section */
.comparison-section {
    background-color: var(--bg-dark-mid);
    border-y: 1px solid var(--border-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    width: 100%;
    margin-top: 48px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-mid);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.comparison-table th, .comparison-table td {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.7;
    vertical-align: middle;
}

.comparison-table th {
    background-color: rgba(var(--bg-dark-rgb), 0.4);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    color: var(--text-gray);
}

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

.feature-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    background-color: var(--bg-dark-light);
    border-right: 1px solid var(--border-color);
}

/* Subtly Highlighted Column (The ayam Method®) */
.comparison-table .highlight-col {
    background-color: rgba(var(--primary-gold-rgb), 0.025);
    color: var(--text-white);
}

.comparison-table th.highlight-col {
    color: var(--primary-gold);
    background-color: rgba(var(--primary-gold-rgb), 0.04);
}


/* Target Audience Tabs Section */
.audience-section {
    background-color: var(--bg-dark);
}

.tabs-container {
    margin-top: 48px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-white);
}

.tab-btn.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(216, 178, 126, 0.2);
}

.tabs-content-wrapper {
    position: relative;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.tab-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-white);
}

.tab-lead {
    font-size: 18px;
    color: var(--primary-gold);
    line-height: 1.7;
    margin-bottom: 32px;
}

.tab-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab-bullets li {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.tab-bullets li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.tab-bullets li strong {
    color: var(--text-white);
}

.tab-image-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.tab-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: brightness(90%) contrast(105%);
}

/* Curriculum Section */
.curriculum-section {
    background-color: var(--bg-dark-mid);
    border-y: 1px solid var(--border-color);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.curr-card {
    background-color: var(--bg-dark-light);
    padding: 48px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.curr-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.curr-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 24px;
    display: inline-block;
}

.curr-card h3 {
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.curr-card-lead {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.curr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.curr-list li {
    font-size: 14.5px;
    line-height: 1.65;
    position: relative;
    padding-left: 20px;
}

.curr-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Timeline Section */
.timeline-section {
    background-color: var(--bg-dark);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(216, 178, 126, 0.08);
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-gold);
    transition: height 0.1s ease;
    box-shadow: 0 0 10px var(--primary-gold);
}

.timeline-step {
    position: relative;
    padding-left: 96px;
    margin-bottom: 80px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 32px;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-gold);
    z-index: 10;
    transition: var(--transition-smooth);
}

.timeline-step.active .timeline-dot {
    background-color: var(--primary-gold);
    box-shadow: var(--shadow-glow-strong);
}

.timeline-content {
    background-color: var(--bg-dark-light);
    padding: 36px 40px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.timeline-step.active .timeline-content {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.step-num {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--text-white);
}

.step-meta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.step-desc {
    font-size: 14.5px;
    line-height: 1.8;
}

/* Outcomes Section */
.outcomes-section {
    background-color: var(--bg-dark-mid);
    border-y: 1px solid var(--border-color);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.outcome-item {
    display: flex;
    gap: 24px;
    background-color: var(--bg-dark-light);
    padding: 36px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.outcome-item:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
}

.outcome-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-gold);
    background-color: rgba(216, 178, 126, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.outcome-check svg {
    width: 14px;
    height: 14px;
}

.outcome-info h3 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.outcome-info p {
    font-size: 14.5px;
    color: var(--text-gray);
    line-height: 1.75;
}

/* Founder Section */
.founder-section {
    background-color: var(--bg-dark);
}

.founder-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.founder-left {
    position: relative;
}

.founder-img-wrapper {
    position: relative;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
}

.img-accent-bg {
    position: absolute;
    inset: -12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.founder-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    filter: grayscale(10%) contrast(105%);
}

.founder-overlay-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--bg-dark-mid);
    color: var(--text-white);
    padding: 20px 28px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-gold);
    z-index: 10;
}

.badge-title {
    font-family: var(--font-display);
    font-size: 18px;
    display: block;
    line-height: 1.3;
}

.badge-subtitle {
    font-size: 10px;
    color: var(--primary-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.founder-name {
    font-size: clamp(38px, 4.5vw, 54px);
    margin-bottom: 8px;
}

.founder-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 32px;
}

.founder-bio {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 36px;
}

.founder-bio p:not(:last-child) {
    margin-bottom: 20px;
}

.creds-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.creds-tags span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-white);
    background-color: var(--bg-dark-mid);
    padding: 6px 14px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
}

.founder-stages {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 2;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.founder-stages strong {
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 15px;
}

/* Tuition Section */
.tuition-section {
    background-color: var(--bg-dark-mid);
    border-y: 1px solid var(--border-color);
}

.tuition-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: stretch;
    margin-top: 48px;
}

.value-stack-card {
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.value-stack-card h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-gold);
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.val-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14.5px;
}

.val-title {
    color: var(--text-white);
}

.val-price {
    color: var(--text-dim);
    font-family: var(--font-display);
}

.val-total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    margin-top: auto;
    font-family: var(--font-display);
    font-size: 20px;
}

.total-label {
    color: var(--text-white);
    font-weight: 500;
}

.total-price {
    color: var(--primary-gold);
    text-decoration: line-through;
}

.pricing-card {
    background-color: var(--bg-dark-light);
    border: 1px solid var(--primary-gold);
    padding: 48px;
    border-radius: 6px;
    box-shadow: var(--shadow-glow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.pricing-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-price .currency {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--text-white);
    vertical-align: super;
}

.pricing-price .price {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1;
}

.pricing-sub {
    font-size: 13.5px;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.pricing-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 40px;
    padding: 0 16px;
}

.pricing-bullets li {
    font-size: 14px;
    position: relative;
    padding-left: 24px;
}

.pricing-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.pricing-action {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.action-note {
    font-size: 11px;
    color: var(--text-dim);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(19px, 2.2vw, 22px);
    color: var(--text-white);
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 300;
    color: var(--primary-gold);
    transition: transform 0.4s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    padding-bottom: 28px;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-dark-mid);
    color: var(--text-white);
    padding: 150px 24px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.final-cta-title {
    font-size: clamp(40px, 4.8vw, 68px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.final-cta-title span {
    font-weight: 300;
    background: linear-gradient(135deg, var(--text-white), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-sub {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.85;
}

.btn-large {
    padding: 20px 48px;
    font-size: 14px;
}

.final-cta-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 20px;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: var(--text-dim);
    padding: 80px 48px 48px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    max-width: 1140px;
    margin: 0 auto 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-white);
}

.footer-brand span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    margin-left: 4px;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--text-white);
}

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    section {
        padding: 100px 24px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-key-bullets {
        align-items: center;
    }
    
    .hero-right {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .method-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .tab-image-box {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .founder-left {
        max-width: 360px;
        margin: 0 auto;
    }
    
    .tuition-container {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    nav#main-nav {
        padding: 20px 24px;
    }
    
    nav#main-nav.scrolled {
        padding: 14px 24px;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .nav-actions {
        margin-left: auto;
        margin-right: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Toggle active state (hamburger to cross) */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-step {
        padding-left: 56px;
    }
    
    .timeline-dot {
        left: 12px;
    }
    
    .value-stack-card, .pricing-card {
        padding: 40px 24px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .hero-badge {
        bottom: -20px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: calc(100% - 40px);
        text-align: center;
        padding: 16px 20px;
    }
    
    .method-metrics {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================================================================
   Embedded Registration Modal & Multi-Step Wizard
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--bg-dark-rgb), 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 720px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-soft);
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.95) translateY(30px);
}

.modal-card::-webkit-scrollbar {
    width: 6px;
}

.modal-card::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 3px;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-gray);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--text-white);
    background-color: rgba(var(--primary-gold-rgb), 0.1);
}

.modal-header {
    margin-bottom: 32px;
    padding-right: 40px;
}

.modal-header h2 {
    font-size: clamp(24px, 4vw, 28px);
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Step Progress Indicator */
.step-progress-wrapper {
    position: relative;
    margin-bottom: 48px;
    padding: 0 16px;
}

.step-progress-bar {
    height: 4px;
    background-color: var(--border-color);
    width: 100%;
    border-radius: 2px;
    position: relative;
}

.step-progress-line {
    height: 100%;
    width: 0%;
    background-color: var(--primary-gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.step-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -14px;
    left: 16px;
    width: calc(100% - 32px);
    pointer-events: none;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 60px;
}

.dot-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-dark-mid);
    border: 2px solid var(--border-color);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: var(--transition-smooth);
}

.step-dot.active .dot-icon {
    background-color: var(--bg-dark-light);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.step-dot.completed .dot-icon {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-dark);
}

.dot-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    transition: var(--transition-smooth);
    text-align: center;
}

.step-dot.active .dot-label {
    color: var(--primary-gold);
}

.step-dot.completed .dot-label {
    color: var(--text-white);
}

/* Form Fields */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInForm 0.5s ease forwards;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-white);
}

.form-group label .required {
    color: #E05A47;
    margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 15px;
    border-radius: 6px;
    background-color: var(--bg-dark-mid);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23D8B27E%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%2012%2015%2018%209%27%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-dark-light);
    color: var(--text-white);
}

.form-group textarea {
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Custom styled inputs */
.custom-radio-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-radio-list.inline {
    gap: 10px;
}

.custom-radio-list.cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.custom-radio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

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

.radio-card, .radio-box, .radio-box-full {
    position: relative;
    display: flex;
    cursor: pointer;
    transition: var(--transition-fast);
}

.radio-card input, .radio-box input, .radio-box-full input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-mid);
    border-radius: 8px;
    padding: 16px 20px;
    align-items: center;
}

.radio-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-card-content strong {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
}

.radio-card-content span {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}

.radio-box {
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-mid);
    border-radius: 6px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.radio-box span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition-fast);
    text-align: center;
    padding: 0 8px;
}

.radio-box-full {
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-mid);
    border-radius: 6px;
    padding: 14px 18px;
    align-items: center;
}

.radio-box-full span {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
    transition: var(--transition-fast);
}

/* Radio active states */
.radio-card:hover, .radio-box:hover, .radio-box-full:hover {
    border-color: var(--border-color-hover);
}

.radio-card:has(input:checked),
.radio-box:has(input:checked),
.radio-box-full:has(input:checked) {
    border-color: var(--primary-gold);
    background-color: rgba(var(--primary-gold-rgb), 0.05);
}

.radio-card:has(input:checked) strong,
.radio-box:has(input:checked) span,
.radio-box-full:has(input:checked) span {
    color: var(--primary-gold);
}

/* Agreement checkbox */
.checkbox-group {
    margin-top: 12px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-mid);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--border-color-hover);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Form Action Buttons */
.form-actions-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.btn-form {
    min-width: 140px;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    cursor: pointer;
}

#btn-back {
    display: none;
}

#btn-submit {
    display: none;
}

/* Success Screen */
.success-screen-container {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0 12px 0;
}

.success-screen-container.active {
    display: flex;
    animation: fadeInForm 0.6s ease forwards;
}

.success-icon-wrapper {
    margin-bottom: 28px;
}

.success-checkmark svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--primary-gold);
    stroke-miterlimit: 10;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s forwards;
}

.success-checkmark circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primary-gold);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--bg-dark);
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px var(--primary-gold);
    }
}

.success-screen-container h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--text-white);
    margin-bottom: 12px;
}

.success-desc {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.success-next-steps {
    text-align: left;
    background-color: var(--bg-dark-mid);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px 32px;
    max-width: 500px;
    width: 100%;
    margin-bottom: 36px;
}

.success-next-steps h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.success-next-steps ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.success-next-steps li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.success-next-steps li span {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Modal Responsive overrides */
@media (max-width: 768px) {
    .modal-card {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .custom-radio-list.cols-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .custom-radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-radio-grid.cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Form Validation Styling */
.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
    border-color: #E05A47 !important;
    box-shadow: 0 0 10px rgba(224, 90, 71, 0.15) !important;
}

.form-group.validation-error label {
    color: #E05A47 !important;
}

.form-group.validation-error .custom-radio-list,
.form-group.validation-error .custom-radio-grid {
    outline: 1px solid rgba(224, 90, 71, 0.3);
    outline-offset: 4px;
    border-radius: 6px;
}

