/* ============================================================
   Hirecise — Main Stylesheet  (SaaS Edition)
   ============================================================ */

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --green-100: #d1fae5;
  --green-500: #10b981;
  --green-600: #059669;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --red-400:   #f87171;
  --teal-400:  #34d399;

  --primary:      var(--blue-600);
  --primary-dark: var(--blue-700);
  --primary-bg:   var(--blue-50);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.07), 0 8px 10px rgba(0,0,0,.04);

  --r:    6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--slate-800); background: #fff;
        line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button{ cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; } /* 16px prevents iOS zoom */

/* ── Typography ────────────────────────────── */
h1 { font-size: clamp(1.9rem, 5vw, 3.25rem); font-weight: 800;
     line-height: 1.12; letter-spacing: -.025em; color: var(--slate-900); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700;
     line-height: 1.2;  letter-spacing: -.02em;  color: var(--slate-900); }
h3 { font-size: 1.2rem;  font-weight: 600; line-height: 1.35; color: var(--slate-900); }
h4 { font-size: .9375rem; font-weight: 600; color: var(--slate-900); }
p  { color: var(--slate-600); line-height: 1.75; }

/* ── Layout ────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.sr-only    { position: absolute; width: 1px; height: 1px; padding: 0;
              margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Badge ─────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.badge-blue   { background: var(--blue-100); color: var(--blue-700); }
.badge-dark   { background: rgba(255,255,255,.12); color: #93c5fd;
                border: 1px solid rgba(255,255,255,.15); }
.badge-amber  { background: rgba(251,191,36,.15); color: #fbbf24; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-md);
  font-size: .9375rem; font-weight: 600; min-height: 44px;
  transition: all .2s ease; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
}
.btn-outline { background: transparent; color: var(--primary);
               border: 1.5px solid var(--blue-200); }
.btn-outline:hover { background: var(--primary-bg); border-color: var(--primary); }
.btn-ghost  { color: var(--slate-600); }
.btn-ghost:hover { color: var(--primary); background: var(--primary-bg); }
.btn-white  { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--blue-50); }
.btn-dark-outline {
  background: transparent; color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-dark-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-lg   { padding: 14px 32px; font-size: 1rem; border-radius: var(--r-lg); min-height: 52px; }
.btn-sm   { padding: 8px 18px;  font-size: .875rem; min-height: 38px; }
.btn-full { width: 100%; }

/* ── Section header ────────────────────────── */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2  { margin-bottom: 16px; }
.section-header p   { font-size: 1.0625rem; }

/* ── Check icon ─────────────────────────────── */
.check-icon { flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; height: 64px; gap: 28px; }

.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.25rem; font-weight: 800; color: var(--slate-900);
  flex-shrink: 0; letter-spacing: -.02em;
}
.nav-logo .logo-cise { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a {
  padding: 7px 14px; border-radius: var(--r);
  font-size: .9375rem; font-weight: 500; color: var(--slate-600);
  transition: all .15s; min-height: 36px; display: inline-flex; align-items: center;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--blue-50); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-toggle { display: none; padding: 10px; border-radius: var(--r); color: var(--slate-600);
               min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle:hover { background: var(--slate-100); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile { display: none; padding: 12px 0 20px; border-top: 1px solid var(--slate-200); }
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 12px 14px; border-radius: var(--r-md);
  color: var(--slate-700); font-weight: 500; font-size: 1rem;
  transition: all .15s; margin-bottom: 2px; min-height: 44px;
  display: flex; align-items: center;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--primary); background: var(--blue-50); }
.nav-mobile-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--slate-200);
}

/* ============================================================
   HERO — SAAS DARK
   ============================================================ */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(135deg, #060d1f 0%, #0d2356 40%, #1a3fb8 75%, #2563eb 100%);
  position: relative; overflow: hidden;
}
/* ambient glows */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(96,165,250,.18) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -120px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
/* hero grid noise overlay */
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.hero-content .badge-dark { margin-bottom: 20px; }
.hero-content h1  { color: #fff; margin-bottom: 20px; }
.hero-headline-accent { color: #93c5fd; display: block; }
.hero-content > p { font-size: 1.125rem; margin-bottom: 36px; color: rgba(255,255,255,.75); max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #93c5fd; font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-right: -8px; flex-shrink: 0;
}
.hero-proof-text      { font-size: .875rem; color: rgba(255,255,255,.55); }
.hero-proof-text strong { color: rgba(255,255,255,.9); }

/* Hero dashboard card */
.hero-visual { position: relative; z-index: 1; }
.dashboard-card {
  background: #fff; border-radius: var(--r-xl);
  box-shadow: 0 32px 64px rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.12); overflow: hidden;
}
.dashboard-card-header {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  padding: 18px 22px; color: #fff;
}
.dashboard-card-header .dc-title { font-weight: 700; font-size: .9375rem; }
.dashboard-card-header .dc-sub   { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.dashboard-card-body { padding: 14px; }

.candidate-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r-md);
  margin-bottom: 8px; background: var(--slate-50);
  border: 1px solid var(--slate-200); transition: all .2s;
}
.candidate-row:last-child { margin-bottom: 0; }
.candidate-row:hover { border-color: var(--blue-200); background: var(--blue-50); }
.cand-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; flex-shrink: 0;
}
.cand-info { flex: 1; min-width: 0; }
.cand-name { font-size: .875rem; font-weight: 600; color: var(--slate-800); }
.cand-role { font-size: .75rem; color: var(--slate-500); }
.score-chip {
  padding: 3px 10px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; flex-shrink: 0;
}
.score-high   { background: var(--green-100);  color: var(--green-600); }
.score-good   { background: var(--blue-100);   color: var(--blue-700); }
.score-medium { background: var(--amber-100);  color: var(--amber-600); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--slate-900);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 40px; overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-bar-label { font-size: .75rem; font-weight: 600; text-transform: uppercase;
                   letter-spacing: .08em; color: rgba(255,255,255,.3); white-space: nowrap; flex-shrink: 0; }
.trust-bar-logos { display: flex; align-items: center; gap: 36px; flex: 1; }
.trust-bar-logos span {
  font-size: 1rem; font-weight: 800; color: rgba(255,255,255,.2);
  letter-spacing: -.02em; white-space: nowrap; flex-shrink: 0;
}

/* ============================================================
   FEATURE HIGHLIGHTS (home)
   ============================================================ */
.highlights-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.highlight-card {
  padding: 28px; background: #fff;
  border: 1px solid var(--slate-200); border-radius: var(--r-xl);
  transition: all .25s ease;
}
.highlight-card:hover {
  border-color: var(--blue-200); box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.highlight-icon {
  width: 48px; height: 48px; background: var(--blue-50);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--primary);
}
.highlight-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.highlight-card p  { font-size: .9375rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--blue-50); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 48px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px;
  left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200));
}
.step { text-align: center; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue-200);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  box-shadow: var(--shadow-md); position: relative; z-index: 1;
}
.step h3 { margin-bottom: 10px; }
.step p  { font-size: .9375rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item  { text-align: center; }
.stat-value {
  font-size: 2.75rem; font-weight: 800;
  color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: .9375rem; color: var(--slate-600); }

/* ============================================================
   ROI COMPARISON SECTION
   ============================================================ */
.roi-section {
  background: linear-gradient(135deg, #060d1f 0%, #0d2356 60%, #1a3fb8 100%);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.roi-section::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(96,165,250,.1) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.roi-header { text-align: center; margin-bottom: 60px; }
.roi-header h2 { color: #fff; margin-bottom: 12px; }
.roi-header p  { color: rgba(255,255,255,.6); font-size: 1.0625rem; }

/* Main headline inside ROI */
.roi-big-claim {
  text-align: center; margin-bottom: 60px;
}
.roi-big-claim h2 {
  color: #fff; font-size: clamp(1.6rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}
.roi-big-claim h2 span { color: #34d399; }
.roi-big-claim p {
  color: rgba(255,255,255,.65); font-size: 1.125rem; max-width: 560px; margin: 0 auto;
}

/* Comparison cards */
.roi-comparison {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center;
  max-width: 820px; margin: 0 auto 48px;
}
.roi-card {
  padding: 28px; border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.1);
}
.roi-card-bad  { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.25); }
.roi-card-good { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.3); }
.roi-card-title {
  font-size: .9375rem; font-weight: 700; color: #fff;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 8px;
}
.roi-metric { margin-bottom: 16px; }
.roi-metric:last-child { margin-bottom: 0; }
.roi-metric-label { font-size: .72rem; text-transform: uppercase;
                    letter-spacing: .06em; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.roi-metric-value { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.roi-metric-value.bad  { color: #f87171; }
.roi-metric-value.good { color: #34d399; }
.roi-vs {
  font-size: 1.25rem; font-weight: 800;
  color: rgba(255,255,255,.3); text-align: center; flex-shrink: 0;
  padding: 12px 16px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); background: rgba(255,255,255,.04);
  min-width: 60px;
}

/* Savings strip */
.roi-savings {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; max-width: 820px; margin: 0 auto 48px;
}
.roi-saving-item {
  text-align: center; padding: 20px 16px;
  background: rgba(37,99,235,.2); border: 1px solid rgba(37,99,235,.4);
  border-radius: var(--r-xl);
}
.roi-saving-val   { font-size: 2rem; font-weight: 800; color: #93c5fd; line-height: 1; margin-bottom: 6px; }
.roi-saving-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em;
                    color: rgba(255,255,255,.55); }

.roi-cta { text-align: center; }
.roi-cta p { color: rgba(255,255,255,.5); font-size: .875rem; margin-top: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--slate-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  padding: 28px; background: #fff; border-radius: var(--r-xl);
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm);
}
.testi-stars { color: #f59e0b; margin-bottom: 14px; font-size: 1rem; letter-spacing: 2px; }
.testi-text  { font-size: .9375rem; color: var(--slate-700);
               font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; flex-shrink: 0;
}
.testi-name  { font-weight: 600; font-size: .875rem; color: var(--slate-800); }
.testi-title { font-size: .78rem; color: var(--slate-500); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #060d1f 0%, #1e3a8a 60%, #2563eb 100%);
  padding: 96px 0; text-align: center;
}
.cta-banner h2    { color: #fff; margin-bottom: 16px; }
.cta-banner > .container > p { color: rgba(255,255,255,.75); font-size: 1.125rem; margin-bottom: 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-note    { margin-top: 16px; font-size: .8rem; color: rgba(255,255,255,.45); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--slate-900); color: var(--slate-400); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p      { font-size: .875rem; line-height: 1.8; max-width: 270px; margin-top: 14px; }
.footer-col h5       { color: #fff; font-size: .75rem; text-transform: uppercase;
                       letter-spacing: .07em; margin-bottom: 16px; }
.footer-col li       { margin-bottom: 10px; }
.footer-col li a     { font-size: .875rem; transition: color .15s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--slate-800);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p   { font-size: .8rem; }
.footer-bottom a   { transition: color .15s; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(155deg, var(--blue-50) 0%, #fff 60%);
  padding: 72px 0 64px; text-align: center;
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
.page-hero p  { font-size: 1.0625rem; max-width: 540px; margin: 0 auto; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.feat-section { padding: 88px 0; }
.feat-section:nth-child(even) { background: var(--slate-50); }
.feat-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.feat-inner.flipped .feat-text   { order: 2; }
.feat-inner.flipped .feat-visual { order: 1; }
.feat-text .badge   { margin-bottom: 16px; }
.feat-text h2       { margin-bottom: 18px; }
.feat-text > p      { margin-bottom: 28px; }
.feat-list          { display: flex; flex-direction: column; gap: 12px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9375rem; color: var(--slate-700);
}
.feat-list li svg { flex-shrink: 0; margin-top: 2px; }
.feat-visual-box {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-lg);
}
.feat-visual-box.alt { background: var(--blue-50); }

/* Score bars */
.score-bars-wrap h4   { margin-bottom: 20px; font-size: .9375rem; }
.score-bars           { display: flex; flex-direction: column; gap: 16px; }
.score-bar-row label  {
  display: flex; justify-content: space-between;
  font-size: .8rem; font-weight: 600;
  color: var(--slate-600); margin-bottom: 6px;
}
.score-bar-track { height: 8px; background: var(--slate-200); border-radius: 100px; overflow: hidden; }
.score-bar-fill  { height: 100%; border-radius: 100px; background: var(--primary); }

/* Analytics widget */
.analytics-widget { padding: 0; overflow: hidden; }
.aw-header { padding: 16px 20px; border-bottom: 1px solid var(--slate-200);
             display: flex; align-items: center; justify-content: space-between; }
.aw-header h4 { font-size: .875rem; }
.aw-period    { font-size: .75rem; color: var(--slate-500);
                background: var(--slate-100); padding: 3px 10px; border-radius: 100px; }
.aw-stats     { display: grid; grid-template-columns: repeat(3,1fr);
                gap: 1px; background: var(--slate-200); }
.aw-stat      { background: #fff; padding: 18px 16px; text-align: center; }
.aw-stat-val  { font-size: 1.4rem; font-weight: 700; color: var(--slate-900); }
.aw-stat-label{ font-size: .72rem; color: var(--slate-500); margin-top: 2px; }
.aw-chart     { padding: 20px; }
.chart-bars   { display: flex; align-items: flex-end; gap: 6px; height: 72px; }
.chart-bar    { flex: 1; border-radius: 4px 4px 0 0; background: var(--blue-100); transition: background .2s; }
.chart-bar:hover, .chart-bar.hi { background: var(--primary); }

/* Pipeline widget */
.pipeline-stages { display: flex; flex-direction: column; gap: 8px; }
.pipeline-stage  {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: #fff;
  border: 1px solid var(--slate-200); border-radius: var(--r-md);
}
.pipeline-stage-name { font-size: .875rem; font-weight: 500; }
.pipeline-count      {
  font-size: .75rem; font-weight: 700;
  background: var(--blue-100); color: var(--primary);
  padding: 2px 10px; border-radius: 100px;
}

/* ============================================================
   PRICING PAGE — 4 TIERS
   ============================================================ */
.pricing-toggle-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 52px; flex-wrap: wrap;
}
.toggle-label { font-size: .9375rem; font-weight: 500; color: var(--slate-600); }
.toggle-btn {
  position: relative; width: 52px; height: 28px;
  background: var(--slate-200); border-radius: 100px;
  cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.toggle-btn.active { background: var(--primary); }
.toggle-thumb {
  position: absolute; top: 4px; left: 4px;
  width: 20px; height: 20px; background: #fff;
  border-radius: 50%; box-shadow: var(--shadow); transition: transform .2s;
}
.toggle-btn.active .toggle-thumb { transform: translateX(24px); }
.save-badge {
  background: var(--green-100); color: var(--green-600);
  font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}

/* 4-tier grid */
.pricing-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 72px; align-items: start;
}
.price-card {
  padding: 28px 24px; background: #fff;
  border: 1.5px solid var(--slate-200); border-radius: var(--r-xl);
  position: relative; transition: all .25s;
  display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-xl);
  transform: scale(1.02);
}
.price-card.popular:hover { transform: scale(1.02) translateY(-3px); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  padding: 4px 16px; border-radius: 100px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.price-plan { font-size: .75rem; font-weight: 700; text-transform: uppercase;
              letter-spacing: .1em; color: var(--primary); margin-bottom: 6px; }
.price-desc { font-size: .8rem; color: var(--slate-500); margin-bottom: 20px; min-height: 2.5em; }
.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 2px; }
.price-value  { font-size: 2.5rem; font-weight: 800; color: var(--slate-900); line-height: 1; }
.price-per    { font-size: .875rem; color: var(--slate-500); }
.price-note   { font-size: .72rem; color: var(--slate-400); margin-bottom: 20px; }
.price-meta   {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px; background: var(--slate-50);
  border-radius: var(--r-md); margin-bottom: 20px;
}
.price-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem;
}
.price-meta-key   { color: var(--slate-500); }
.price-meta-val   { font-weight: 700; color: var(--slate-800); }
.price-meta-val.accent { color: var(--primary); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.price-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: var(--slate-700);
}
.price-features li svg { flex-shrink: 0; margin-top: 1px; }
.price-features li.off { color: var(--slate-400); }
.price-features li.off svg { color: var(--slate-300); }
.price-card .btn { width: 100%; margin-top: auto; }

/* Pricing comparison table */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-xl);
                border: 1px solid var(--slate-200); margin-bottom: 72px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th,
.compare-table td { padding: 14px 18px; text-align: left;
                    border-bottom: 1px solid var(--slate-200); font-size: .875rem; }
.compare-table th { background: var(--slate-50); font-weight: 600; color: var(--slate-700); }
.compare-table th:not(:first-child),
.compare-table td:not(:first-child) { text-align: center; }
.compare-table .plan-col { font-weight: 700; color: var(--primary); font-size: .75rem;
                           text-transform: uppercase; letter-spacing: .06em; }
.compare-check { color: var(--green-500); display: inline-block; }
.compare-dash  { color: var(--slate-300); display: inline-block; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--slate-50); }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--slate-200); border-radius: var(--r-lg); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 18px 22px;
  font-size: .9375rem; font-weight: 600; color: var(--slate-800);
  background: #fff; text-align: left; gap: 16px; transition: background .15s;
  min-height: 60px;
}
.faq-q:hover { background: var(--slate-50); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--slate-400); }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .9375rem; color: var(--slate-600); line-height: 1.75;
}
.faq-a.open { max-height: 240px; padding: 0 22px 20px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.method-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-50); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.method-text h4 { margin-bottom: 4px; }
.method-text p  { font-size: .875rem; margin: 0; }
.contact-form-box {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-lg);
}
.contact-form-box h3 { margin-bottom: 8px; }
.contact-form-box > p { font-size: .9rem; margin-bottom: 28px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--slate-600); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--slate-200); border-radius: var(--r-md);
  font-size: 1rem; color: var(--slate-800); background: #fff;
  transition: border-color .15s, box-shadow .15s; line-height: 1.5;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-100); color: var(--green-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 10px; }
.form-success p  { font-size: .9375rem; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* 1100px — pricing 4→2 cols */
@media (max-width: 1100px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
  .price-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* 900px — main layout collapses */
@media (max-width: 900px) {
  .hero-inner           { grid-template-columns: 1fr; }
  .hero-visual          { max-width: 480px; }
  .highlights-grid      { grid-template-columns: 1fr 1fr; }
  .stats-grid           { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testimonials-grid    { grid-template-columns: 1fr 1fr; }
  .roi-comparison       { grid-template-columns: 1fr; gap: 16px; }
  .roi-vs               { justify-self: center; padding: 8px 20px; }
  .roi-savings          { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .feat-inner           { grid-template-columns: 1fr; gap: 48px; }
  .feat-inner.flipped .feat-text,
  .feat-inner.flipped .feat-visual { order: unset; }
  .steps-grid           { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before   { display: none; }
}

/* 768px — mobile */
@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-header { margin-bottom: 40px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner  { justify-content: space-between; gap: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .highlights-grid   { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 36px; }
  .form-row          { grid-template-columns: 1fr; }
  .roi-savings       { grid-template-columns: 1fr; }
  .trust-bar-logos   { gap: 24px; }
}

/* 600px — small mobile */
@media (max-width: 600px) {
  .pricing-grid-4 { grid-template-columns: 1fr; max-width: 380px; }
  .price-card.popular { transform: none; }
}

/* 480px — xs */
@media (max-width: 480px) {
  .hero           { padding: 64px 0 56px; }
  .hero-actions   { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cta-actions    { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .roi-saving-val { font-size: 1.5rem; }
  .stats-grid     { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-value     { font-size: 2.25rem; }
  .contact-form-box { padding: 24px 16px; }
}
