/* ══════════════════════════════════════════════════════════════
   LANDING.CSS — Shared styles for Landing, Tips, Pricing, Mock
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.landing-body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --violet:   #2563eb;
  --violet-d: #1d4ed8;
  --violet-l: #3b82f6;
  --fh: 'Space Grotesk', sans-serif;
  --fm: 'JetBrains Mono', monospace;
  --fi: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --r: 14px;
  --r-lg: 20px;
}

/* ── Shared section wrappers ────────────────────────────────── */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 10px;
}
.section-h2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.lnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.lnav-scrolled {
  border-bottom-color: #e2e8f0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.lnav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.lnav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.lnav-logo-svg {
  width: 32px;
  height: 32px;
  color: var(--violet);
}
.lnav-logo-text {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.lnav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.lnav-link {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #475569;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.lnav-link:hover { color: #0f172a; background: rgba(0,0,0,0.04); }
.lnav-link-active { color: var(--violet) !important; font-weight: 600; background: rgba(37,99,235,0.08) !important; }
.lnav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.lnav-cta:hover { background: var(--violet-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.35); }

/* Sleek search bar integrated into navigation */
.lnav-search-container {
  position: relative;
  width: 220px;
  margin-left: auto;
}
.lnav-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.lnav-search-input {
  width: 100%;
  padding: 8px 12px 8px 34px;
  border-radius: 99px;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  font-family: var(--fi);
  font-size: 0.82rem;
  color: #0f172a;
  transition: all 0.2s;
  outline: none;
}
.lnav-search-input:focus {
  background: #ffffff;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* App dashboard actions inside header */
.lnav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

/* Streak flame chip */
.lnav-streak-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1px solid #fcd34d;
  border-radius: 100px;
  padding: 6px 12px;
  cursor: default;
  transition: transform 0.2s;
}
.lnav-streak-chip:hover {
  transform: scale(1.03);
}
.lnav-streak-flame {
  font-size: 0.95rem;
}
.lnav-streak-num {
  font-family: var(--fm);
  font-size: 0.82rem;
  font-weight: 700;
  color: #92400e;
}

/* Session score display */
.lnav-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.lnav-score-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
}
.lnav-score-value {
  font-family: var(--fm);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--violet);
  margin-top: 1px;
}

/* Clean circular profile/radar icon button */
.btn-profile-new {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  color: var(--violet);
  border: 1px solid rgba(37,99,235,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-profile-new:hover {
  background: var(--violet);
  color: #ffffff;
  border-color: var(--violet);
  transform: translateY(-1px);
}

/* Clean reset button */
.btn-reset-new {
  background: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 100px;
  color: #64748b;
  font-family: var(--fi);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-reset-new:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
}

@media (max-width: 992px) {
  .lnav-search-container {
    width: 140px;
  }
}

@media (max-width: 860px) {
  .lnav-search-container {
    display: none;
  }
  .lnav-links {
    display: none;
  }
}

/* Hamburger (mobile) */
.lnav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.lnav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.lnav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lnav-hamburger.open span:nth-child(2) { opacity: 0; }
.lnav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.lnav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
.lnav-mobile.open { display: flex; }
.lnav-cta-mobile {
  display: inline-flex;
  margin-top: 8px;
  width: max-content;
}

@media (max-width: 768px) {
  .lnav-links, .lnav-cta { display: none; }
  .lnav-hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION (Landing)
   ══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f4ff 0%, #f8fafc 50%, #f0fdf4 100%);
}

/* Grid background pattern */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,0.1) 0%, transparent 70%);
  bottom: -80px; right: 10%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-right: 48px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* H1 */
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}
.hero-h1-grad {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  white-space: nowrap;
}
.hero-btn-primary:hover { background: var(--violet-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1.5px solid #e2e8f0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.hero-btn-secondary:hover { border-color: var(--violet-l); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 1px;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
}

/* Floating preview card */
.hero-card-float {
  position: absolute;
  right: max(24px, calc(50% - 560px + 24px));
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-12px); }
}
.hcf-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.hcf-dot { width: 10px; height: 10px; border-radius: 50%; }
.hcf-dot-r { background: #f87171; }
.hcf-dot-y { background: #fbbf24; }
.hcf-dot-g { background: #34d399; }
.hcf-title { font-size: 0.72rem; font-weight: 600; color: #64748b; margin-left: 6px; }
.hcf-body { padding: 20px 16px; text-align: center; }
.hcf-balloon { font-size: 3.5rem; margin-bottom: 14px; animation: balloonBob 3s ease-in-out infinite; }
@keyframes balloonBob {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.hcf-metric-row { display: flex; justify-content: space-around; gap: 8px; margin-bottom: 4px; }
.hcf-metric { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hcf-metric-v { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: #0f172a; }
.hcf-metric-l { font-size: 0.65rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.hcf-insight { padding: 14px 16px; background: linear-gradient(135deg, #eff6ff, #f0fdf4); border-top: 1px solid #e2e8f0; }
.hcf-insight-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #64748b; margin-bottom: 5px; }
.hcf-insight-text { font-size: 0.78rem; color: #1e40af; font-weight: 500; line-height: 1.4; }

@media (max-width: 960px) {
  .hero-card-float { display: none; }
  .hero-inner { max-width: 100%; margin-right: 0; }
  .hero-section { justify-content: center; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin: 0 auto 22px; }
}

/* ══════════════════════════════════════════════════════════════
   TRUSTED BY
   ══════════════════════════════════════════════════════════════ */
.trusted-section {
  padding: 28px 24px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.trusted-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trusted-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.trusted-logo {
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 14px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.trusted-logo:hover { color: var(--violet); background: rgba(37,99,235,0.06); }

/* ══════════════════════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════════════════════ */
.features-section {
  padding: 96px 0;
  background: #f8fafc;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card-highlight {
  background: linear-gradient(145deg, #eff6ff, #f0fdf4);
  border-color: #bfdbfe;
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.feature-desc { font-size: 0.88rem; color: #64748b; line-height: 1.6; }
.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--violet);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */
.how-section {
  padding: 96px 0;
  background: #fff;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.how-step-num {
  font-family: var(--fh);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(37,99,235,0.15);
  line-height: 1;
}
.how-step-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}
.how-step-desc { font-size: 0.88rem; color: #64748b; line-height: 1.6; max-width: 240px; }
.how-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #bfdbfe, #bbf7d0);
  margin-top: 28px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .how-steps { flex-direction: column; align-items: flex-start; gap: 32px; }
  .how-connector { width: 2px; height: 32px; background: linear-gradient(to bottom, #bfdbfe, #bbf7d0); margin: 0 0 0 28px; }
  .how-step { flex-direction: row; text-align: left; align-items: flex-start; }
  .how-step-num { font-size: 2rem; min-width: 60px; }
}

/* ══════════════════════════════════════════════════════════════
   PROVIDERS GRID
   ══════════════════════════════════════════════════════════════ */
.providers-section {
  padding: 96px 0;
  background: #f8fafc;
}
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.provider-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
}
.provider-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pc-icon { font-size: 1.8rem; margin-bottom: 4px; }
.pc-name { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: #0f172a; }
.pc-games { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--violet); margin-bottom: 4px; }
.pc-users { font-size: 0.75rem; color: #64748b; line-height: 1.4; }
.pc-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.1rem;
  color: #cbd5e1;
  transition: color 0.2s, transform 0.2s;
}
.provider-card:hover .pc-arrow { color: var(--violet); transform: translateX(3px); }

/* Provider accent colours */
.pc-pymetrics:hover { border-color: #818cf8; }
.pc-arctic:hover    { border-color: #38bdf8; }
.pc-hirevue:hover   { border-color: #f472b6; }
.pc-aon:hover       { border-color: #fbbf24; }
.pc-shl:hover       { border-color: #34d399; }
.pc-talegent:hover  { border-color: #a78bfa; }
.pc-sova:hover      { border-color: #60a5fa; }

@media (max-width: 900px) { .providers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .providers-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 96px 0;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card-highlight {
  background: linear-gradient(145deg, #eff6ff, #f0fdf4);
  border-color: #bfdbfe;
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: #374151; line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), #7c3aed);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: #0f172a; }
.testimonial-role { font-size: 0.75rem; color: #64748b; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn { font-size: 1rem !important; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0f172a;
  padding: 60px 24px 0;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 260px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; flex: 1; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-link { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-link:hover { color: #fff; }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 120px 24px 64px;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 60%, #1e293b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.9);
  margin-bottom: 14px;
}
.page-hero-h1 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   TIPS PAGE
   ══════════════════════════════════════════════════════════════ */

/* Featured article */
.tips-featured-section { padding: 64px 0 48px; }
.tips-featured-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  align-items: start;
}
.tips-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tips-cat-pymetrics { background: rgba(129,140,248,0.15); color: #4f46e5; }
.tips-cat-arctic    { background: rgba(56,189,248,0.15); color: #0369a1; }
.tips-cat-hirevue   { background: rgba(244,114,182,0.15); color: #be185d; }
.tips-cat-aon       { background: rgba(251,191,36,0.15); color: #92400e; }
.tips-cat-general   { background: rgba(52,211,153,0.15); color: #065f46; }

.tips-featured-title {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 12px;
}
.tips-featured-excerpt { font-size: 0.92rem; color: #475569; line-height: 1.7; margin-bottom: 16px; }
.tips-featured-meta { display: flex; gap: 14px; font-size: 0.78rem; color: #94a3b8; font-weight: 500; margin-bottom: 20px; }
.tips-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--violet);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.tips-read-btn:hover { background: var(--violet-d); transform: translateY(-1px); }

/* Featured visual */
.tips-featured-visual { flex-shrink: 0; }
.tips-visual-card {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: var(--r-lg);
  padding: 24px;
  width: 240px;
  color: #fff;
}
.tips-visual-provider { font-family: var(--fh); font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; }
.tips-visual-games { display: flex; flex-direction: column; gap: 7px; }
.tips-visual-game {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}
.tips-visual-more { color: rgba(255,255,255,0.45) !important; font-style: italic; border-style: dashed !important; }

/* Expanded article body */
.tips-article-body {
  margin-top: 20px;
  padding: 28px 32px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.tips-article-inner { max-width: 720px; }
.tips-article-body h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: #0f172a; margin: 20px 0 10px; }
.tips-article-body h3:first-child { margin-top: 0; }
.tips-article-body p { font-size: 0.9rem; color: #374151; line-height: 1.75; margin-bottom: 12px; }
.tips-article-body ul { padding-left: 20px; margin-bottom: 12px; }
.tips-article-body li { font-size: 0.88rem; color: #374151; line-height: 1.7; margin-bottom: 6px; }
.tips-callout {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 16px 0;
}
.tips-callout-insight { background: #eff6ff; color: #1e40af; border-left: 3px solid #3b82f6; }
.tips-callout-warning { background: #fff7ed; color: #92400e; border-left: 3px solid #f97316; }
.tips-article-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 100px;
  margin-top: 20px;
  transition: background 0.2s;
}
.tips-article-cta:hover { background: var(--violet-d); }

/* Filter bar */
.tips-filter-section { padding: 0 0 80px; }
.tips-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tips-filter-btn {
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s;
}
.tips-filter-btn:hover { border-color: var(--violet-l); color: var(--violet); }
.tips-filter-btn.active { background: var(--violet); color: #fff; border-color: var(--violet); }

/* Article grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tips-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.tips-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tips-card-top { display: flex; align-items: center; justify-content: space-between; }
.tips-read-time { font-size: 0.72rem; color: #94a3b8; font-weight: 500; }
.tips-card-title { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: #0f172a; line-height: 1.3; }
.tips-card-excerpt { font-size: 0.82rem; color: #64748b; line-height: 1.6; flex: 1; }

@media (max-width: 900px) { .tips-grid { grid-template-columns: 1fr 1fr; } .tips-featured-card { grid-template-columns: 1fr; } .tips-featured-visual { display: none; } }
@media (max-width: 560px) { .tips-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════════════════════ */
.pricing-hero { padding-bottom: 32px; }
.pricing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  margin-top: 28px;
}
.pricing-toggle-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.pricing-toggle-btn.active {
  background: #fff;
  color: #0f172a;
}
.pricing-save-badge {
  background: #10b981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.pricing-section { padding: 64px 0 80px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card-pro {
  border-color: var(--violet);
  border-width: 2px;
  background: linear-gradient(160deg, #eff6ff, #fff);
  transform: scale(1.03);
}
.pricing-card-pro:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-tier-icon { font-size: 1.6rem; margin-bottom: 8px; }
.pricing-tier-name { font-family: var(--fh); font-size: 1.15rem; font-weight: 800; color: #0f172a; margin-bottom: 14px; }
.pricing-price-wrap { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-price { font-family: var(--fh); font-size: 2.4rem; font-weight: 800; color: #0f172a; letter-spacing: -0.03em; }
.pricing-period { font-size: 0.85rem; color: #64748b; font-weight: 500; }
.pricing-annual-note { font-size: 0.75rem; color: #94a3b8; margin-bottom: 8px; }
.pricing-tier-desc { font-size: 0.82rem; color: #64748b; line-height: 1.5; margin: 10px 0 20px; padding-top: 14px; border-top: 1px solid #e2e8f0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.pricing-feature { font-size: 0.83rem; display: flex; align-items: flex-start; gap: 6px; }
.pricing-feature-yes { color: #1e293b; }
.pricing-feature-no { color: #94a3b8; }
.pricing-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.pricing-cta-free { background: #f1f5f9; color: #0f172a; border: 1.5px solid #e2e8f0; }
.pricing-cta-free:hover { background: #e2e8f0; }
.pricing-cta-pro { background: var(--violet); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.pricing-cta-pro:hover { background: var(--violet-d); transform: translateY(-1px); }
.pricing-cta-premium { background: linear-gradient(135deg, #0f172a, #1e3a8a); color: #fff; }
.pricing-cta-premium:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-no-card { text-align: center; font-size: 0.72rem; color: #94a3b8; margin-top: 8px; }

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-lg);
  padding: 22px 28px;
  margin-top: 36px;
}
.pricing-guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.pricing-guarantee-title { font-family: var(--fh); font-size: 0.95rem; font-weight: 700; color: #065f46; margin-bottom: 3px; }
.pricing-guarantee-sub { font-size: 0.82rem; color: #047857; }

/* Comparison table */
.comparison-section { padding: 80px 0; background: #f8fafc; }
.comparison-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.comparison-table th, .comparison-table td { padding: 13px 16px; text-align: left; font-size: 0.85rem; border-bottom: 1px solid #f1f5f9; }
.comparison-table th { font-family: var(--fh); font-size: 0.82rem; font-weight: 700; background: #f8fafc; color: #0f172a; border-bottom: 2px solid #e2e8f0; }
.comp-feature-col { min-width: 220px; color: #475569 !important; }
.comp-pro-col { background: rgba(37,99,235,0.04); color: var(--violet); font-weight: 600; }
.comp-section-header { font-family: var(--fh); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8 !important; background: #f8fafc !important; padding-top: 20px !important; }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 680px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q::after { content: '↓'; font-size: 0.9rem; color: #94a3b8; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } .pricing-card-pro { transform: none; } .pricing-card-pro:hover { transform: translateY(-4px); } }

/* ── Practice Page Controls Layout ──────────────────────── */
.page-controls {
  max-width: 1140px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .page-controls .lnav-search-container {
    max-width: 100%;
  }
  .page-controls .lnav-actions {
    justify-content: space-between;
    width: 100%;
    margin-left: 0 !important;
  }
}

