/* ── Local Fonts ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sora-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/sora-800.woff2') format('woff2');
}

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --ink:        #0F1623;
  --ink-mid:    #3A4357;
  --ink-soft:   #6B7385;
  --border:     #E2E6EE;
  --surface:    #F7F8FB;
  --white:      #FFFFFF;
  --blue:       #1B56F5;
  --blue-dark:  #1340C2;
  --blue-tint:  #EEF2FE;
  --green:      #16A34A;
  --green-tint: #DCFCE7;
  --red:        #DC2626;
  --radius:     8px;
  --shadow:     0 1px 4px rgba(15,22,35,.08), 0 4px 16px rgba(15,22,35,.06);
  --shadow-lg:  0 8px 32px rgba(15,22,35,.12);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Layout Utilities ────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 88px 0; }
.section--alt { background: var(--surface); }
.center    { text-align: center; }
.center .lead { margin: 0 auto; }

/* ── Typography Utilities ────────────────────────────────────── */
.label {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
  display: block;
}
.h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; line-height: 1.2; color: var(--ink);
}
.h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--ink);
}
.lead { font-size: 18px; color: var(--ink-mid); max-width: 600px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius); cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap; text-align: center;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink-mid); }
.btn-danger  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-danger:hover { background: #B91C1C; }
.btn-sm { font-size: 13px; padding: 7px 14px; }

/* ── Tag / Badge ─────────────────────────────────────────────── */
.tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; letter-spacing: .04em;
  background: var(--green-tint); color: var(--green);
}
.tag-blue { background: var(--blue-tint); color: var(--blue); }

/* ── Flash Messages ──────────────────────────────────────────── */
.flash { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 15px; font-weight: 500; }
.flash-success { background: var(--green-tint); color: #14532D; border: 1px solid #86EFAC; }
.flash-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ══════════════════════════════════════════════════════════════ */
/* NAV                                                            */
/* ══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 32px; position: relative; padding-top: 20px; padding-bottom: 20px;
}
.nav__logo {
  font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--ink); display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.nav__logo span { color: var(--blue); }
.nav__logo-dot  { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; display: inline-block; }
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 15px; font-weight: 500; color: var(--ink-mid); flex: 1;
}
.nav__links a:hover, .nav__links .nav__active { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); }
.nav__mobile-menu {
  display: none; border-top: 1px solid var(--border);
  background: var(--white); padding-bottom: 16px;
}
.nav__mobile-menu ul { padding: 8px 0; }
.nav__mobile-menu li a {
  display: block; padding: 12px 0; font-size: 16px; font-weight: 500;
  color: var(--ink-mid); border-bottom: 1px solid var(--border);
}
.nav__mobile-menu li:last-child a { border-bottom: none; }
.nav__mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.nav.nav--open .nav__mobile-menu { display: block; }

/* Mobile "Features" submenu */
.nav__mobile-has-dropdown { border-bottom: 1px solid var(--border); }
.nav__mobile-has-dropdown .nav__mobile-dropdown-head { border-bottom: none; }
.nav__mobile-dropdown-head { display: flex; align-items: stretch; }
.nav__mobile-dropdown-head a {
  flex: 1; border-bottom: none; padding: 12px 0;
}
.nav__mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; background: none; border: none; cursor: pointer;
  color: var(--ink-mid);
}
.nav__mobile-dropdown-toggle .nav__caret {
  font-size: 14px; transition: transform .3s var(--ease-soft);
}
.nav__mobile-has-dropdown.nav__mobile-dropdown--open .nav__mobile-dropdown-toggle .nav__caret {
  transform: rotate(180deg);
}
.nav__mobile-dropdown-wrap {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .35s var(--ease-soft);
}
.nav__mobile-has-dropdown.nav__mobile-dropdown--open .nav__mobile-dropdown-wrap {
  grid-template-rows: 1fr;
}
.nav__mobile-dropdown { overflow: hidden; list-style: none; padding: 0 0 4px !important; }
.nav__mobile-dropdown li a {
  padding: 10px 0 10px 16px; font-size: 14.5px;
  color: var(--ink-soft); border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════ */
/* HERO                                                           */
/* ══════════════════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 0;
  background: linear-gradient(170deg, var(--blue-tint) 0%, var(--white) 55%);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink-mid);
  margin-bottom: 24px;
}
.hero__badge .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; color: var(--ink);
  margin-bottom: 20px;
}
.hero__title em { font-style: normal; color: var(--blue); }
.hero__sub { font-size: 18px; color: var(--ink-mid); margin-bottom: 36px; max-width: 500px; line-height: 1.6; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__trust { margin-top: 48px; }
.hero__trust p { font-size: 12px; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.hero__trust-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__trust-logos span {
  font-size: 13px; font-weight: 600; color: var(--ink-mid);
  padding: 6px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
}

/* Dashboard mockup */
.hero__dashboard {
  width: 100%; border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--white); overflow: hidden;
}
.hero__dashboard-bar {
  background: var(--ink); height: 36px;
  display: flex; align-items: center; padding: 0 14px; gap: 8px;
}
.hero__dashboard-bar span { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; display: inline-block; }
.hero__dashboard-bar span:nth-child(2) { background: #ffbd2e; }
.hero__dashboard-bar span:nth-child(3) { background: #28c840; }
.dashboard-body { padding: 20px; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.dash-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.dash-card__label { font-size: 11px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.dash-card__val   { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--ink); }
.dash-card__sub   { font-size: 11px; color: var(--green); font-weight: 500; margin-top: 2px; }
.dash-card--blue  { background: var(--blue); border-color: var(--blue); }
.dash-card--blue .dash-card__label,
.dash-card--blue .dash-card__val,
.dash-card--blue .dash-card__sub { color: var(--white); }
.dash-progress { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.dash-progress__label { font-size: 12px; font-weight: 500; color: var(--ink-mid); margin-bottom: 10px; }
.dash-bar { height: 8px; border-radius: 4px; background: var(--border); margin-bottom: 6px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 4px; background: var(--blue); }
.dash-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-soft); }

/* ══════════════════════════════════════════════════════════════ */
/* STATS STRIP                                                    */
/* ══════════════════════════════════════════════════════════════ */
.stats { background: #fff; padding: 52px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat__val  { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.stat__desc { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 6px; }

/* ══════════════════════════════════════════════════════════════ */
/* PROBLEM / SOLUTION                                             */
/* ══════════════════════════════════════════════════════════════ */
.ps__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ps-card { border-radius: 12px; padding: 36px; border: 1px solid var(--border); }
.ps-card--before { background: #FFFBFB; border-color: #FECACA; }
.ps-card--after  { background: #F0FDF4; border-color: #BBF7D0; }
.ps-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.ps-card--before h3 { color: #991B1B; }
.ps-card--after  h3 { color: #166534; }
.ps-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-mid); margin-bottom: 12px; }
.ps-card li:last-child { margin-bottom: 0; }
.ps-card li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; margin-top: 8px; }
.ps-card--before li::before { background: #EF4444; }
.ps-card--after  li::before { background: #22C55E; }

/* ══════════════════════════════════════════════════════════════ */
/* FEATURES                                                       */
/* ══════════════════════════════════════════════════════════════ */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; background: var(--white);
  transition: box-shadow .2s, border-color .2s;
}
.feature-card:hover { box-shadow: var(--shadow); border-color: #C7D2FE; }
.feature-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--blue-tint); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; font-size: 20px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════ */
/* WHY EDUJET                                                     */
/* ══════════════════════════════════════════════════════════════ */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card  { display: flex; gap: 18px; padding: 28px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); }
.why-card__icon { font-size: 28px; flex-shrink: 0; width: 44px; text-align: center; }
.why-card h3    { margin-bottom: 6px; }
.why-card p     { font-size: 14px; color: var(--ink-mid); }

/* ══════════════════════════════════════════════════════════════ */
/* PRICING                                                        */
/* ══════════════════════════════════════════════════════════════ */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; background: var(--white);
  display: flex; flex-direction: column;
}
.price-card--popular { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,86,245,.08); }
.price-card__name { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.price-card__desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.price-old { font-size: 14px; color: var(--ink-soft); text-decoration: line-through; margin-bottom: 4px; }
.price-val {
  font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800;
  color: var(--ink); line-height: 1; margin-bottom: 24px;
}
.price-val sub { font-size: 14px; font-weight: 500; color: var(--ink-mid); vertical-align: baseline; }
.price-card__divider { border: none; border-top: 1px solid var(--border); margin: 0 0 24px; }
.price-card__features { flex: 1; margin-bottom: 28px; }
.price-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-mid); margin-bottom: 10px; }
.price-card__features li::before { content: '✓'; font-size: 12px; font-weight: 700; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-card__features li.no::before { content: '✗'; color: #EF4444; }

/* ══════════════════════════════════════════════════════════════ */
/* TESTIMONIALS                                                   */
/* ══════════════════════════════════════════════════════════════ */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px; background: var(--white); }
.stars { color: #FBBF24; font-size: 14px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 15px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-card__name { font-weight: 600; color: var(--ink); font-size: 14px; }
.testi-card__role { font-size: 13px; color: var(--ink-soft); }

/* ══════════════════════════════════════════════════════════════ */
/* FAQ                                                            */
/* ══════════════════════════════════════════════════════════════ */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; padding: 20px 0;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--ink); gap: 16px;
}
.faq-q svg { flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--ink-mid); line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════════════════════ */
/* CTA SECTION                                                    */
/* ══════════════════════════════════════════════════════════════ */
.cta-section { background: var(--blue); padding: 80px 0; }
.cta-section .h2 { color: var(--white); }
.cta-section .lead { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }
.btn-white  { background: var(--white); color: var(--blue); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--radius); border: 1.5px solid transparent; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: var(--blue-tint); }
.btn-border { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 8px; }
.btn-border:hover { border-color: rgba(255,255,255,.8); }
.cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

/* ══════════════════════════════════════════════════════════════ */
/* FOOTER                                                         */
/* ══════════════════════════════════════════════════════════════ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer__brand-name span { color: var(--blue); }
.footer__desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6);
  transition: border-color .15s, color .15s;
}
.footer__social a:hover { border-color: var(--white); color: var(--white); }
.footer__col h4 { font-size: 13px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a  { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════════ */
/* BLOG — PUBLIC                                                  */
/* ══════════════════════════════════════════════════════════════ */
.blog-hero { background: var(--surface); padding: 56px 0 48px; border-bottom: 1px solid var(--border); }
.blog-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.blog-hero p  { font-size: 17px; color: var(--ink-mid); max-width: 560px; }

.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 56px 0 80px; }

/* Post grid */
.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.posts-grid--wide { grid-column: 1 / -1; }
.post-card {
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--white); overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow); border-color: #C7D2FE; }
.post-card__cover { width: 100%; height: 200px; object-fit: cover; background: var(--surface); }
.post-card__cover-placeholder { width: 100%; height: 200px; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.post-card__body  { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__cat   { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 8px; }
.post-card__title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; color: var(--ink); }
.post-card__title a:hover { color: var(--blue); }
.post-card__excerpt { font-size: 14px; color: var(--ink-mid); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.post-card__meta  { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--ink-soft); margin-top: auto; }
.post-card__meta span { display: flex; align-items: center; gap: 4px; }

/* Featured post */
.post-card--featured { grid-column: 1 / -1; flex-direction: row; }
.post-card--featured .post-card__cover { width: 45%; height: auto; min-height: 260px; }
.post-card--featured .post-card__cover-placeholder { width: 45%; min-height: 260px; height: auto; }
.post-card--featured .post-card__title { font-size: 22px; }

/* Sidebar */
.blog-sidebar {}
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); }
.sidebar-cats a { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--ink-mid); }
.sidebar-cats a:hover { color: var(--blue); }
.sidebar-cats span { font-size: 12px; color: var(--ink-soft); }
.sidebar-recent li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-recent li:last-child { border-bottom: none; }
.sidebar-recent a { font-size: 14px; font-weight: 500; color: var(--ink-mid); line-height: 1.4; }
.sidebar-recent a:hover { color: var(--blue); }
.sidebar-recent .meta { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }

/* Pagination */
.pagination { display: flex; gap: 8px; align-items: center; margin-top: 40px; }
.pagination a, .pagination span {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
}
.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .current { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ── Single post ─────────────────────────────────────────────── */
.post-header { padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.post-header .post-card__cat { display: block; margin-bottom: 16px; font-size: 13px; }
.post-header h1 { font-family: 'Sora', sans-serif; font-size: clamp(26px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.post-header .post-meta { font-size: 14px; color: var(--ink-soft); display: flex; gap: 20px; flex-wrap: wrap; }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 56px; padding: 48px 0 80px; }
.post-cover { width: 100%; max-height: 480px; object-fit: cover; border-radius: 12px; margin-bottom: 36px; }
.post-body { font-size: 17px; line-height: 1.8; color: var(--ink-mid); }
.post-body h2 { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--ink); margin: 36px 0 16px; }
.post-body h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); margin: 28px 0 12px; }
.post-body p  { margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 8px; }
.post-body a  { color: var(--blue); }
.post-body blockquote { border-left: 3px solid var(--blue); padding-left: 20px; margin: 28px 0; font-style: italic; color: var(--ink-mid); }
.post-body img { border-radius: var(--radius); margin: 24px 0; }
.post-body pre { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; overflow-x: auto; font-size: 14px; margin-bottom: 20px; }
.post-body table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 15px; }
.post-body th, .post-body td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.post-body th { background: var(--surface); font-weight: 600; color: var(--ink); }

/* ══════════════════════════════════════════════════════════════ */
/* ADMIN PANEL                                                    */
/* ══════════════════════════════════════════════════════════════ */
.admin-wrap { display: flex; min-height: 100vh; }

/* Admin sidebar */
.admin-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--ink); color: rgba(255,255,255,.7);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto;
}
.admin-logo { padding: 24px 20px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-logo a { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); }
.admin-logo a span { color: var(--blue); }
.admin-logo small { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; letter-spacing: .04em; text-transform: uppercase; }

.admin-nav { flex: 1; padding: 16px 0; }
.admin-nav-section { padding: 12px 20px 4px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.6); transition: background .15s, color .15s;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.06); color: var(--white); }
.admin-nav a.active { border-right: 3px solid var(--blue); }
.admin-nav .icon { font-size: 16px; width: 20px; text-align: center; }

.admin-sidebar-foot { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.08); }
.admin-sidebar-foot a { font-size: 13px; color: rgba(255,255,255,.4); }
.admin-sidebar-foot a:hover { color: var(--white); }

/* Admin main */
.admin-main { flex: 1; margin-left: 240px; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10;
}
.admin-topbar h1 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; }
.admin-topbar-actions { display: flex; gap: 12px; align-items: center; }
.admin-content { flex: 1; padding: 32px; }

/* Admin cards */
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; }
.admin-stat-card .val  { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--ink); }
.admin-stat-card .desc { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.admin-stat-card .icon { font-size: 24px; margin-bottom: 10px; }

/* Admin table */
.admin-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.admin-table-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.admin-table-head h2 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--surface); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); padding: 11px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--ink-mid); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--surface); }
.admin-table td a { color: var(--blue); font-weight: 500; }
.status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.status-published { background: var(--green-tint); color: var(--green); }
.status-draft     { background: #FEF3C7; color: #92400E; }

/* Admin form */
.admin-form-page { max-width: 1000px; }
.form-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.form-card h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input[type="text"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink);
  background: var(--white); transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group small { font-size: 12px; color: var(--ink-soft); margin-top: 4px; display: block; }
.form-group input[type="file"] { font-size: 13px; color: var(--ink-mid); }

/* Cover preview */
.cover-preview { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 12px; object-fit: cover; height: 160px; }

/* Login page */
.admin-login-page { min-height: 100vh; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.login-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; width: 100%; max-width: 400px; }
.login-card .logo { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.login-card .logo span { color: var(--blue); }
.login-card .subtitle { text-align: center; font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                     */
/* ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner  { grid-template-columns: 1fr; }
  .hero__image  { display: none; }
  .stats__grid  { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid  { grid-template-columns: 1fr 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .blog-layout    { grid-template-columns: 1fr; }
  .blog-sidebar   { display: none; }
  .post-layout    { grid-template-columns: 1fr; }
  .post-layout .blog-sidebar { display: none; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__mobile-toggle  { display: block; }
  .ps__grid     { grid-template-columns: 1fr; }
  .why__grid    { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .pricing__grid  { grid-template-columns: 1fr; }
  .testi__grid    { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; }
  .posts-grid     { grid-template-columns: 1fr; }
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__cover,
  .post-card--featured .post-card__cover-placeholder { width: 100%; }
  .form-grid  { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats__grid  { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .admin-stats-row { grid-template-columns: 1fr; }
  .admin-content  { padding: 20px 16px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 48px 0; }
}

/* ══════════════════════════════════════════════════════════════ */
/* TOP INFO BAR                                                   */
/* ══════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__links { display: flex; gap: 20px; }
.topbar__links a { color: rgba(255,255,255,.65); transition: color .15s; }
.topbar__links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════ */
/* NAV DROPDOWN                                                   */
/* ══════════════════════════════════════════════════════════════ */
.nav__has-dropdown { position: relative; }
.nav__has-dropdown::after {
  /* Invisible bridge over the gap between the link and the dropdown so
     hover doesn't break while the cursor is travelling down to it. */
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}
.nav__caret { font-size: 11px; margin-left: 2px; opacity: .6; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
  list-style: none;
}
.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown:focus-within .nav__dropdown,
.nav__has-dropdown.nav__dropdown--open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: background .12s, color .12s;
}
.nav__dropdown li a:hover { background: var(--surface); color: var(--blue); }

/* ══════════════════════════════════════════════════════════════ */
/* PAGE HERO (inner pages)                                        */
/* ══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2540 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(27,86,245,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,86,245,.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .label { color: rgba(255,255,255,.55); }
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  line-height: 1.65;
}
.page-hero--center { text-align: center; }
.page-hero--center p { margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════════ */
/* SECTION INTRO (reusable)                                       */
/* ══════════════════════════════════════════════════════════════ */
.section-intro { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-intro .h2 { margin-bottom: 14px; }
.section-intro p { font-size: 17px; color: var(--ink-mid); }

/* ══════════════════════════════════════════════════════════════ */
/* FEATURE DEEP-DIVE (features.php)                              */
/* ══════════════════════════════════════════════════════════════ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }
.feature-block--reverse { direction: rtl; }
.feature-block--reverse > * { direction: ltr; }

.feature-block__icon-wrap {
  background: var(--blue-tint);
  border: 1px solid #C7D2FE;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  height: 340px;
}
.feature-block__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 12px;
}
.feature-block h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.feature-block p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.feature-checklist { margin-bottom: 28px; }
.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 10px;
}
.feature-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--green-tint);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Feature mini-cards grid (features overview strip) */
.feature-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature-overview-cell {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
  transition: background .15s;
}
.feature-overview-cell:hover { background: var(--blue-tint); }
.feature-overview-cell .icon { font-size: 28px; margin-bottom: 10px; }
.feature-overview-cell h3 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════ */
/* PRICING PAGE                                                   */
/* ══════════════════════════════════════════════════════════════ */
.pricing-comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 56px;
  font-size: 14px;
}
.pricing-comparison th {
  padding: 16px 20px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.pricing-comparison th:not(:first-child) { text-align: center; }
.pricing-comparison th.popular { color: var(--blue); }
.pricing-comparison td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  vertical-align: middle;
}
.pricing-comparison td:not(:first-child) { text-align: center; }
.pricing-comparison tr:last-child td { border-bottom: none; }
.pricing-comparison tr:hover td { background: var(--surface); }
.pricing-comparison .section-row td {
  background: var(--surface);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  padding: 10px 20px;
}
.pricing-comparison .check { color: var(--green); font-size: 16px; font-weight: 700; }
.pricing-comparison .cross { color: #EF4444; font-size: 16px; }
.pricing-comparison .partial { color: #D97706; font-size: 13px; font-weight: 600; }

/* FAQ (pricing page variant — wider) */
.faq__list--wide { max-width: 860px; }

/* ══════════════════════════════════════════════════════════════ */
/* ABOUT PAGE                                                     */
/* ══════════════════════════════════════════════════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.about-intro__visual {
  background: var(--blue-tint);
  border: 1px solid #C7D2FE;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}
.about-intro__visual .big-emoji { font-size: 96px; line-height: 1; margin-bottom: 16px; }
.about-intro__visual p { font-size: 14px; color: var(--ink-mid); }

.about-intro h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-intro p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 16px; }
.about-intro p:last-child { margin-bottom: 0; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  background: var(--white);
}
.value-card__icon { font-size: 32px; margin-bottom: 16px; }
.value-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

/* Team / founders */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  text-align: center;
}
.team-card__avatar {
  height: 160px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.team-card__body { padding: 20px; }
.team-card__name { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.team-card__bio  { font-size: 13px; color: var(--ink-mid); line-height: 1.6; }

/* Timeline */
.timeline { max-width: 680px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  padding-top: 4px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-year::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  margin: 6px auto 0;
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.timeline-body h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.timeline-body p  { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* Company info strip */
.company-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.company-strip-cell { background: var(--white); padding: 28px 16px; }
.company-strip-cell .val {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.company-strip-cell .lbl { font-size: 13px; color: var(--ink-soft); }

/* ══════════════════════════════════════════════════════════════ */
/* CONTACT PAGE                                                   */
/* ══════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  padding: 72px 0 88px;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-form-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 28px;
}
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.contact-channel:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.contact-channel__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-channel__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 2px; }
.contact-channel__val { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-channel__note { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* Enquiry form */
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form .form-group { margin-bottom: 16px; }
.enquiry-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { outline: none; border-color: var(--blue); }
.enquiry-form textarea { min-height: 120px; resize: vertical; }

/* ══════════════════════════════════════════════════════════════ */
/* SCHOOLS / CLIENTS PAGE                                         */
/* ══════════════════════════════════════════════════════════════ */
.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.school-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  background: var(--white);
  transition: box-shadow .2s, border-color .2s;
}
.school-card:hover { box-shadow: var(--shadow); border-color: #C7D2FE; }
.school-card__logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.school-card__name { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.school-card__location { font-size: 12px; color: var(--ink-soft); font-weight: 500; margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.school-card__desc { font-size: 14px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 16px; }
.school-card__modules { display: flex; flex-wrap: wrap; gap: 6px; }
.school-card__module {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--blue-tint);
  color: var(--blue);
}

/* ══════════════════════════════════════════════════════════════ */
/* TRUST BAR (logos of schools)                                   */
/* ══════════════════════════════════════════════════════════════ */
.trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.trust-bar__label { text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); margin-bottom: 20px; }
.trust-bar__logos { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-bar__logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-mid);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════ */
/* SHARED INNER PAGE PIECES                                       */
/* ══════════════════════════════════════════════════════════════ */
/* Numbered steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 28px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* Callout / alert block */
.callout {
  background: var(--blue-tint);
  border: 1px solid #C7D2FE;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px;
  color: var(--ink-mid);
  margin: 32px 0;
}
.callout strong { color: var(--ink); }

/* Divider with label */
.divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.divider-label::before,
.divider-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ══════════════════════════════════════════════════════════════ */
/* RESPONSIVE — NEW COMPONENTS                                    */
/* ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-block        { grid-template-columns: 1fr; gap: 32px; }
  .feature-block--reverse { direction: ltr; }
  .feature-block__icon-wrap { height: 200px; font-size: 60px; }
  .feature-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro          { grid-template-columns: 1fr; }
  .about-intro__visual  { max-width: 480px; }
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .company-strip        { grid-template-columns: repeat(2, 1fr); }
  .contact-layout       { grid-template-columns: 1fr; }
  .schools-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid           { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .feature-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid  { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr 1fr; }
  .schools-grid { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .enquiry-form .form-row { grid-template-columns: 1fr; }
  .company-strip { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 24px 20px; }
  .pricing-comparison { font-size: 13px; }
  .pricing-comparison th, .pricing-comparison td { padding: 11px 12px; }
}
@media (max-width: 480px) {
  .team-grid    { grid-template-columns: 1fr; }
  .company-strip { grid-template-columns: 1fr 1fr; }
  .trust-bar__logos { gap: 10px; }
}

/* ══════════════════════════════════════════════════════════════ */
/* SOFT MOTION SYSTEM — shared easing + reduced motion support    */
/* ══════════════════════════════════════════════════════════════ */
:root {
  --ease-soft: cubic-bezier(.16,.84,.44,1);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes softFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-14px, 18px) scale(1.04); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes softFloatSlow {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(16px, -14px) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes fadeSoftUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSoftIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes gentlePulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(27,86,245,.16); }
  100% { box-shadow: 0 0 0 10px rgba(27,86,245,0); }
}
@keyframes checkDraw {
  from { stroke-dashoffset: 48; }
  to   { stroke-dashoffset: 0; }
}
@keyframes checkPop {
  0%   { transform: scale(.7); opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); }
}

/* Soft hover lift for existing cards — layered on without touching originals */
.feature-card, .why-card, .price-card, .testi-card, .post-card, .school-card {
  transition: box-shadow .35s var(--ease-soft), border-color .35s var(--ease-soft), transform .35s var(--ease-soft);
}
.feature-card:hover, .why-card:hover, .price-card:hover, .testi-card:hover, .post-card:hover, .school-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.btn { transition: background .2s var(--ease-soft), color .2s var(--ease-soft), border-color .2s var(--ease-soft), transform .2s var(--ease-soft), box-shadow .2s var(--ease-soft); }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 6px 18px rgba(27,86,245,.28); }

/* ══════════════════════════════════════════════════════════════ */
/* ONBOARDING FLOW                                                 */
/* ══════════════════════════════════════════════════════════════ */

/* Hero with floating soft blobs */
.ob-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
  background: linear-gradient(170deg, var(--blue-tint) 0%, var(--white) 60%);
}
.ob-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .55;
  pointer-events: none;
  animation: softFloat 13s ease-in-out infinite;
}
.ob-hero__blob--1 { top: -60px; left: -40px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(27,86,245,.30), transparent 70%); }
.ob-hero__blob--2 { top: 10px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(22,163,74,.22), transparent 70%); animation: softFloatSlow 16s ease-in-out infinite; }
.ob-hero__blob--3 { bottom: -100px; left: 30%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(27,86,245,.18), transparent 70%); animation: softFloat 19s ease-in-out infinite; }
.ob-hero__content { position: relative; z-index: 1; text-align: center; }
.ob-hero .breadcrumb { justify-content: center; color: var(--ink-soft); }
.ob-hero .breadcrumb a { color: var(--ink-mid); }
.ob-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.ob-hero p.lead { margin: 0 auto; }
.ob-hero__trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 24px; font-size: 13px; color: var(--ink-mid); font-weight: 500; }
.ob-hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.ob-hero__trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Layout */
.ob-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; padding: 48px 0 96px; }

/* Stepper progress */
.stepper { margin-bottom: 32px; }
.stepper__labels { display: flex; justify-content: space-between; margin-bottom: 10px; }
.stepper__label { font-size: 12px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; transition: color .3s var(--ease-soft); }
.stepper__label--active { color: var(--blue); }
.stepper__label--done { color: var(--green); }
.stepper__track { height: 6px; border-radius: 4px; background: var(--border); overflow: hidden; }
.stepper__fill { height: 100%; width: 0%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width .5s var(--ease-soft); }

/* Form card */
.ob-form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px; box-shadow: var(--shadow);
}
.ob-step { display: block; }
.js-stepper .ob-step { display: none; }
.js-stepper .ob-step--active { display: block; animation: fadeSoftUp .45s var(--ease-soft); }
.ob-step h2 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.ob-step > p.ob-step__hint { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.ob-nav-btn { display: none; }
.js-stepper .ob-nav-btn { display: inline-flex; }
.ob-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.ob-actions .btn { min-width: 120px; justify-content: center; }

/* Card-select (radio cards) */
.ob-card-select { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.ob-card-select--wide { grid-template-columns: 1fr; }
.ob-card-select__option { position: relative; cursor: pointer; display: block; }
.ob-card-select__option input { position: absolute; opacity: 0; width: 0; height: 0; }
.ob-card-select__body {
  display: block; border: 1.5px solid var(--border); border-radius: 12px; padding: 16px;
  transition: border-color .25s var(--ease-soft), background .25s var(--ease-soft), transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.ob-card-select__option:hover .ob-card-select__body { border-color: #C7D2FE; transform: translateY(-2px); }
.ob-card-select__option input:checked ~ .ob-card-select__body {
  border-color: var(--blue); background: var(--blue-tint);
  box-shadow: 0 0 0 3px rgba(27,86,245,.10);
  animation: gentlePulseRing .6s var(--ease-soft);
}
.ob-card-select__body strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.ob-card-select__body small { display: block; font-size: 12px; color: var(--ink-soft); }
.ob-card-select__badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--blue); background: var(--blue-tint); border-radius: 20px; padding: 2px 8px; margin-bottom: 8px; }
.ob-card-select__price { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; color: var(--ink); margin: 4px 0; }

/* Review summary */
.ob-review { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 24px; }
.ob-review dl { display: grid; grid-template-columns: 130px 1fr; row-gap: 10px; column-gap: 12px; }
.ob-review dt { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.ob-review dd { font-size: 14px; color: var(--ink); font-weight: 500; }

/* Sidebar: what happens next */
.ob-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.ob-sidebar .form-card { margin-bottom: 0; }
.ob-timeline { list-style: none; }
.ob-timeline li { position: relative; padding-left: 30px; padding-bottom: 22px; font-size: 13px; color: var(--ink-mid); line-height: 1.55; }
.ob-timeline li:last-child { padding-bottom: 0; }
.ob-timeline li::before {
  content: ''; position: absolute; left: 6px; top: 2px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue-tint); border: 2px solid var(--blue);
}
.ob-timeline li::after {
  content: ''; position: absolute; left: 10px; top: 14px; bottom: -2px; width: 1.5px; background: var(--border);
}
.ob-timeline li:last-child::after { display: none; }
.ob-timeline li strong { display: block; color: var(--ink); font-size: 13px; margin-bottom: 2px; }
.ob-sidebar .callout { margin: 0; }

/* Success screen */
.ob-success { text-align: center; padding: 24px 8px 8px; }
.ob-success__check {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--green-tint); display: flex; align-items: center; justify-content: center;
  animation: checkPop .5s var(--ease-soft);
}
.ob-success__check svg path { stroke-dasharray: 48; stroke-dashoffset: 48; animation: checkDraw .5s .25s var(--ease-soft) forwards; }
.ob-success h2 { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.ob-success > p { font-size: 15px; color: var(--ink-mid); max-width: 460px; margin: 0 auto 32px; line-height: 1.6; }
.ob-success .ob-timeline { max-width: 420px; margin: 0 auto 32px; text-align: left; }
.ob-success .ob-actions-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .ob-wrap { grid-template-columns: 1fr; }
  .ob-sidebar { position: static; order: -1; }
}
@media (max-width: 640px) {
  .ob-form-card { padding: 24px 18px; }
  .ob-card-select { grid-template-columns: 1fr; }
  .stepper__labels span:not(.stepper__label--active) { display: none; }
}

/* ══════════════════════════════════════════════════════════════ */
/* GLOBAL ANIMATION SYSTEM — hero entrance, nav, accordions,      */
/* micro-interactions. Same --ease-soft curve used everywhere for */
/* a consistent, restrained feel (no bounce/elastic/spin).        */
/* ══════════════════════════════════════════════════════════════ */

@keyframes fadeSoftInRight {
  from { opacity: 0; transform: translateX(28px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* ── Nav: smooth shadow on scroll + underline on links ─────────── */
.nav { transition: box-shadow .3s var(--ease-soft); }
.nav--scrolled { box-shadow: 0 2px 16px rgba(15,22,35,.09); }

.nav__links a { position: relative; padding-bottom: 4px; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: right .3s var(--ease-soft);
}
.nav__links a:hover::after, .nav__links .nav__active::after { right: 0; }

/* Mobile menu: smooth height expand instead of instant show/hide 
.nav__mobile-menu {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding-bottom: 0;
  border-top-color: transparent;
  transition: grid-template-rows .4s var(--ease-soft), border-top-color .3s var(--ease-soft);
}
.nav__mobile-menu .container { overflow: hidden; padding: 16px 0; }
.nav.nav--open .nav__mobile-menu { grid-template-rows: 1fr; border-top-color: var(--border); }
.nav__mobile-toggle svg { transition: transform .3s var(--ease-soft); }
.nav.nav--open .nav__mobile-toggle svg { transform: rotate(90deg); }

/* ── Homepage hero: staggered entrance on load ──────────────────── */
.hero__badge, .hero__title, .hero__sub, .hero__actions, .hero__trust {
  animation: fadeSoftUp .7s var(--ease-soft) both;
}
.hero__badge   { animation-delay: .02s; }
.hero__title   { animation-delay: .10s; }
.hero__sub     { animation-delay: .20s; }
.hero__actions { animation-delay: .30s; }
.hero__trust   { animation-delay: .40s; }
.hero__image   { animation: fadeSoftInRight .8s .22s var(--ease-soft) both; }

/* ── Inner-page hero: staggered entrance + slow floating blobs ──── */
.page-hero .breadcrumb, .page-hero .label, .page-hero h1, .page-hero p {
  animation: fadeSoftUp .7s var(--ease-soft) both;
}
.page-hero .breadcrumb { animation-delay: .02s; }
.page-hero .label      { animation-delay: .10s; }
.page-hero h1           { animation-delay: .18s; }
.page-hero p             { animation-delay: .28s; }
.page-hero::before { animation: softFloat 17s ease-in-out infinite; }
.page-hero::after  { animation: softFloatSlow 21s ease-in-out infinite; }

.ob-hero__content .breadcrumb, .ob-hero__content .label, .ob-hero__content h1,
.ob-hero__content p.lead, .ob-hero__content .ob-hero__trust {
  animation: fadeSoftUp .7s var(--ease-soft) both;
}
.ob-hero__content .breadcrumb    { animation-delay: .02s; }
.ob-hero__content .label         { animation-delay: .10s; }
.ob-hero__content h1              { animation-delay: .18s; }
.ob-hero__content p.lead          { animation-delay: .28s; }
.ob-hero__content .ob-hero__trust { animation-delay: .38s; }

/* ── FAQ: smooth height accordion (CSS grid-rows technique) ─────── */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  transition: grid-template-rows .4s var(--ease-soft), opacity .3s var(--ease-soft), padding-bottom .4s var(--ease-soft);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; opacity: 1; padding-bottom: 20px; }
.faq-q { transition: color .2s var(--ease-soft); }
.faq-item.open .faq-q { color: var(--blue); }

/* ── Stat counters: stop numbers jittering in width while counting ── */
.stat__val { font-variant-numeric: tabular-nums; }

/* ── Card icon micro-interaction on hover (scale only — no spin) ─── */
.feature-card__icon, .why-card__icon, .value-card__icon {
  display: inline-block;
  transition: transform .3s var(--ease-soft);
}
.feature-card:hover .feature-card__icon,
.why-card:hover .why-card__icon,
.value-card:hover .value-card__icon {
  transform: scale(1.12);
}

/* ── Button press feedback ──────────────────────────────────────── */
.btn:active { transform: scale(.97); }

/* ── Back to top button ─────────────────────────────────────────── */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center; color: var(--ink-mid);
  cursor: pointer;
  opacity: 0; transform: translateY(14px) scale(.9); pointer-events: none;
  transition: opacity .3s var(--ease-soft), transform .3s var(--ease-soft), background .2s var(--ease-soft), color .2s var(--ease-soft), border-color .2s var(--ease-soft);
}
.back-to-top--visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-3px); }
@media (max-width: 640px) {
  .back-to-top { right: 16px; bottom: 16px; width: 40px; height: 40px; }
}
