/* ===================================
   PEYSON ROBERTSON — peysonrobertson.com
   Black, Gray, Blue
   =================================== */

:root {
    --black: #151520;
    --dark: #1C1C28;
    --card: #242432;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --blue: #2563EB;
    --blue-hover: #1D4ED8;
    --blue-glow: rgba(37, 99, 235, 0.25);
    --accent: #10B981;
    --accent-hover: #059669;
    --accent-glow: rgba(16, 185, 129, 0.25);
    --gray: #A0A0A8;
    --gray-dark: #78788A;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(37, 99, 235, 0.25);
    --font-heading: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--light); background: var(--black); overflow-x: hidden; }
::selection { background: var(--blue); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-alt { background: var(--dark); }
.text-blue { color: var(--blue); }
.text-accent { color: var(--accent); }

/* === NAVIGATION === */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(21,21,32,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 14px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); opacity: 0.7; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }
.nav-links .nav-cta { display: none; }
.nav-cta-desktop { padding: 10px 28px; background: var(--blue); color: var(--white); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 6px; transition: background 0.3s; }
.nav-cta-desktop:hover { background: var(--blue-hover); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--light); transition: all 0.3s; transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; background: var(--black); padding: 140px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-text { }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.75rem, 5.5vw, 4.5rem); font-weight: 700; line-height: 1.08; margin-bottom: 24px; color: var(--white); }
.hero-subtitle { font-size: 1.125rem; line-height: 1.7; color: var(--gray); margin-bottom: 12px; max-width: 480px; }
.hero-proof { font-size: 1rem; color: var(--blue); font-weight: 500; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Hero media */
.hero-media-inner { aspect-ratio: 4/3; background: linear-gradient(145deg, var(--card), #2A2A3A); border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 12px 48px rgba(37, 99, 235, 0.3), 0 0 80px rgba(37, 99, 235, 0.15); }
.hero-media-inner iframe { width: 100%; height: 100%; border: none; }
.media-initials { font-size: 5rem; font-weight: 300; color: rgba(37,99,235,0.08); letter-spacing: 0.1em; user-select: none; }
.media-placeholder { font-size: 1.125rem; font-weight: 500; color: var(--gray); letter-spacing: 0.05em; user-select: none; }

/* Hero animations */
.anim-1 { opacity: 0; animation: fadeUp .7s ease forwards .2s; }
.anim-2 { opacity: 0; animation: fadeUp .7s ease forwards .35s; }
.anim-3 { opacity: 0; animation: fadeUp .7s ease forwards .5s; }
.anim-4 { opacity: 0; animation: fadeUp .7s ease forwards .6s; }
.anim-5 { opacity: 0; animation: fadeUp .7s ease forwards .75s; }
.anim-6 { opacity: 0; animation: fadeUp .7s ease forwards .5s; }

/* === BADGE === */
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border: 1px solid rgba(37,99,235,0.2); border-radius: 100px; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light); margin-bottom: 28px; }
.badge-center { margin-left: auto; margin-right: auto; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; box-shadow: 0 0 8px rgba(37, 99, 235, 0.6), 0 0 20px rgba(37, 99, 235, 0.3); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border: 1px solid transparent; border-radius: 6px; transition: all 0.3s; cursor: pointer; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 0 20px rgba(37, 99, 235, 0.2); }
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); box-shadow: 0 0 30px rgba(37, 99, 235, 0.4), 0 0 60px rgba(37, 99, 235, 0.15); }
.btn-ghost { background: transparent; color: var(--light); border-color: rgba(255,255,255,0.15); border-radius: 6px; }
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }
.btn-arrow svg { transition: transform 0.3s; }
.btn-arrow:hover svg { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 12px 24px; }

/* === SECTION TYPOGRAPHY === */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { display: block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.0625rem; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 48px; }

/* === STATS BAR === */
.stats-bar { background: #F0F0F2; padding: 64px 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 36px 24px; background: var(--white); border: 1px solid rgba(16,185,129,0.15); border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 0 30px rgba(16,185,129,0.15), 0 0 60px rgba(16,185,129,0.06); transition: box-shadow 0.3s, transform 0.3s; }
.stat-item:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 0 40px rgba(16,185,129,0.25), 0 0 80px rgba(16,185,129,0.1); }
.stat-number { display: block; font-family: var(--font-heading); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 600; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #6B6B7B; line-height: 1.4; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media-inner { aspect-ratio: 3/4; background: linear-gradient(145deg, var(--card), #2A2A3A); border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; aspect-ratio: 3/4; box-shadow: 0 12px 48px rgba(37, 99, 235, 0.25), 0 0 80px rgba(37, 99, 235, 0.12); }
.about-text .section-label { color: var(--blue); margin-bottom: 16px; }
.about-text .section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); text-align: left; margin-bottom: 24px; }
.about-body p { color: rgba(245,245,245,0.85); margin-bottom: 20px; line-height: 1.8; }
.about-body p:last-child { margin-bottom: 0; }

/* === PATH CARDS === */
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.path-card { display: flex; flex-direction: column; background: linear-gradient(155deg, var(--card) 0%, #2A2A3A 100%); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; transition: all 0.35s; box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12), 0 0 40px rgba(37, 99, 235, 0.06); }
.path-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(37, 99, 235, 0.25), 0 0 60px rgba(37, 99, 235, 0.12); }
.path-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 24px; }
.path-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.path-subtitle { font-size: 0.9375rem; color: var(--gray); font-style: italic; margin-bottom: 20px; }
.path-desc { font-size: 0.9375rem; color: rgba(245,245,245,0.85); line-height: 1.7; flex: 1; margin-bottom: 32px; }
.path-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-top: auto; }
.path-link svg { transition: transform 0.3s; }
.path-card:hover .path-link svg { transform: translateX(4px); }

/* === FEATURED VIDEOS === */
.featured-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.featured-left { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 600; color: var(--white); }
.featured-left .yt-icon { width: 22px; height: 22px; }
.view-channel { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); transition: color 0.3s; }
.view-channel:hover { color: var(--light); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.video-card { display: block; transition: transform 0.3s; }
.video-card:hover { transform: translateY(-4px); }
.video-thumb { border-radius: 10px; overflow: hidden; margin-bottom: 12px; aspect-ratio: 16/9; background: var(--card); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15), 0 0 40px rgba(37, 99, 235, 0.08); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card h4 { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500; color: var(--light); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* === CHANNEL CARDS === */
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
.channel-card { display: grid; grid-template-columns: 44px 1fr auto; grid-template-rows: auto auto; gap: 0 16px; align-items: center; padding: 24px 28px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s; box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06); }
.channel-card:hover { border-color: var(--border-hover); box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18), 0 0 50px rgba(37, 99, 235, 0.08); }
.channel-icon { grid-row: 1; width: 40px; height: 40px; color: var(--blue); filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4)); }
.channel-icon svg { width: 100%; height: 100%; }
.channel-info { grid-row: 1; }
.channel-info h3 { font-size: 1.125rem; font-weight: 500; color: var(--white); line-height: 1.2; }
.channel-info p { font-size: 0.75rem; color: var(--blue); }
.channel-arrow { grid-row: 1; color: var(--gray-dark); transition: all 0.3s; }
.channel-card:hover .channel-arrow { color: var(--blue); transform: translate(2px, -2px); }
.channel-desc { grid-column: 1 / -1; font-size: 0.875rem; color: var(--gray); margin-top: 12px; line-height: 1.5; }

/* === RESOURCES LIST === */
.resources-list { max-width: 760px; margin: 0 auto; }
.resource-category { margin-bottom: 40px; }
.resource-category:last-child { margin-bottom: 0; }
.resource-category h3 { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.resource-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); transition: all 0.3s; color: var(--light); }
.resource-item span { font-size: 1.0625rem; font-weight: 500; }
.resource-item .arrow { flex-shrink: 0; margin-left: 16px; opacity: 0.2; transition: all 0.3s; }
.resource-item:hover { padding-left: 8px; color: var(--blue); }
.resource-item:hover .arrow { transform: translateX(4px); opacity: 1; }

/* === CLIENT STATS === */
.client-stats { display: flex; justify-content: center; gap: 80px; margin-top: 48px; }

/* === NEWSLETTER === */
.newsletter-block { max-width: 560px; margin: 0 auto 12px; }
.ghl-form-wrap { width: 100%; height: 300px; border-radius: 8px; overflow: hidden; }
.trust-row { display: flex; justify-content: center; gap: 32px; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }

/* === FOOTER === */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: block; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.6; margin-bottom: 16px; }
.footer-dre { font-size: 0.75rem; color: var(--gray-dark); }
.footer-col h4 { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--gray-dark); margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--light); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border); }
.footer-bottom span { font-size: 0.75rem; color: var(--gray-dark); }

/* === FORM PAGES === */
.page-header { background: var(--black); color: var(--light); padding: 160px 32px 80px; text-align: center; }
.page-header .section-label { color: var(--blue); }
.page-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.page-subtitle { font-size: 1.0625rem; font-style: italic; color: var(--gray); }
.form-section { background: var(--dark); padding: 80px 0 120px; }
.form-container { max-width: 600px; margin: 0 auto; }
.form-heading { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 600; margin-bottom: 12px; }
.form-intro { margin-bottom: 48px; }
.form-intro p, .form-intro-text { font-size: 1.0625rem; line-height: 1.7; color: var(--gray); margin-bottom: 16px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 16px; font-family: var(--font-body); font-size: 1rem; border: 1px solid var(--border); background: var(--card); color: var(--light); outline: none; transition: border-color 0.3s; border-radius: 6px; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235A5A5A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 40px; }

/* eXp page */
.exp-content { max-width: 640px; }
.exp-content p { font-size: 1.0625rem; line-height: 1.8; color: rgba(245,245,245,0.85); margin-bottom: 24px; }
.exp-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; padding-top: 56px; border-top: 1px solid var(--border); }
.exp-highlight { text-align: center; }
.exp-highlight .stat-number { font-size: 1.25rem; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.exp-highlight .stat-label { font-size: 0.8125rem; color: var(--gray); line-height: 1.5; }

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-media { max-width: 500px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-media-inner { aspect-ratio: 16/9; max-width: 500px; }
    .about-text .section-title { text-align: left; }
    .path-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .channel-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 64px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .trusted-logos { gap: 24px; }
    .trusted-logos span { font-size: 0.8125rem; }
    .testimonial-card { padding: 32px 24px; }
    .testimonial-text { font-size: 1rem; }
    .ticker-inner { gap: 40px; }
    .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; height: 100vh; background-color: #151520; flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; -webkit-transform: translateZ(0); transform: translateZ(0); }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; opacity: 1; }
    .nav-links .nav-cta { display: inline-flex; padding: 12px 28px; background: var(--blue); color: var(--white); border-radius: 6px; opacity: 1; margin-top: 8px; }
    .nav-cta-desktop { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(2.25rem, 7vw, 3.5rem); }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .client-stats { flex-wrap: wrap; gap: 32px 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-row { flex-direction: column; align-items: center; gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .exp-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
    .video-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .client-stats { flex-direction: column; gap: 24px; }
    .nav-logo { font-size: 0.75rem; letter-spacing: 0.15em; }
    .badge { font-size: 0.5625rem; padding: 6px 14px; }
}

/* ===================================
   APPLY / 7FAC PAGE
   =================================== */

/* Light Section */
.section-light { background: #F0F0F2; }
.section-light .section-label { color: var(--blue); }
.section-light .section-title { color: #1A1A2E; }
.section-light .section-desc { color: #4A4A5E; }
.section-light .phase-title { color: #1A1A2E; }
.section-light .phase-desc { color: #4A4A5E; }
.section-light .week-card { background: var(--white); border-color: rgba(0,0,0,0.08); }
.section-light .week-card:hover { border-color: var(--blue); }
.section-light .week-card h4 { color: #1A1A2E; }
.section-light .week-card p { color: #4A4A5E; }
.section-light .phase-icon { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.18); }

/* Light section: about overrides */
.section-light .about-body p { color: #4A4A5E; }
.section-light .about-text .section-title { color: #1A1A2E; }
.section-light .about-text .section-label { color: var(--blue); }
.section-light .about-photo { box-shadow: 0 12px 48px rgba(0,0,0,0.12); }

/* Light section: path card overrides */
.section-light .path-card { background: var(--white); border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.section-light .path-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(37,99,235,0.12); }
.section-light .path-title { color: #1A1A2E; }
.section-light .path-subtitle { color: #6B6B7B; }
.section-light .path-desc { color: #5A5A6E; }

/* Light section: channel card overrides */
.section-light .channel-card { background: var(--white); border-color: rgba(0,0,0,0.06); }
.section-light .channel-card:hover { border-color: var(--blue); }
.section-light .channel-info h3 { color: #1A1A2E; }
.section-light .channel-desc { color: #5A5A6E; }

/* Light section: resource overrides */
.section-light .resource-category h3 { color: #6B6B7B; border-color: rgba(0,0,0,0.08); }
.section-light .resource-item { color: #1A1A2E; border-color: rgba(0,0,0,0.06); }
.section-light .resource-item:hover { color: var(--blue); }

/* Light section: video card overrides */
.section-light .video-thumb { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.section-light .video-card h4 { color: #1A1A2E; }
.section-light .featured-left span { color: #1A1A2E; }
.section-light .view-channel { color: #6B6B7B; }

/* Light section: newsletter overrides */
.section-light .trust-item { color: #6B6B7B; }

/* Light section: client stats overrides */
.section-light .stat-item { background: var(--white); border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.section-light .stat-number { color: var(--accent); }
.section-light .stat-label { color: #6B6B7B; }

/* Light section: outcome/qual overrides */
.section-light .outcome-item { background: var(--white); border-color: rgba(0,0,0,0.06); }
.section-light .outcome-item p { color: #4A4A5E; }
.section-light .outcome-item strong { color: #1A1A2E; }
.section-light .qual-card { background: var(--white); border-color: rgba(0,0,0,0.06); }
.section-light .qual-header h3 { color: #1A1A2E; }
.section-light .qual-item p { color: #4A4A5E; }

/* Light section: badge overrides */
.section-light .badge { color: #1A1A2E; border-color: rgba(37,99,235,0.25); }

/* Light section: FAQ overrides */
.section-light .faq-item { border-color: rgba(0,0,0,0.08); }
.section-light .faq-question { color: #1A1A2E; }
.section-light .faq-question:hover { color: var(--blue); }
.section-light .faq-answer p { color: #5A5A6E; }
.section-light .faq-arrow { color: #9A9AA8; }

/* Light section: pill badge overrides */
.section-light .pill-badge { color: #6B6B7B; border-color: rgba(0,0,0,0.1); }

/* Light section: journey block overrides */
.section-light .journey-icon-wrap { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.18); }
.section-light .journey-title { color: #1A1A2E; }
.section-light .journey-text p { color: #4A4A5E; }
.section-light .journey-media-inner { background: var(--white); border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.section-light .media-initials { color: #1A1A2E; }

/* Light section: proof card overrides */
.section-light .proof-card { background: var(--white); border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.section-light .proof-card p { color: #4A4A5E; }
.section-light .proof-check { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.18); }

/* Light section: pillar card overrides */
.section-light .pillar-card { background: var(--white); border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.section-light .pillar-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(37,99,235,0.12); }
.section-light .pillar-card h3 { color: #1A1A2E; }
.section-light .pillar-card p { color: #4A4A5E; }
.section-light .pillar-icon { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.18); }

/* === TRUSTED BAR === */
.trusted-bar { background: #F0F0F2; padding: 40px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.trusted-label { display: block; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: #9A9AA8; margin-bottom: 16px; }
.trusted-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trusted-logos span { font-size: 0.9375rem; font-weight: 600; color: #8A8A96; letter-spacing: 0.02em; }

/* === TESTIMONIAL === */
.testimonial-section { padding: 80px 0; }
.testimonial-card { max-width: 800px; margin: 0 auto; padding: 48px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 8px 40px rgba(37, 99, 235, 0.15), 0 0 60px rgba(37, 99, 235, 0.08); }
.testimonial-quote-mark { font-family: var(--font-heading); font-size: 4rem; line-height: 1; color: var(--accent); margin-bottom: 8px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testimonial-text { font-size: 1.125rem; line-height: 1.7; color: rgba(245,245,245,0.85); margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 1rem; color: var(--white); }
.testimonial-author span { font-size: 0.8125rem; color: var(--gray); }

/* Light testimonial */
.section-light .testimonial-card { background: var(--white); border-color: rgba(0,0,0,0.06); box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.section-light .testimonial-text { color: #3A3A4E; }
.section-light .testimonial-author strong { color: #1A1A2E; }
.section-light .testimonial-author span { color: #6B6B7B; }

/* === BROKERAGE TICKER === */
.ticker-section { padding: 48px 0; overflow: hidden; }
.ticker-label { display: block; text-align: center; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: #9A9AA8; margin-bottom: 24px; }
.ticker-track { position: relative; width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.ticker-inner { display: flex; gap: 56px; animation: ticker 25s linear infinite; width: max-content; }
.ticker-inner span { font-size: 1rem; font-weight: 600; color: #8A8A96; white-space: nowrap; letter-spacing: 0.02em; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Dark ticker */
.section-alt .ticker-label, .testimonial-section:not(.section-light) .ticker-label { color: var(--gray-dark); }
.section-alt .ticker-inner span, .testimonial-section:not(.section-light) .ticker-inner span { color: var(--gray-dark); }

/* Apply Hero */
.apply-hero { padding: 160px 0 80px; background: var(--black); text-align: center; }
.apply-hero-content { max-width: 800px; margin: 0 auto; }
.apply-headline { font-family: var(--font-heading); font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.apply-subtitle { font-size: 1.125rem; line-height: 1.7; color: var(--gray); max-width: 600px; margin: 0 auto 48px; }
.apply-video { max-width: 720px; margin: 0 auto 48px; }
.apply-video-inner { position: relative; padding-bottom: 56.25%; border-radius: 16px; overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.apply-video-inner iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.apply-cta { margin-bottom: 0; }
.btn-lg { padding: 20px 44px; font-size: 0.8125rem; }

/* Phase Blocks */
.phase-block { margin-bottom: 80px; }
.phase-block:last-of-type { margin-bottom: 0; }
.phase-header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.phase-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.phase-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.phase-desc { font-size: 0.9375rem; color: var(--gray); margin-top: 4px; }

/* Week Cards */
.week-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.week-card { padding: 32px 28px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; transition: all 0.3s; }
.week-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.week-badge { display: inline-block; padding: 5px 14px; background: rgba(37, 99, 235, 0.12); border: 1px solid rgba(37, 99, 235, 0.2); border-radius: 100px; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.week-card h4 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.week-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* Support Block */
.support-block { background: linear-gradient(155deg, var(--card) 0%, #2A2A3A 100%); border: 1px solid var(--border); border-radius: 20px; padding: 48px; }
.support-header { margin-bottom: 40px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.support-item { display: flex; gap: 16px; align-items: flex-start; }
.support-check { flex-shrink: 0; margin-top: 2px; }
.support-item strong { display: block; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.support-item p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* Outcomes */
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.outcome-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px 28px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.outcome-check { flex-shrink: 0; margin-top: 2px; }
.outcome-item p { font-size: 0.9375rem; color: rgba(245,245,245,0.9); line-height: 1.6; }
.outcome-item strong { color: var(--white); }

/* What Happens on the Call */
.call-content { max-width: 700px; margin: 0 auto; text-align: center; }
.call-title { margin-bottom: 20px; }
.call-desc { font-size: 1.0625rem; color: var(--gray); line-height: 1.7; margin-bottom: 48px; }
.steps-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 48px; text-align: left; }
.steps-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 32px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.step-item:last-of-type { margin-bottom: 0; }
.step-number { width: 40px; height: 40px; border-radius: 50%; background: rgba(37, 99, 235, 0.12); border: 1px solid rgba(37, 99, 235, 0.2); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.step-item p { font-size: 1.0625rem; color: rgba(245,245,245,0.85); line-height: 1.6; padding-top: 8px; }
.steps-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--blue); font-size: 1rem; }

/* Qualification */
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.qual-card { padding: 40px 36px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; }
.qual-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.qual-header h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--white); }
.qual-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.qual-item:last-child { margin-bottom: 0; }
.qual-item svg { flex-shrink: 0; margin-top: 2px; }
.qual-item p { font-size: 0.9375rem; line-height: 1.6; color: rgba(245,245,245,0.9); }

/* Final CTA */
.final-cta-content { max-width: 700px; margin: 0 auto; text-align: center; }
.final-headline { margin-bottom: 28px; }
.final-text { font-size: 1.0625rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.final-bold { font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: 40px; }
.final-note { font-size: 0.875rem; color: var(--gray-dark); margin-top: 24px; }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; color: var(--light); font-family: var(--font-body); font-size: 1.0625rem; font-weight: 500; line-height: 1.4; }
.faq-question:hover { color: var(--white); }
.faq-arrow { flex-shrink: 0; transition: transform 0.3s; color: var(--gray-dark); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

/* Apply Page Responsive */
@media (max-width: 1024px) {
    .week-grid { grid-template-columns: repeat(2, 1fr); }
    .support-grid { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: 1fr; max-width: 500px; }
    .qual-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .apply-hero { padding: 120px 0 60px; }
    .apply-headline { font-size: clamp(2rem, 7vw, 3.25rem); }
    .support-block { padding: 32px 24px; }
    .steps-card { padding: 32px 24px; }
    .qual-card { padding: 28px 24px; }
    .btn-lg { padding: 16px 32px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
    .week-grid { grid-template-columns: 1fr; }
    .phase-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===================================
   ABOUT & RESULTS PAGES
   =================================== */

/* Active nav link */
.nav-links a.nav-active { opacity: 1; }

/* Pill badge */
.pill-badge { display: inline-block; padding: 8px 20px; border: 1px solid var(--border); border-radius: 100px; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }

/* === STORY HERO (split layout) === */
.story-hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--black); }
.story-hero > .container { display: flex; align-items: center; }
.story-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 140px 64px 80px 0; max-width: 640px; margin-left: auto; }
.story-label { display: flex; align-items: center; gap: 16px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 32px; }
.story-label::before { content: ''; width: 40px; height: 2px; background: var(--accent); }
.story-headline { font-family: var(--font-heading); font-size: clamp(3rem, 5.5vw, 4.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 28px; color: var(--white); }
.story-intro { font-size: 1.125rem; line-height: 1.7; color: var(--gray); margin-bottom: 20px; }
.story-quote { font-size: 1.0625rem; font-style: italic; color: rgba(245,245,245,0.85); padding-left: 20px; border-left: 3px solid var(--accent); margin-bottom: 48px; line-height: 1.6; }
.story-stats { display: flex; gap: 48px; }
.story-stat { text-align: left; }
.story-stat-number { display: block; font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.story-stat-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-dark); }
.story-hero-media { position: relative; overflow: hidden; }
.story-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* === JOURNEY BLOCKS === */
.journey-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.journey-block:last-of-type { margin-bottom: 0; }
.journey-block-reverse { direction: rtl; }
.journey-block-reverse > * { direction: ltr; }
.journey-icon-wrap { width: 48px; height: 48px; border-radius: 50%; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2); display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 20px; }
.journey-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.journey-text p { color: rgba(245,245,245,0.85); line-height: 1.8; margin-bottom: 16px; }
.journey-text p:last-child { margin-bottom: 0; }
.journey-media-inner { aspect-ratio: 4/5; background: linear-gradient(145deg, var(--card), #2A2A3A); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 48px rgba(16, 185, 129, 0.2), 0 0 80px rgba(16, 185, 129, 0.1); }
.journey-media-inner img { width: 100%; height: 100%; object-fit: cover; }

/* === PROOF GRID === */
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 800px; margin: 0 auto 64px; }
.proof-card { padding: 28px 32px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; display: flex; gap: 20px; align-items: flex-start; }
.proof-check { width: 36px; height: 36px; border-radius: 8px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.proof-card p { font-size: 1rem; line-height: 1.7; color: rgba(245,245,245,0.9); }

/* === ABOUT STATS GRID === */
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* === PILLAR GRID === */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.pillar-card { padding: 40px 32px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; text-align: center; transition: all 0.3s; }
.pillar-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.pillar-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2); display: flex; align-items: center; justify-content: center; color: var(--blue); margin: 0 auto 24px; }
.pillar-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.pillar-card p { font-size: 0.9375rem; color: var(--gray); line-height: 1.6; }

/* === CTA BLOCK === */
.cta-block { padding: 120px 0; }
.cta-block-inner { max-width: 640px; margin: 0 auto; text-align: center; padding: 64px 48px; background: linear-gradient(145deg, rgba(37,99,235,0.12), rgba(37,99,235,0.04)); border: 1px solid rgba(37,99,235,0.2); border-radius: 24px; }
.cta-block-inner h2 { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 600; color: var(--white); margin-bottom: 12px; }
.cta-block-inner p { font-size: 1.0625rem; color: var(--gray); margin-bottom: 32px; }

/* === CASE STUDIES === */
.case-study { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-bottom: 40px; }
.case-study:last-of-type { margin-bottom: 0; }
.case-study-title { font-family: var(--font-heading); font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; color: var(--white); margin-bottom: 32px; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.case-video { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: var(--black); display: block; }
.case-video img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.case-video:hover img { transform: scale(1.03); }
.play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.35); transition: background 0.3s; }
.case-video:hover .play-overlay { background: rgba(0,0,0,0.2); }
.play-overlay svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.case-results-label { display: block; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.case-results-list { list-style: none; padding: 0; }
.case-results-list li { position: relative; padding-left: 24px; margin-bottom: 20px; font-size: 1rem; line-height: 1.6; color: rgba(245,245,245,0.9); }
.case-results-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.case-results-list li:last-child { margin-bottom: 0; }
.case-story { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.case-story-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.case-story p { color: rgba(245,245,245,0.85); line-height: 1.8; margin-bottom: 16px; }
.case-story p:last-child { margin-bottom: 0; }

/* === ABOUT / RESULTS RESPONSIVE === */
@media (max-width: 1024px) {
    .story-hero { grid-template-columns: 1fr; }
    .story-hero-text { max-width: 100%; margin: 0; padding: 140px 0 0; }
    .story-hero-media { max-height: 500px; }
    .journey-block { grid-template-columns: 1fr; gap: 40px; }
    .journey-block-reverse { direction: ltr; }
    .journey-media { max-width: 400px; }
    .pillar-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 48px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .case-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .story-hero { min-height: auto; }
    .story-hero-text { padding: 120px 0 40px; }
    .story-headline { font-size: clamp(2.25rem, 7vw, 3.5rem); }
    .story-stats { gap: 24px; }
    .journey-block { margin-bottom: 64px; }
    .proof-card { flex-direction: column; gap: 12px; }
    .case-study { padding: 24px; }
}

@media (max-width: 480px) {
    .story-stats { flex-direction: column; gap: 16px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-block-inner { padding: 40px 24px; }
    .cta-block { padding: 64px 0; }
}
