/* EXLPRS V14 - Complete Styles */
:root {
    --brand-red: #C1424E;
    --brand-red-dark: #9a343d;
    --brand-red-light: #e85a67;
    --bg-primary: #FDFCFA;
    --bg-secondary: #F7F5F2;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #8A8A8A;
    --text-light: #FFFFFF;
    --border-light: rgba(26, 26, 26, 0.08);
    --border-medium: rgba(26, 26, 26, 0.12);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 8px 40px rgba(193, 66, 78, 0.2);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* LOADER */
.loader { position: fixed; inset: 0; background: var(--bg-primary); display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo-container { background: var(--bg-dark); padding: 24px 32px; border-radius: 16px; margin-bottom: 24px; animation: loaderFloat 2s ease-in-out infinite; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
.loader-logo { width: 140px; height: auto; }
@keyframes loaderFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.loader-text { font-size: 1rem; color: var(--text-secondary); margin-bottom: 20px; animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.loader-bar { width: 200px; height: 3px; background: var(--border-light); border-radius: 3px; overflow: hidden; margin: 0 auto 16px; }
.loader-progress { height: 100%; background: linear-gradient(90deg, var(--brand-red), var(--brand-red-light)); width: 0; animation: loaderProgress 2s ease-out forwards; }
@keyframes loaderProgress { 0% { width: 0; } 100% { width: 100%; } }
.loader-tagline { font-size: 0.7rem; letter-spacing: 0.25em; color: var(--text-muted); text-transform: uppercase; }

/* FLOATING CTA */
.floating-cta { position: fixed; bottom: 100px; left: 24px; z-index: 8000; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition-smooth); }
.floating-cta.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-cta-btn { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light)); color: white; border-radius: 50px; font-weight: 600; font-size: 0.9rem; box-shadow: 0 10px 40px rgba(193, 66, 78, 0.4); transition: var(--transition-smooth); animation: floatCta 3s ease-in-out infinite; }
@keyframes floatCta { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.floating-cta-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 50px rgba(193, 66, 78, 0.5); }
.floating-cta-icon { display: flex; }
.floating-cta-badge { position: absolute; top: -8px; right: -8px; background: #10B981; color: white; font-size: 0.6rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@media (max-width: 768px) { .floating-cta { bottom: 90px; left: 16px; } .floating-cta-text { display: none; } .floating-cta-btn { padding: 14px; border-radius: 50%; } }

/* NAVIGATION */
.navbar { position: fixed; top: 0; left: 0; right: 0; padding: 16px 0; z-index: 9000; transition: var(--transition-smooth); }
.navbar.scrolled { background: rgba(253, 252, 250, 0.95); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { height: 44px; width: auto; background: var(--bg-dark); padding: 8px 12px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition-fast); }
.nav-links a:hover { color: var(--brand-red); }
.nav-cta { position: relative; background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light)) !important; color: white !important; padding: 12px 24px !important; border-radius: 8px; font-weight: 600 !important; animation: navCtaPulse 2s ease-in-out infinite; }
.nav-cta-pulse { position: absolute; inset: -3px; border-radius: 11px; background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light)); opacity: 0; animation: navCtaRing 2s ease-in-out infinite; z-index: -1; }
@keyframes navCtaPulse { 0%, 100% { box-shadow: 0 4px 15px rgba(193, 66, 78, 0.3); } 50% { box-shadow: 0 6px 25px rgba(193, 66, 78, 0.5); } }
@keyframes navCtaRing { 0%, 100% { transform: scale(1); opacity: 0; } 50% { transform: scale(1.05); opacity: 0.3; } }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); }
@media (max-width: 900px) { .nav-links { display: none; } .nav-mobile-toggle { display: flex; } }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(253, 252, 250, 0.98); backdrop-filter: blur(20px); padding: 24px; flex-direction: column; gap: 16px; z-index: 8999; border-bottom: 1px solid var(--border-light); }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; padding: 12px; border-radius: 8px; }
.mobile-menu a:hover { background: var(--bg-secondary); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 140px 24px 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(193, 66, 78, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(193, 66, 78, 0.03) 0%, transparent 50%); }
.hero-content { max-width: 900px; text-align: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 24px; background: rgba(193, 66, 78, 0.08); border: 1px solid rgba(193, 66, 78, 0.2); border-radius: 50px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; color: var(--brand-red); margin-bottom: 32px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--brand-red); border-radius: 50%; animation: heroBadgePulse 2s ease-in-out infinite; }
@keyframes heroBadgePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 400; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
.hero-title-accent { display: block; background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 650px; margin: 0 auto 40px; line-height: 1.7; }
.hero-subtitle em { font-style: italic; color: var(--brand-red); }
.hero-cta-group { margin-bottom: 50px; }
.hero-cta-note { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-value { display: inline; font-size: 2.5rem; font-weight: 700; color: var(--brand-red); line-height: 1; }
.hero-stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--brand-red); }
.hero-stat-label { display: block; margin-top: 8px; font-size: 0.85rem; color: var(--text-muted); }
.hero-stat-divider { width: 1px; height: 50px; background: var(--border-light); }
@media (max-width: 768px) { .hero-stats { gap: 24px; } .hero-stat-divider { display: none; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 10px; font-size: 1rem; font-weight: 600; font-family: var(--font-body); cursor: pointer; border: none; transition: var(--transition-smooth); }
.btn-primary { background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light)); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border-medium); }
.btn-secondary:hover { border-color: var(--brand-red); color: var(--brand-red); }
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn-glow { animation: btnGlow 2.5s ease-in-out infinite; }
@keyframes btnGlow { 0%, 100% { box-shadow: 0 4px 20px rgba(193, 66, 78, 0.3); } 50% { box-shadow: 0 6px 35px rgba(193, 66, 78, 0.5), 0 0 0 4px rgba(193, 66, 78, 0.1); } }
.btn-pulse-slow { animation: btnPulseSlow 4s ease-in-out infinite; }
@keyframes btnPulseSlow { 0%, 100% { box-shadow: 0 4px 15px rgba(193, 66, 78, 0.2); } 50% { box-shadow: 0 6px 25px rgba(193, 66, 78, 0.4); } }

/* CREDIBILITY BAR */
.credibility-bar { background: var(--bg-secondary); padding: 24px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.credibility-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.credibility-item { display: flex; align-items: center; gap: 12px; }
.credibility-icon { font-size: 1.5rem; }
.credibility-text { text-align: left; }
.credibility-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.credibility-text span { font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 768px) { .credibility-items { gap: 24px; } .credibility-item { flex: 1 1 calc(50% - 12px); } }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; color: var(--brand-red); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 400; margin-bottom: 16px; color: var(--text-primary); }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* WHY US */
.why-us { padding: 100px 0; background: var(--bg-primary); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.problem-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; transition: var(--transition-smooth); }
.problem-card:hover { border-color: var(--brand-red); box-shadow: var(--shadow-medium); transform: translateY(-4px); }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 12px; }
.problem-card p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.problem-stat { padding-top: 16px; border-top: 1px solid var(--border-light); }
.problem-stat-value { display: block; font-size: 2rem; font-weight: 700; color: var(--brand-red); }
.problem-stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* PROGRAMS */
.programs { padding: 100px 0; background: var(--bg-secondary); }
.programs-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

.program-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 28px; transition: var(--transition-smooth); position: relative; }
.program-card:hover { border-color: var(--brand-red); box-shadow: var(--shadow-medium); }
.program-featured { border: 2px solid var(--brand-red); background: linear-gradient(135deg, rgba(193, 66, 78, 0.02), var(--bg-card)); }
.program-badge { position: absolute; top: -10px; right: 20px; background: var(--brand-red); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; padding: 6px 12px; border-radius: 4px; }
.program-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.program-icon { font-size: 2rem; }
.program-header h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.program-duration { font-size: 0.8rem; color: var(--text-muted); }
.program-desc { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; font-size: 0.95rem; }
.program-outcomes { margin-bottom: 16px; }
.program-outcome { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; }
.program-outcome span { color: #10B981; font-weight: 600; }
.program-industries { display: flex; flex-wrap: wrap; gap: 8px; }
.program-industries span { font-size: 0.7rem; padding: 4px 10px; background: rgba(193, 66, 78, 0.08); color: var(--brand-red); border-radius: 4px; }
.programs-cta { text-align: center; padding: 32px; background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border-light); }
.programs-cta p { margin-bottom: 16px; color: var(--text-secondary); }

/* INDUSTRIES */
.industries { padding: 100px 0; background: var(--bg-secondary); }
.industries-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card { display: block; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 24px; text-decoration: none; transition: var(--transition-smooth); cursor: pointer; }
.industry-card:hover { transform: translateY(-8px); border-color: var(--brand-red); box-shadow: var(--shadow-medium); }
.industry-icon { font-size: 2rem; margin-bottom: 12px; }
.industry-category { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; color: var(--brand-red); margin-bottom: 8px; }
.industry-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--text-primary); margin-bottom: 8px; }
.industry-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; }
.industry-link { font-size: 0.75rem; font-weight: 600; color: var(--brand-red); transition: var(--transition-fast); }
.industry-card:hover .industry-link { letter-spacing: 0.02em; }
.industry-card-cta { text-decoration: none; }

/* INDUSTRY MODAL */
.industry-modal { display: none; position: fixed; inset: 0; z-index: 99999; }
.industry-modal.active { display: flex; align-items: center; justify-content: center; }
.industry-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.industry-modal-content { position: relative; background: var(--bg-card); border-radius: 20px; max-width: 700px; width: 90%; max-height: 85vh; overflow-y: auto; padding: 32px; box-shadow: 0 25px 80px rgba(0,0,0,0.3); animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.industry-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); transition: var(--transition-fast); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.industry-modal-close:hover { background: var(--bg-secondary); color: var(--brand-red); }
.industry-modal-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.industry-modal-icon { font-size: 3rem; }
.industry-modal-category { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: var(--brand-red); display: block; margin-bottom: 4px; }
.industry-modal-header h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
.industry-modal-body h4 { color: var(--brand-red); font-size: 1rem; margin: 20px 0 10px; }
.industry-modal-body h4:first-child { margin-top: 0; }
.industry-modal-body p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.industry-modal-body ul { margin: 0 0 16px 20px; }
.industry-modal-body li { color: var(--text-secondary); margin-bottom: 8px; line-height: 1.5; }
.industry-modal-body .case-study { background: var(--bg-secondary); padding: 16px; border-radius: 12px; border-left: 4px solid var(--brand-red); margin: 16px 0; }
.industry-modal-body .case-study p { margin: 0; font-style: italic; }
.industry-modal-footer { display: flex; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-light); flex-wrap: wrap; }
@media (max-width: 600px) { .industry-modal-content { padding: 20px; margin: 16px; } .industry-modal-header { flex-direction: column; } .industry-modal-footer { flex-direction: column; } .industry-modal-footer .btn { width: 100%; text-align: center; } }

/* RESULTS */
.results { padding: 100px 0; background: var(--bg-primary); }
.results-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

.result-card {
  flex: 0 0 clamp(320px, 30vw, 420px);
  scroll-snap-align: start;
  scroll-snap-align: start;
 background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 28px; transition: var(--transition-smooth); }
.result-card:hover { border-color: var(--brand-red); box-shadow: var(--shadow-medium); }
.result-category { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: var(--brand-red); margin-bottom: 8px; }
.result-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.result-card > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }
.result-metrics { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.result-metric { display: flex; flex-direction: column; gap: 4px; }
.result-before, .result-after, .result-value { font-size: 1.5rem; font-weight: 700; color: var(--brand-red); }
.result-arrow { font-size: 1rem; color: var(--text-muted); margin: 0 4px; }
.result-label { font-size: 0.75rem; color: var(--text-muted); }
.result-timeline { font-size: 0.8rem; color: var(--text-muted); padding-top: 12px; border-top: 1px solid var(--border-light); }

/* TESTIMONIALS */
.testimonials { padding: 100px 0; background: var(--bg-secondary); }
.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

.testimonial-card {
  flex: 0 0 clamp(320px, 30vw, 420px);
  scroll-snap-align: start;
  scroll-snap-align: start;
 background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 28px; }
.testimonial-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text-primary); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* WHITEPAPERS */
.whitepapers { padding: 100px 0; background: var(--bg-primary); }
.whitepapers-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

.whitepaper-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 28px; transition: var(--transition-smooth); }
.whitepaper-card:hover { border-color: var(--brand-red); box-shadow: var(--shadow-medium); transform: translateY(-4px); }
.whitepaper-icon { font-size: 2.5rem; margin-bottom: 16px; }
.whitepaper-category { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: var(--brand-red); background: rgba(193, 66, 78, 0.08); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.whitepaper-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 12px; line-height: 1.4; }
.whitepaper-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.whitepaper-link { font-size: 0.9rem; font-weight: 600; color: var(--brand-red); transition: var(--transition-fast); }
.whitepaper-link:hover { text-decoration: underline; }

/* ABOUT PREVIEW */
.about-preview { padding: 100px 0; background: var(--bg-secondary); }
.about-preview-content { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: center; background: var(--bg-card); border-radius: 24px; padding: 48px; border: 1px solid var(--border-light); }
.about-preview-image { position: relative; }
.about-preview-image img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.about-preview-badge { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); background: var(--brand-red); color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; padding: 8px 20px; border-radius: 20px; }
.about-preview-text h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 8px; }
.about-preview-role { color: var(--brand-red); font-weight: 500; margin-bottom: 16px; }
.about-preview-bio { color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.about-preview-stats { display: flex; gap: 32px; margin-bottom: 24px; }
.about-stat { text-align: center; }
.about-stat-value { display: block; font-size: 1.5rem; font-weight: 700; color: var(--brand-red); }
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); }
.about-preview-links { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .about-preview-content { grid-template-columns: 1fr; text-align: center; } .about-preview-image { max-width: 250px; margin: 0 auto; } .about-preview-stats { justify-content: center; } .about-preview-links { justify-content: center; } }

/* DISCOVERY - ENHANCED */
.discovery { padding: 100px 0; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); position: relative; overflow: hidden; }
.discovery::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(193, 66, 78, 0.03) 0%, transparent 50%); animation: discoveryBg 20s linear infinite; }
@keyframes discoveryBg { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.discovery-wrapper { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.discovery-header { text-align: center; margin-bottom: 48px; }
.discovery-badge-wrapper { position: relative; display: inline-block; margin-bottom: 24px; }
.discovery-badge-glow { position: absolute; inset: -10px; background: radial-gradient(circle, rgba(193, 66, 78, 0.3) 0%, transparent 70%); border-radius: 60px; animation: discoveryGlow 3s ease-in-out infinite; }
@keyframes discoveryGlow { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.discovery-badge { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: linear-gradient(135deg, rgba(193, 66, 78, 0.15), rgba(193, 66, 78, 0.05)); border: 2px solid rgba(193, 66, 78, 0.4); border-radius: 50px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: var(--brand-red); }
.discovery-badge-icon { font-size: 1.2rem; }
.discovery-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 16px; }
.discovery-title span { background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.discovery-subtitle { color: var(--text-secondary); max-width: 500px; margin: 0 auto 24px; }
.discovery-promise { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.promise-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-secondary); }
.promise-item span { color: #10B981; font-weight: 600; }

/* DISCOVERY FORM */
.discovery-form-container { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.discovery-form-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--brand-red), var(--brand-red-light), var(--brand-red)); background-size: 200% 100%; animation: formShimmer 3s linear infinite; }
@keyframes formShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.form-step { display: none; }
.form-step.active { display: block; animation: formStepIn 0.4s ease; }
@keyframes formStepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.step-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.step-number { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--brand-red); color: white; font-weight: 700; border-radius: 50%; flex-shrink: 0; }
.step-header h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 4px; }
.step-note { font-size: 0.9rem; color: var(--text-muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 32px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.field-hint { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border: 1px solid var(--border-medium); border-radius: 10px; font-size: 1rem; font-family: var(--font-body); transition: var(--transition-fast); background: var(--bg-primary); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(193, 66, 78, 0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.char-counter { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
#charCount { font-weight: 600; color: var(--brand-red); }
.char-hint { font-size: 0.75rem; }
.form-nav { display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; } .form-nav { flex-direction: column; } .form-nav .btn { width: 100%; } }

/* CHALLENGES */
.challenges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; }
.challenge-option { cursor: pointer; }
.challenge-option input { display: none; }
.challenge-content { display: block; padding: 16px; border: 1px solid var(--border-medium); border-radius: 12px; transition: var(--transition-fast); }
.challenge-option:hover .challenge-content { border-color: var(--brand-red); }
.challenge-option input:checked + .challenge-content { border-color: var(--brand-red); background: rgba(193, 66, 78, 0.05); }
.challenge-title { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.challenge-desc { font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 600px) { .challenges-grid { grid-template-columns: 1fr; } }

/* INTERVENTIONS (Previous Attempts) */
.interventions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
.intervention-option { cursor: pointer; }
.intervention-option input { display: none; }
.intervention-content { display: block; padding: 12px 16px; border: 1px solid var(--border-medium); border-radius: 8px; font-size: 0.9rem; transition: var(--transition-fast); }
.intervention-option:hover .intervention-content { border-color: var(--brand-red); background: rgba(193, 66, 78, 0.02); }
.intervention-option input:checked + .intervention-content { border-color: var(--brand-red); background: rgba(193, 66, 78, 0.08); color: var(--brand-red); font-weight: 500; }
@media (max-width: 600px) { .interventions-grid { grid-template-columns: 1fr; } }

/* ANALYSIS */
.analysis-results { background: var(--bg-card); border-radius: 16px; padding: 32px; }
.analysis-header { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.analysis-header h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.analysis-header p { color: var(--text-muted); }
.analysis-content { margin-bottom: 32px; }
.analysis-section { margin-bottom: 24px; }
.analysis-section h4 { font-size: 1.1rem; margin-bottom: 12px; color: var(--brand-red); }
.analysis-section p { color: var(--text-secondary); line-height: 1.7; }
.analysis-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.analysis-loading { text-align: center; padding: 60px 20px; }
.loading-spinner { width: 50px; height: 50px; border: 3px solid var(--border-light); border-top-color: var(--brand-red); border-radius: 50%; margin: 0 auto 20px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 1.1rem; margin-bottom: 8px; }
.loading-subtext { font-size: 0.9rem; color: var(--text-muted); }

/* CONTACT */
.contact { padding: 100px 0; background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.contact-info h2 span { background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; transition: var(--transition-fast); }
.contact-method:hover { border-color: var(--brand-red); }
.contact-icon { font-size: 1.5rem; }
.contact-method strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-method span { font-size: 0.85rem; color: var(--text-muted); }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 24px; }
.contact-form-card .form-group { margin-bottom: 16px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.footer { background: #000; color: var(--text-light); padding: 72px 0 28px; }
.footer-content { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 44px; align-items: start; }
.footer-logo { height: 54px; width: auto; margin-bottom: 18px; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45)); }
.footer-brand p { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; line-height: 1.8; max-width: 360px; }
.footer-brand .footer-italic { font-style: italic; color: rgba(255, 255, 255, 0.58); margin-top: 10px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 18px; color: rgba(255, 255, 255, 0.52); text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; margin-bottom: 12px; transition: var(--transition-fast); }
.footer-col a:hover { color: #fff; transform: translateX(2px); }
.footer-location { color: rgba(255,255,255,0.70); font-size: 0.92rem; line-height: 1.75; }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.10); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.44); margin: 0; }
.footer-social { display: flex; gap: 10px; }
.social-pill { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); font-weight: 700; letter-spacing: 0.02em; }
.social-pill:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); color: #fff; }

@media (max-width: 980px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
}


/* UTILITIES */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   V16 ADDITIONS - 3D, REVEAL, MARQUEE, MODALS
   ============================================ */

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.2s; }

/* 3D CARD TILT */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.card-3d:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(193, 66, 78, 0.15);
}
.card-glare {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: inherit;
}
.card-3d:hover .card-glare {
    opacity: 1;
}

/* PHOTO MARQUEE */
.photo-marquee-section {
    padding: 80px 0 100px;
    background: var(--bg-primary);
    overflow: hidden;
}
.photo-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.photo-marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 60s linear infinite;
    width: max-content;
}
.photo-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.photo-marquee-item {
    flex-shrink: 0;
    width: 300px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.photo-marquee-item:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.photo-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.photo-marquee-item:hover img {
    transform: scale(1.1);
}
.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.photo-marquee-item:hover .photo-caption {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .photo-marquee-item { width: 240px; height: 180px; }
    .photo-marquee-track { gap: 14px; }
    .photo-marquee-section { padding: 60px 0 80px; }
}

/* CERTIFICATION MODAL */
.cert-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.cert-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: certModalFadeIn 0.3s ease;
}
@keyframes certModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cert-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.cert-modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 36px;
    max-width: 560px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: certModalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes certModalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.cert-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text-secondary);
}
.cert-modal-close:hover {
    background: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
    transform: rotate(90deg);
}
.cert-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.cert-modal-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.cert-modal-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--brand-red);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.cert-modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 0;
    color: var(--text-primary);
}
.cert-modal-body {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}
.cert-modal-body p {
    margin-bottom: 12px;
}
.cert-modal-body strong {
    color: var(--text-primary);
}
.cert-modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}
@media (max-width: 600px) {
    .cert-modal-content { padding: 24px; margin: 16px; }
    .cert-modal-header { flex-direction: column; }
    .cert-modal-footer { flex-direction: column; }
    .cert-modal-footer .btn { width: 100%; text-align: center; }
}

/* WHITEPAPER GRID - 8 CARDS */
.whitepapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
@media (min-width: 1024px) {
    .whitepapers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* HORIZONTAL CAROUSELS */
.programs-grid::-webkit-scrollbar,
.industries-grid::-webkit-scrollbar,
.whitepapers-grid::-webkit-scrollbar,
.testimonials-grid::-webkit-scrollbar { display: none; }

.program-card { flex: 0 0 clamp(300px, 82vw, 380px); scroll-snap-align: start; }
.industry-card { flex: 0 0 clamp(260px, 26vw, 340px); scroll-snap-align: start; scroll-snap-align: start; }
.whitepaper-card { flex: 0 0 clamp(260px, 80vw, 330px); scroll-snap-align: start; }
.testimonial-card { flex: 0 0 clamp(300px, 84vw, 420px); scroll-snap-align: start; }

@media (max-width: 768px) {
  .programs-grid, .industries-grid, .whitepapers-grid, .testimonials-grid {
    gap: 16px;
    padding-bottom: 12px;
  }
}

/* AI REPORT BRANDING */
.ai-report { position: relative; }
.ai-report::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('logo.png') center / 420px no-repeat;
  opacity: 0.035;
  pointer-events: none;
}
.ai-report-inner { position: relative; z-index: 1; }
.ai-report-logo { width: 160px; margin: 0 0 20px; display: block; }

/* CAROUSEL UI */
.carousel-ui{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top: 12px;
  user-select:none;
}
.carousel-hint{
  font-size:0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.carousel-arrow{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 1.4rem;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: var(--transition-fast);
}
.carousel-arrow:hover{
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.carousel-arrow:disabled{
  opacity:0.35;
  cursor: not-allowed;
  transform:none;
  box-shadow:none;
}

/* subtle scroll affordance for carousels */
.programs-grid, .industries-grid, .results-grid, .testimonials-grid {
  scroll-padding-left: 10px;
}
.program-card, .industry-card, .result-card, .testimonial-card {
  scroll-snap-align: start;
}


/* RESULTS CAROUSEL SCROLLBAR HIDE */
.results-grid{scrollbar-width:none;-ms-overflow-style:none;}
.results-grid::-webkit-scrollbar{display:none;}

.programs-grid{scrollbar-width:none;-ms-overflow-style:none;}

.industries-grid{scrollbar-width:none;-ms-overflow-style:none;}

.whitepapers-grid{scrollbar-width:none;-ms-overflow-style:none;}

.testimonials-grid{scrollbar-width:none;-ms-overflow-style:none;}


/* RESULTS GRID FULL BLEED */
.results-grid{
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 1200px){
  .results-grid{ margin: 0 -40px; padding-left: 40px; padding-right: 40px; }
}



/* === v4 upgrades: logo, typography, carousels, CTA emphasis === */

/* Fix logo background */
.nav-logo-img{
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.nav-logo{
  background: transparent !important;
  box-shadow: none !important;
}

/* Hero-style section title accent */
.section-title-hero{
  letter-spacing: -0.02em;
}
.section-title-accent{
  display: inline;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Two-row horizontal carousel for industries */
.industries-grid-2row{
  display: grid !important;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  gap: 22px 22px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.industries-grid-2row > *{
  scroll-snap-align: start;
  min-width: 280px;
}
@media (max-width: 768px){
  .industries-grid-2row{
    gap: 14px;
  }
  .industries-grid-2row > *{
    min-width: 72vw;
  }
}

/* Make carousel cards feel less cramped on desktop */
@media (min-width: 900px){
  .program-card{ min-width: 420px; }
  .industry-card{ min-width: 360px; }
  .result-card{ min-width: 420px; }
  .testimonial-card{ min-width: 520px; }
}

/* Hide native scrollbars consistently */
.programs-grid, .industries-grid, .results-grid, .testimonials-grid, .whitepapers-grid{
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/old Edge */
}
.programs-grid::-webkit-scrollbar,
.industries-grid::-webkit-scrollbar,
.results-grid::-webkit-scrollbar,
.testimonials-grid::-webkit-scrollbar,
.whitepapers-grid::-webkit-scrollbar{
  width: 0;
  height: 0;
}

/* Stronger 3D + hover */
.card-3d{
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.card-3d:hover{
  transform: translateY(-6px) rotateX(1.5deg) rotateY(-1.5deg);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  border-color: rgba(233, 76, 104, 0.22);
}

/* CTA emphasis */
.nav-cta, .btn-primary, .floating-cta-btn{
  font-weight: 700;
}
.nav-cta{
  padding: 14px 22px !important;
  font-size: 15px !important;
}
.btn-primary{
  padding: 16px 22px !important;
  font-size: 15px !important;
}
.floating-cta-btn{
  padding: 14px 18px !important;
  font-size: 14px !important;
  border-radius: 14px !important;
}

/* Glow + pulse */
.btn-glow{
  position: relative;
  box-shadow: 0 10px 26px rgba(233, 76, 104, 0.22);
}
.btn-glow::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(233, 76, 104, 0.35), transparent 55%);
  filter: blur(10px);
  opacity: 0.9;
  z-index: -1;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse{
  0%, 100%{ transform: scale(0.98); opacity: 0.65; }
  50%{ transform: scale(1.04); opacity: 1; }
}

/* Testimonials "see all" */
.testimonial-more{
  margin-top: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.6);
}
.testimonial-more > summary{
  cursor: pointer;
  font-weight: 700;
  color: var(--text-primary);
}
.more-block{
  margin-top: 14px;
}
.more-title{
  margin: 10px 0 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Hint text clarity */
.carousel-hint{
  font-weight: 600;
}


/* --- Testimonials: 2-row horizontal carousel + auto-scroll friendly --- */
.testimonials-grid[data-carousel="testimonials"]{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(420px, 86vw);
  grid-template-rows: repeat(2, auto);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.testimonials-grid[data-carousel="testimonials"] .testimonial-card{
  scroll-snap-align: start;
}

/* Avoid the "whole page" horizontal scrollbar; keep scrollbars inside carousels only */
html, body{
  overflow-x: hidden;
}

/* Ensure results carousel never forces page-level scrollbar due to width math */
.carousel-track{
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
}

/* ===== v7 UX fixes: carousels + testimonials + section sizing ===== */

/* Ensure all testimonial carousels (including expanded view) share the same 2-row layout */
.testimonials-grid[data-carousel="testimonials"],
.testimonials-grid[data-carousel="testimonials_all"]{
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
  -webkit-overflow-scrolling: touch;
}
.testimonials-grid[data-carousel="testimonials"]::-webkit-scrollbar,
.testimonials-grid[data-carousel="testimonials_all"]::-webkit-scrollbar{
  height: 8px;
}

/* Expanded feedback should not look like a different website */
.testimonial-more .more-grid{
  margin-top: 18px;
}

/* Prevent cards from feeling "boxed in" on wide screens */
@media (min-width: 1024px){
  #programs .carousel,
  #industries .carousel,
  #results .carousel,
  #testimonials .carousel{
    margin-left: -10px;
    margin-right: -10px;
  }
}

/* Make carousel UI hints consistently visible */
.carousel-ui{ 
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.carousel-hint{ 
  font-size: 13px;
  opacity: .78;
}

/* Pause auto-scroll on hover (JS toggles .is-paused) */
[data-carousel].is-paused{ scroll-behavior: auto; }


/* Prevent scroll jumps during AI generation */
html.scroll-locked,
body.scroll-locked{
  overflow: hidden !important;
}

/* === Testimonials marquee (2-row, NDA-safe) === */
.section-testimonials { padding: 96px 0; }
.testimonials-marquee { margin-top: 28px; }
.testimonials-row { overflow: hidden; padding: 10px 0; }
.testimonials-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marqueeLeft 70s linear infinite;
  will-change: transform;
}
.testimonials-track.reverse { animation-name: marqueeRight; }
.testimonials-marquee:hover .testimonials-track { animation-play-state: paused; }
.testimonials-marquee:focus-within .testimonials-track { animation-play-state: paused; }

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.testimonial-card {
  flex: 0 0 clamp(320px, 32vw, 520px);
  min-height: 220px;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(20,20,20,0.07);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.testimonial-quote {
  font-style: italic;
  line-height: 1.55;
  color: rgba(0,0,0,0.78);
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-role { font-weight: 700; color: rgba(0,0,0,0.92); }
.testimonial-context { margin-top: 6px; color: rgba(0,0,0,0.55); font-size: 0.95rem; }
.carousel-hint { display: flex; justify-content: center; margin-top: 14px; }
.hint-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.58);
  font-size: 0.95rem;
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation: none !important; }
}


/* Top social pills in navbar */
.nav-social{display:flex;gap:10px;align-items:center;margin-left:12px;}
@media (max-width: 980px){.nav-social{display:none;}}

/* Fixed social links (top + bottom) */
.social-fixed {
  position: fixed;
  z-index: 9999;
  display: flex;
  gap: 10px;
}
.social-fixed-top { top: 90px; right: 18px; left: auto; }
.social-fixed-bottom { bottom: 18px; right: 18px; }
.social-fixed .social-pill {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}
.social-fixed .social-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.32);
}
@media (max-width: 720px) {
  .social-fixed-top { top: 76px; right: 12px; left: auto; }
  .social-fixed-bottom { bottom: 12px; right: 12px; }
  .social-fixed .social-pill { width: 34px; height: 34px; font-size: 13px; }
}
