/* ─── 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; }
}

/* ─── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--blue-light) 100%);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(50,140,204,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { margin-bottom: 32px; }

/* ─── HOME ABOUT ────────────────────────────────────────────── */
.home-about {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.home-about__text { display: flex; flex-direction: column; gap: 20px; }
.home-about__text p { font-size: .975rem; line-height: 1.75; color: var(--text-light); }
.home-about__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.home-about__stat { display: flex; flex-direction: column; gap: 4px; }
.home-about__stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}
.home-about__stat-label { font-size: .78rem; color: var(--text-light); }
.home-about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.home-about__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.home-about__img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-about__img-badge-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1;
}
.home-about__img-badge-text {
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ─── CONTACT TEASER ────────────────────────────────────────── */
.contact-teaser {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.contact-teaser h2 { margin-bottom: 16px; }
.contact-teaser .lead { margin: 0 auto 32px; }
.contact-teaser .cta-row { justify-content: center; }

/* ─── TABS ──────────────────────────────────────────────────── */
.tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar { display: none; }
.tabs__btn {
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .18s, border-color .18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tabs__btn:hover { color: var(--blue); }
.tabs__btn.is-active { color: var(--blue); border-bottom-color: var(--blue); }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }

/* ─── TWO COL ───────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}

/* ─── CONTENT BLOCKS ────────────────────────────────────────── */
.content-section { margin-bottom: 48px; }
.content-section:last-child { margin-bottom: 0; }
.content-section + .content-section { padding-top: 40px; border-top: 1px solid var(--border); }
.content-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 12px;
}
.content-body { font-size: .95rem; color: var(--text-light); line-height: 1.8; }
.content-body + .content-body { margin-top: 12px; }

/* ─── CHECK LIST ────────────────────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.65;
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
}

/* ─── INCLUDE CARD ──────────────────────────────────────────── */
.include-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.include-card > h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 20px;
}
.include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.include-list li { display: flex; gap: 14px; align-items: flex-start; }
.include-icon {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.include-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.include-text span { font-size: .82rem; color: var(--text-light); }

/* ─── PRICING BLOCK ─────────────────────────────────────────── */
.pricing-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-block > h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.pricing-block .price-range {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}
.pricing-block .price-range span { font-size: 1rem; color: var(--text-light); font-family: var(--font-body); }
.pricing-block p { font-size: .88rem; color: var(--text-light); line-height: 1.75; }

/* ─── WHY GRID ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-card h4 {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.why-card p { font-size: .85rem; color: var(--text-light); line-height: 1.65; }

/* ─── STEPS ─────────────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.step { display: flex; gap: 24px; align-items: flex-start; }
.step__marker {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff;
  flex-shrink: 0; margin-top: 2px;
}
.step__body h3 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.step__body p { font-size: .9rem; color: var(--text-light); line-height: 1.75; }
.step__body ul {
  list-style: none; margin-top: 10px;
  display: flex; flex-direction: column; gap: 7px;
}
.step__body ul li {
  font-size: .88rem; color: var(--text-light);
  padding-left: 16px; position: relative; line-height: 1.6;
}
.step__body ul li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange);
}
.step__link {
  display: inline-block;
  margin-top: 10px;
  font-size: .9rem; font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: transparent; border: none;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--text);
  text-align: left; cursor: pointer;
  transition: background .15s;
}
.faq-question:hover { background: var(--bg-soft); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .9rem; font-weight: 700; color: var(--blue);
  transition: transform .25s, background .18s, color .18s;
  line-height: 1;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue); color: #fff;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 24px;
  font-size: .9rem; color: var(--text-light); line-height: 1.8;
}
.faq-item.is-open .faq-answer { max-height: 800px; padding: 0 24px 24px; }
.faq-answer p + p { margin-top: 10px; }
.faq-answer ul {
  list-style: none; margin: 10px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.faq-answer ul li {
  padding-left: 16px; position: relative; font-size: .88rem;
}
.faq-answer ul li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange);
}

/* ─── FORMS ─────────────────────────────────────────────────── */
.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-label .req { color: var(--orange); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(50,140,204,.12);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%235a5a6a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px;
}
.form-radio-group {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
}
.form-radio-label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  cursor: pointer; font-size: .875rem; color: var(--text);
  transition: border-color .18s, background .18s;
  user-select: none;
}
.form-radio-label:has(input:checked) {
  border-color: var(--blue); background: var(--blue-light); color: var(--blue);
}
.form-radio-label input { accent-color: var(--blue); width: 16px; height: 16px; }
.form-hint { font-size: .8rem; color: var(--text-light); }
.form-submit { margin-top: 4px; }

/* ─── CONTACT SPLIT ─────────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-schedule {
  background: var(--blue);
  border-radius: var(--radius-lg); padding: 40px; color: #fff;
}
.contact-schedule h3 { font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.contact-schedule p { color: rgba(255,255,255,.82); font-size: .95rem; line-height: 1.75; margin-bottom: 28px; }

/* ─── LANG CHIPS ────────────────────────────────────────────── */
.lang-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.lang-chip {
  background: var(--blue-light); border: 1px solid rgba(50,140,204,.2);
  border-radius: 100px; padding: 6px 16px;
  font-size: .85rem; font-weight: 600; color: var(--blue);
}

/* ─── PANEL INTRO ───────────────────────────────────────────── */
.panel-intro { max-width: 700px; margin-bottom: 40px; }
.panel-intro h2 { margin-bottom: 16px; }

/* ─── SUPPORT EMAIL ─────────────────────────────────────────── */
.support-email-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
}
.support-email-block p { font-size: .9rem; color: var(--text-light); margin-bottom: 8px; }
.support-email-block a { font-weight: 600; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ─── POWERED BY ────────────────────────────────────────────── */
.powered-by {
  margin-left: auto;
  font-size: .8rem;
  color: var(--text-light);
}
.powered-by strong { color: var(--blue); }

/* ─── RESPONSIVE ADDITIONS ──────────────────────────────────── */
@media (max-width: 900px) {
  .home-about,
  .contact-split,
  .two-col { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tabs__btn { padding: 12px 16px; font-size: .85rem; }
  .form-wrap { padding: 28px 24px; }
  .contact-schedule { padding: 28px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 56px 0 48px; }
  .include-card { padding: 24px 20px; }
  .form-wrap { padding: 24px 16px; }
}
