/* ============================================================
   Classic Reach — Main Stylesheet
   Brand Colors:
     Steelers Gold  #FFB612  (primary CTA, highlights)
     Black          #101820  (backgrounds)
     Blue           #003087  (secondary accent)
   ============================================================ */

:root {
  --cr-bg:          #101820;
  --cr-surface:     #161e2a;
  --cr-card:        #1c2635;
  --cr-card-2:      #22303f;
  --cr-text:        #ffffff;
  --cr-muted:       #94a3b8;
  --cr-gold:        #FFB612;
  --cr-gold-dark:   #d99800;
  --cr-gold-dim:    rgba(255,182,18,0.10);
  --cr-gold-border: rgba(255,182,18,0.25);
  --cr-blue:        #003087;
  --cr-blue-mid:    #0042bb;
  --cr-blue-dim:    rgba(0,48,135,0.20);
  --cr-border:      rgba(255,255,255,0.07);
  --cr-radius:      14px;
  --cr-shadow:      0 16px 56px rgba(0,0,0,0.55);
  --cr-max-w:       1120px;
  --cr-font:        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cr-bg);
  color: var(--cr-text);
  font-family: var(--cr-font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--cr-gold); text-decoration: none; transition: color .15s; }
a:hover { color: #fff; }
img { max-width: 100%; }
ul { list-style: none; }

/* ---- Layout ---- */
.cr-container { max-width: var(--cr-max-w); margin: 0 auto; padding: 0 24px; }
.cr-section { padding: 96px 0; }
.cr-section-alt { background: var(--cr-surface); }
.cr-text-center { text-align: center; }
.cr-text-center .cr-section-sub { margin-left: auto; margin-right: auto; }

/* ---- Typography ---- */
.cr-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cr-gold);
  margin-bottom: 14px;
}
.cr-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.cr-sub {
  font-size: 18px;
  color: var(--cr-muted);
  line-height: 1.65;
  max-width: 640px;
}

/* ---- Buttons ---- */
.cr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .08s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.cr-btn:active { transform: scale(0.98); }

.cr-btn-gold {
  background: var(--cr-gold);
  color: #101820;
  box-shadow: 0 4px 20px rgba(255,182,18,0.3);
}
.cr-btn-gold:hover { background: var(--cr-gold-dark); color: #101820; box-shadow: 0 6px 32px rgba(255,182,18,0.45); }

.cr-btn-blue {
  background: var(--cr-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,48,135,0.35);
}
.cr-btn-blue:hover { background: var(--cr-blue-mid); color: #fff; }

.cr-btn-outline {
  background: transparent;
  color: var(--cr-text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.cr-btn-outline:hover { border-color: var(--cr-gold); color: var(--cr-gold); background: var(--cr-gold-dim); }

/* ---- Fade-in animations ---- */
.cr-fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.cr-fade.visible { opacity: 1; transform: translateY(0); }
.cr-fade-delay-1 { transition-delay: .1s; }
.cr-fade-delay-2 { transition-delay: .2s; }
.cr-fade-delay-3 { transition-delay: .3s; }
.cr-fade-delay-4 { transition-delay: .4s; }
.cr-fade-delay-5 { transition-delay: .5s; }

/* ============================================================
   NAV
   ============================================================ */
#cr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .2s, box-shadow .2s;
}
#cr-nav.scrolled {
  background: rgba(16,24,32,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,182,18,0.12);
}
.cr-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 28px;
  max-width: var(--cr-max-w); margin: 0 auto;
}
.cr-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 21px; font-weight: 900; color: #fff;
  letter-spacing: -0.02em; text-decoration: none;
}
.cr-logo-mark {
  width: 34px; height: 34px;
  background: var(--cr-gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cr-logo span { color: var(--cr-gold); }
.cr-nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.cr-nav-links a { font-size: 15px; color: var(--cr-muted); font-weight: 500; }
.cr-nav-links a:hover { color: #fff; }
.cr-nav-cta { display: flex; align-items: center; gap: 10px; }
.cr-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.cr-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.cr-mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 24px 20px;
  background: rgba(16,24,32,0.97);
  border-top: 1px solid var(--cr-gold-border);
}
.cr-mobile-menu.open { display: flex; }
.cr-mobile-menu a {
  padding: 12px 0; font-size: 16px; color: var(--cr-muted);
  font-weight: 500; border-bottom: 1px solid var(--cr-border);
}
.cr-mobile-menu a:last-child { border-bottom: none; color: var(--cr-gold); font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
#cr-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.cr-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 65% 45%, rgba(255,182,18,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 15% 70%, rgba(0,48,135,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cr-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.cr-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cr-gold-dim);
  border: 1px solid var(--cr-gold-border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 700; color: var(--cr-gold);
  margin-bottom: 24px;
}
.cr-hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--cr-gold); border-radius: 50%;
  animation: cr-blink 1.5s ease-in-out infinite;
}
@keyframes cr-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.cr-hero h1 {
  font-size: 60px; font-weight: 900;
  line-height: 1.04; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.cr-hero h1 em { font-style: normal; color: var(--cr-gold); }
.cr-hero-sub {
  font-size: 19px; color: var(--cr-muted);
  line-height: 1.65; margin-bottom: 36px; max-width: 480px;
}
.cr-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cr-hero-trust {
  margin-top: 48px; display: flex;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.cr-hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--cr-muted);
}
.cr-hero-trust-check { color: var(--cr-gold); font-size: 14px; }

/* Hero visual card */
.cr-hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.cr-phone-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-gold-border);
  border-radius: 24px; padding: 28px; width: 320px;
  box-shadow: var(--cr-shadow), 0 0 0 1px rgba(255,182,18,0.05);
}
.cr-phone-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.cr-phone-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cr-gold), #ff8c00);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.cr-phone-info { flex: 1; }
.cr-phone-name { font-weight: 700; font-size: 15px; }
.cr-phone-role { font-size: 12px; color: var(--cr-muted); }
.cr-phone-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: #22c55e;
  background: rgba(34,197,94,0.12); border-radius: 100px; padding: 4px 10px;
}
.cr-phone-live-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: cr-blink 1.5s infinite; }
.cr-waveform {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; height: 48px; margin-bottom: 16px;
}
.cr-wave-bar {
  width: 4px; background: var(--cr-gold);
  border-radius: 2px; opacity: 0.8;
  animation: cr-wave 1.3s ease-in-out infinite;
}
.cr-wave-bar:nth-child(1)  { height: 12px; animation-delay: 0.0s; }
.cr-wave-bar:nth-child(2)  { height: 24px; animation-delay: 0.1s; }
.cr-wave-bar:nth-child(3)  { height: 36px; animation-delay: 0.2s; }
.cr-wave-bar:nth-child(4)  { height: 44px; animation-delay: 0.3s; }
.cr-wave-bar:nth-child(5)  { height: 38px; animation-delay: 0.4s; }
.cr-wave-bar:nth-child(6)  { height: 30px; animation-delay: 0.35s; }
.cr-wave-bar:nth-child(7)  { height: 42px; animation-delay: 0.25s; }
.cr-wave-bar:nth-child(8)  { height: 34px; animation-delay: 0.15s; }
.cr-wave-bar:nth-child(9)  { height: 20px; animation-delay: 0.05s; }
.cr-wave-bar:nth-child(10) { height: 28px; animation-delay: 0.1s; }
.cr-wave-bar:nth-child(11) { height: 36px; animation-delay: 0.2s; }
.cr-wave-bar:nth-child(12) { height: 14px; animation-delay: 0.3s; }
@keyframes cr-wave { 0%, 100% { transform: scaleY(.45); opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }
.cr-phone-transcript { font-size: 13px; line-height: 1.5; }
.cr-phone-line { display: flex; gap: 8px; margin-bottom: 8px; }
.cr-phone-line-label {
  font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .05em;
  flex-shrink: 0; padding-top: 1px;
}
.cr-phone-line-label.caller { color: #fde68a; }
.cr-phone-line-label.sarah  { color: var(--cr-gold); }
.cr-phone-line-text { color: var(--cr-muted); }

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
#cr-logos {
  padding: 48px 0;
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
}
.cr-logos-label {
  text-align: center;
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cr-muted); margin-bottom: 28px;
}
.cr-logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.cr-logo-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: 100px; padding: 10px 20px;
  font-size: 13px; font-weight: 600; color: var(--cr-muted);
  white-space: nowrap;
}
.cr-logo-pill span { font-size: 16px; }

/* ============================================================
   VALUE PROP — "This isn't software. This is a workforce."
   ============================================================ */
#cr-workforce {
  padding: 96px 0;
  background: var(--cr-blue);
  position: relative; overflow: hidden;
}
.cr-workforce-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,182,18,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cr-workforce-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.cr-workforce-inner .cr-label { color: var(--cr-gold); }
.cr-workforce-inner h2 {
  font-size: 52px; font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 20px;
}
.cr-workforce-inner h2 em { font-style: normal; color: var(--cr-gold); }
.cr-workforce-inner p {
  font-size: 19px; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 40px;
}
.cr-workforce-bullets {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; text-align: left; margin-bottom: 40px;
}
.cr-workforce-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 18px;
}
.cr-workforce-bullet-icon { font-size: 20px; flex-shrink: 0; }
.cr-workforce-bullet-text { font-size: 15px; font-weight: 600; line-height: 1.4; }

/* ============================================================
   CAPABILITIES MATRIX — "One AI Employee · Multiple Jobs"
   ============================================================ */
#cr-capabilities { padding: 96px 0; }
.cr-capabilities-header { margin-bottom: 56px; }
.cr-capabilities-stats {
  display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap;
}
.cr-cap-stat {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--cr-muted);
}
.cr-cap-stat strong { color: var(--cr-gold); font-size: 18px; }

.cr-cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cr-cap-category {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 24px;
  transition: border-color .2s, transform .15s;
}
.cr-cap-category:hover { border-color: var(--cr-gold-border); transform: translateY(-3px); }
.cr-cap-cat-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.cr-cap-cat-icon { font-size: 22px; }
.cr-cap-cat-name { font-size: 15px; font-weight: 800; }
.cr-cap-items {
  display: flex; flex-direction: column; gap: 8px;
}
.cr-cap-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--cr-muted); line-height: 1.4;
}
.cr-cap-item::before { content: '•'; color: var(--cr-gold); flex-shrink: 0; }

/* ============================================================
   LIVE STATS COUNTER
   ============================================================ */
#cr-stats {
  padding: 80px 0;
  background: var(--cr-card);
  border-top: 1px solid var(--cr-gold-border);
  border-bottom: 1px solid var(--cr-gold-border);
}
.cr-stats-header {
  text-align: center; margin-bottom: 48px;
}
.cr-stats-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  color: #22c55e; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.cr-stats-live-dot {
  width: 8px; height: 8px;
  background: #22c55e; border-radius: 50%;
  animation: cr-blink 1.5s infinite;
}
.cr-stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.cr-stat-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--cr-border);
}
.cr-stat-item:last-child { border-right: none; }
.cr-stat-number {
  font-size: 40px; font-weight: 900;
  color: var(--cr-gold); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.cr-stat-desc { font-size: 13px; color: var(--cr-muted); line-height: 1.4; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#cr-how { padding: 96px 0; background: var(--cr-surface); }
.cr-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.cr-steps::before {
  content: '';
  position: absolute; top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--cr-gold), rgba(255,182,18,.25));
}
.cr-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
.cr-step-num {
  width: 56px; height: 56px;
  background: var(--cr-bg);
  border: 2px solid var(--cr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: var(--cr-gold);
  margin-bottom: 20px; position: relative; z-index: 1; flex-shrink: 0;
}
.cr-step h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.cr-step p { font-size: 15px; color: var(--cr-muted); line-height: 1.6; }
.cr-step-tag {
  display: inline-block; margin-top: 12px;
  background: var(--cr-gold-dim);
  color: var(--cr-gold);
  font-size: 12px; font-weight: 700;
  border-radius: 100px; padding: 4px 12px;
  border: 1px solid var(--cr-gold-border);
}

/* ============================================================
   OMNICHANNEL
   ============================================================ */
#cr-omni { padding: 96px 0; }
.cr-omni-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 16px;
}
.cr-omni-channels {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 32px;
}
.cr-channel-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, transform .15s;
}
.cr-channel-card:hover { border-color: var(--cr-gold-border); transform: translateY(-3px); }
.cr-channel-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.cr-channel-name { font-size: 13px; font-weight: 700; }
.cr-omni-benefits { display: flex; flex-direction: column; gap: 20px; }
.cr-omni-benefit { display: flex; gap: 16px; align-items: flex-start; }
.cr-omni-benefit-icon {
  width: 44px; height: 44px;
  background: var(--cr-gold-dim);
  border: 1px solid var(--cr-gold-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cr-omni-benefit-text h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.cr-omni-benefit-text p { font-size: 14px; color: var(--cr-muted); line-height: 1.55; }

/* ============================================================
   VOICE DEMO
   ============================================================ */
#cr-demo { padding: 96px 0; background: var(--cr-surface); }
.cr-demo-frame {
  margin-top: 48px;
  background: var(--cr-card);
  border: 1px solid var(--cr-gold-border);
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--cr-shadow);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.cr-demo-bar {
  background: var(--cr-card-2);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--cr-border);
}
.cr-demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.cr-demo-dot-red    { background: #ef4444; }
.cr-demo-dot-yellow { background: var(--cr-gold); }
.cr-demo-dot-green  { background: #22c55e; }
.cr-demo-bar-label { margin-left: 8px; font-size: 13px; color: var(--cr-muted); font-weight: 500; }
.cr-demo-iframe-wrap { padding: 24px; }
.cr-demo-iframe-wrap iframe { width: 100%; height: 540px; border: none; border-radius: 12px; }
.cr-demo-note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--cr-muted); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
#cr-video { padding: 96px 0; }
.cr-video-wrap {
  margin-top: 48px; max-width: 800px;
  margin-left: auto; margin-right: auto;
  background: var(--cr-card);
  border: 1px solid var(--cr-gold-border);
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--cr-shadow);
  position: relative;
}
.cr-video-placeholder {
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cr-card-2), var(--cr-card));
  cursor: pointer; gap: 16px;
}
.cr-video-play-btn {
  width: 80px; height: 80px;
  background: var(--cr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 32px rgba(255,182,18,0.4);
  transition: transform .2s, box-shadow .2s;
}
.cr-video-play-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(255,182,18,0.55); }
.cr-video-placeholder p { color: var(--cr-muted); font-size: 15px; }
/* When video is ready, replace placeholder with: */
/* .cr-video-wrap iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; } */

/* ============================================================
   INDUSTRIES
   ============================================================ */
#cr-industries { padding: 96px 0; background: var(--cr-surface); }
.cr-industries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px; margin-top: 56px;
}
.cr-industry-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); padding: 22px 16px;
  text-align: center;
  transition: border-color .2s, background .2s, transform .15s;
}
.cr-industry-card:hover { border-color: var(--cr-gold-border); background: var(--cr-card-2); transform: translateY(-3px); }
.cr-industry-icon { font-size: 34px; margin-bottom: 10px; display: block; }
.cr-industry-name { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.cr-industry-pain { font-size: 12px; color: var(--cr-muted); line-height: 1.45; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#cr-testimonials { padding: 96px 0; }
.cr-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.cr-testimonial-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .2s;
}
.cr-testimonial-card:hover { border-color: var(--cr-gold-border); }
.cr-testimonial-stars { color: var(--cr-gold); font-size: 16px; letter-spacing: 2px; }
.cr-testimonial-quote { font-size: 15px; color: var(--cr-muted); line-height: 1.7; flex: 1; font-style: italic; }
.cr-testimonial-quote::before { content: '"'; font-size: 24px; color: var(--cr-gold); font-style: normal; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.cr-testimonial-author { display: flex; align-items: center; gap: 12px; }
.cr-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cr-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.cr-testimonial-name { font-weight: 700; font-size: 14px; }
.cr-testimonial-role { font-size: 12px; color: var(--cr-muted); }

/* ============================================================
   FAQ
   ============================================================ */
#cr-faq { padding: 96px 0; background: var(--cr-surface); }
.cr-faq-list {
  max-width: 720px; margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
details.cr-faq-item {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius); overflow: hidden;
}
details.cr-faq-item[open] { border-color: var(--cr-gold-border); }
details.cr-faq-item summary {
  padding: 20px 24px; font-size: 16px; font-weight: 700;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}
details.cr-faq-item summary::-webkit-details-marker { display: none; }
details.cr-faq-item summary::after {
  content: '+'; font-size: 24px; color: var(--cr-gold);
  flex-shrink: 0; transition: transform .2s; line-height: 1;
}
details.cr-faq-item[open] summary::after { transform: rotate(45deg); }
.cr-faq-body {
  padding: 0 24px 20px; font-size: 15px;
  color: var(--cr-muted); line-height: 1.7;
  border-top: 1px solid var(--cr-border); padding-top: 16px;
}

/* ============================================================
   FINAL CTA — "Stop Hiring. Start Deploying."
   ============================================================ */
#cr-cta {
  padding: 96px 0;
  background: var(--cr-blue);
  text-align: center; position: relative; overflow: hidden;
}
.cr-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255,182,18,0.08) 0%, transparent 65%);
  pointer-events: none;
}
#cr-cta .cr-label { color: var(--cr-gold); }
#cr-cta h2 {
  font-size: 52px; font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 16px;
}
#cr-cta p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  margin-bottom: 40px; max-width: 520px;
  margin-left: auto; margin-right: auto; line-height: 1.65;
}
.cr-cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
}
.cr-calendar-placeholder {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 40px;
  text-align: center; color: rgba(255,255,255,0.5); font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#cr-footer {
  border-top: 1px solid var(--cr-gold-border);
  padding: 60px 0 32px;
}
.cr-footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.cr-footer-brand .cr-logo { margin-bottom: 14px; display: inline-flex; }
.cr-footer-tagline { font-size: 14px; color: var(--cr-muted); line-height: 1.6; max-width: 240px; }
.cr-footer-col h4 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--cr-gold); margin-bottom: 16px;
}
.cr-footer-links { display: flex; flex-direction: column; gap: 10px; }
.cr-footer-links a { font-size: 14px; color: var(--cr-muted); }
.cr-footer-links a:hover { color: #fff; }
.cr-footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--cr-border);
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.cr-footer-copy { font-size: 13px; color: var(--cr-muted); }
.cr-footer-legal { display: flex; gap: 20px; }
.cr-footer-legal a { font-size: 13px; color: var(--cr-muted); }

/* ============================================================
   POPUP MODAL
   ============================================================ */
.cr-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,13,26,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.cr-modal-overlay.active {
  opacity: 1; visibility: visible;
}
.cr-modal {
  background: var(--cr-card);
  border: 1px solid var(--cr-gold-border);
  border-radius: 20px;
  width: 100%; max-width: 460px;
  max-height: 65vh;
  display: flex; flex-direction: column;
  position: relative;
  transform: scale(0.94) translateY(16px);
  transition: transform .35s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.cr-modal-overlay.active .cr-modal {
  transform: scale(1) translateY(0);
}
.cr-modal-header {
  position: sticky; top: 0;
  background: var(--cr-card);
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--cr-gold-border);
  z-index: 10;
}
.cr-modal-title {
  font-size: 15px; font-weight: 700; color: var(--cr-gold);
}
.cr-modal-sub {
  font-size: 12px; color: var(--cr-muted); margin-top: 2px;
}
.cr-modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cr-card-2);
  border: 1px solid var(--cr-border);
  color: var(--cr-muted); font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s; flex-shrink: 0;
  line-height: 1;
}
.cr-modal-close:hover { background: var(--cr-gold); color: #101820; }
.cr-modal-body {
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.cr-modal-body iframe {
  width: 100%; height: 1697px; border: none; display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cr-hero h1 { font-size: 48px; }
  .cr-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .cr-stat-item:nth-child(4), .cr-stat-item:nth-child(5) { border-top: 1px solid var(--cr-border); }
  .cr-industries-grid { grid-template-columns: repeat(3, 1fr); }
  .cr-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .cr-nav-links, .cr-nav-cta { display: none; }
  .cr-hamburger { display: flex; }
  .cr-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .cr-hero h1 { font-size: 38px; }
  .cr-hero-sub { max-width: 100%; }
  .cr-hero-actions { justify-content: center; }
  .cr-hero-trust { justify-content: center; }
  .cr-hero-visual { order: -1; }
  .cr-phone-card { max-width: 320px; width: 100%; }
  .cr-workforce-inner h2 { font-size: 38px; }
  .cr-workforce-bullets { grid-template-columns: 1fr; }
  .cr-steps { grid-template-columns: 1fr; gap: 40px; }
  .cr-steps::before { display: none; }
  .cr-omni-inner { grid-template-columns: 1fr; gap: 40px; }
  .cr-cap-grid { grid-template-columns: 1fr; }
  .cr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-stat-item { border-right: none; border-bottom: 1px solid var(--cr-border); }
  .cr-testimonials-grid { grid-template-columns: 1fr; }
  .cr-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cr-footer-bottom { flex-direction: column; text-align: center; }
  #cr-cta h2 { font-size: 36px; }
  .cr-title { font-size: 32px; }
}

@media (max-width: 480px) {
  .cr-hero h1 { font-size: 32px; }
  .cr-hero-actions { flex-direction: column; width: 100%; }
  .cr-btn { width: 100%; justify-content: center; }
  .cr-industries-grid { grid-template-columns: 1fr 1fr; }
  .cr-omni-channels { grid-template-columns: repeat(2, 1fr); }
  .cr-footer-inner { grid-template-columns: 1fr; }
  .cr-logos-row { gap: 12px; }
}
