/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:        #328ccc;
  --blue-dark:   #1f6fa8;
  --blue-light:  #e8f4fc;
  --orange:      #f15a22;
  --orange-light:#f3793d;
  --orange-deep: #ef4523;
  --text:        #2e2e2e;
  --text-light:  #5a5a6a;
  --bg:          #ffffff;
  --bg-soft:     #f7f9fc;
  --border:      #e2eaf2;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(50,140,204,0.10);
  --shadow-lg:   0 12px 48px rgba(50,140,204,0.16);
  --font-head:   'DM Serif Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --max:         1140px;
  --nav-h:       72px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--blue { background: var(--blue); color: #fff; }
.section--dark { background: #0f1e2e; color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section--blue .eyebrow,
.section--dark .eyebrow { color: var(--orange-light); }

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; color: var(--text); }
.section--blue h1,
.section--blue h2,
.section--blue h3,
.section--dark h2,
.section--dark h3 { color: #fff; }

.h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.75;
}
.section--blue .lead,
.section--dark .lead { color: rgba(255,255,255,0.82); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(241,90,34,.35);
}
.btn--primary:hover { background: var(--orange-deep); box-shadow: 0 8px 24px rgba(241,90,34,.4); }
.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--ghost:hover { background: var(--blue-light); }
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 32px; }
.link-arrow {
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .18s;
}
.link-arrow:hover { gap: 10px; }
.section--blue .link-arrow,
.section--dark .link-arrow { color: rgba(255,255,255,.9); }

/* ─── LOGO IMAGE ─────────────────────────────────────────── */
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  padding: 0 32px;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color .15s;
}
.nav__links a:hover { color: var(--blue); }
.nav__cta { margin-left: auto; padding: 10px 22px; font-size: .9rem; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f4fc 60%, #fef0ea 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(50,140,204,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(241,90,34,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid rgba(50,140,204,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
}
.hero__label-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.hero h1 { margin-bottom: 24px; color: var(--text); }
.hero h1 em { font-style: italic; color: var(--blue); }

/* Stats card */
.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.stats-card__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.stats-card__title span { color: var(--blue); }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; }
.stat-label { font-size: .875rem; color: var(--text-light); }
.stat-value { font-family: var(--font-head); font-size: 1.3rem; color: var(--blue); }
.stats-card__badge {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: .04em;
}

/* ─── PARTNER STRIP ───────────────────────────────────────── */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-strip {
  background: var(--blue);
  padding: 16px 0;
  overflow: hidden;
}
.partner-strip__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.partner-strip__track:hover { animation-play-state: paused; }
.partner-strip__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
  padding: 0 24px;
}
.partner-strip__sep {
  color: rgba(255,255,255,.35);
  font-size: 1.2rem;
}
.partner-strip__badge {
  background: var(--orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ─── SECTION 1 – BABBEL CONNECTION ──────────────────────── */
.section1__header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section1__header .lead { margin: 0 auto; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pillar-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pillar-card__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--blue);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.pillar-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

.callout-block {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.callout-block__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.callout-block__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}
.callout-block blockquote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}
.callout-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}

/* ─── SECTION 2 – THE SOLUTION ───────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.solution-card__body {
  padding: 28px 30px 36px;
}
.solution-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.solution-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.solution-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.solution-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution-card ul li {
  font-size: .875rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.solution-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ─── SECTION 3 – HR PAIN POINTS ─────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.pain-list { display: flex; flex-direction: column; gap: 20px; }
.pain-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: .95rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-left: 48px;
}
.pain-item::before {
  content: '"';
  position: absolute;
  left: 16px; top: 12px;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--orange-light);
  line-height: 1;
}
.answer-list { display: flex; flex-direction: column; gap: 24px; }
.answer-item { display: flex; gap: 20px; align-items: start; }
.answer-num {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.answer-item h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.answer-item p { font-size: .875rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ─── SECTION 4 – BABBEL PARTNER ─────────────────────────── */
.babbel-intro {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.babbel-stats-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.babbel-stats-table table { width: 100%; border-collapse: collapse; }
.babbel-stats-table th {
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.babbel-stats-table td {
  padding: 14px 20px;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.babbel-stats-table tr:last-child td { border-bottom: none; }
.babbel-stats-table td:last-child { font-weight: 700; color: var(--blue); text-align: right; }
.babbel-stats-table tr:nth-child(even) td { background: var(--bg-soft); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feature-chip {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color .18s, box-shadow .18s;
}
.feature-chip:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(50,140,204,.12); }
.feature-chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #0f1e2e 0%, #1a3550 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(50,140,204,.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.72); max-width: 500px; margin: 0 auto; font-size: 1rem; }
.cta-section .cta-row { justify-content: center; margin-top: 40px; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #0a1620;
  padding: 48px 0 32px;
  color: rgba(255,255,255,.55);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  font-size: .8rem;
  text-align: center;
}

/* ─── SECTION HEADERS UTILITY ─────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .lead { margin: 0 auto; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner,
  .pillars-grid,
  .solution-grid,
  .pain-grid,
  .babbel-intro,
  .callout-block { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .section { padding: 64px 0; }
  .callout-block { padding: 32px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 64px 0 56px; }
}
