/* Inkling marketing site — shared styles.
   Used by every plain-HTML marketing page (index.html, how-it-works.html,
   pricing.html, faq.html, about.html, blog.html). These pages are
   intentionally plain HTML/CSS, not React — so search engines and AI
   crawlers can read the full content immediately, with no JavaScript
   required. Keep it that way; don't turn these into a JS framework. */

:root {
  --navy: #0B2545;
  --navy-deep: #071830;
  --gold: #C98E00;
  --orange: #F3960A;
  --coral: #F0637D;
  --teal: #0FA3A3;
  --mint: #EBF3F3;
  --ink: #22304A;
  --ink-soft: #5E6B85;
  --paper: #EEF9F8;
  --line: #E5E0D2;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3, .brand-font {
  font-family: 'Baloo 2', 'Trebuchet MS', ui-rounded, system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: 40px; margin: 0 0 16px; }
h2 { font-size: 28px; margin: 48px 0 16px; }
h3 { font-size: 20px; margin: 28px 0 10px; }
p { margin: 0 0 16px; }
a { color: var(--teal); }

.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1040px;
}
.site-nav .logo-link img { height: 30px; display: block; }
.nav-logo-block { display: flex; flex-direction: column; gap: 3px; }
.nav-tagline {
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-tagline sup { font-size: 0.85em; }
.site-nav .links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-nav .links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.site-nav .links a:hover { color: var(--teal); }
.site-nav .links a.active { color: var(--teal); text-decoration: underline; text-underline-offset: 6px; }
.cta-btn {
  background: var(--navy);
  color: var(--white) !important;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--navy-deep); }

/* ---------- Hero / sections ---------- */
.hero { padding: 56px 0 40px; }
.hero .eyebrow {
  color: var(--teal);
  font-weight: 800;
  font-family: 'Baloo 2', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero .lede { font-size: 19px; color: var(--ink-soft); max-width: 680px; }

.teaser-hook {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  line-height: 1.5;
}
.teaser-mark {
  display: inline-block;
  margin-top: 4px;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}

.think-write {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--teal);
  margin: 14px 0 22px;
}
.think-write .divider { color: var(--line); margin: 0 8px; font-weight: 400; }

.meet-inky {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 700;
  margin: 0 0 20px;
}
.meet-inky img { height: 52px; width: auto; flex-shrink: 0; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 16px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.letter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 14px;
  margin-right: 10px;
  flex-shrink: 0;
}
.letter-row { display: flex; align-items: flex-start; margin-bottom: 14px; }
.letter-row .letter-body strong { color: var(--navy); }

.tell-show { margin: 10px 0 0; font-size: 15px; }
.tell-show .tell { color: #B0413E; }
.tell-show .show { color: var(--teal); font-weight: 700; }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin: 0 0 8px; font-size: 18px; }

table.pricing-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
table.pricing-table th, table.pricing-table td {
  border: 1px solid var(--line);
  padding: 14px 18px;
  text-align: left;
}
table.pricing-table th { background: #F5F1E4; color: var(--navy); }

.tag-tm { font-size: 0.75em; font-weight: 800; vertical-align: super; }

.center { text-align: center; }
.section-cta { text-align: center; padding: 40px 0; }

.story-beat {
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 16px;
}
.signature { margin-top: 36px; }
.signature .name { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--navy); font-size: 18px; margin-bottom: 2px; }
.signature .role { color: var(--ink-soft); font-size: 14px; }

.story-photo-top { text-align: center; margin: 8px 0 32px; }
.story-photo-top img {
  max-width: 280px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(30,58,95,0.16);
}
.story-photo-top .caption { margin-top: 10px; font-size: 13px; color: var(--ink-soft); font-style: italic; }

/* ---------- Blog articles ---------- */
.article-back { font-size: 14px; margin-bottom: 18px; display: inline-block; }
.article-meta { color: var(--ink-soft); font-size: 14px; margin-bottom: 8px; }
.article-body { max-width: 700px; margin: 0 auto; }
.article-body h2 { font-size: 24px; margin-top: 42px; }
.article-body h3 { font-size: 18px; margin-top: 26px; }
.article-body p { font-size: 17px; }
.article-body ul, .article-body ol { font-size: 17px; padding-left: 22px; }
.article-body li { margin-bottom: 6px; }

.emphasis-line {
  font-weight: 700;
  color: var(--navy);
  font-size: 19px;
  margin: 18px 0;
}

.toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  margin: 28px 0;
}
.toc .toc-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--navy); font-size: 15px; margin-bottom: 10px; }
.toc ul { margin: 0; padding-left: 20px; font-size: 15px; list-style: none; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--teal); }

.checklist { list-style: none; padding-left: 0 !important; }
.checklist li { padding-left: 0; }

.myth-card, .mistake-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0;
}
.myth-card h3, .mistake-card h3 { margin: 0 0 8px; font-size: 17px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag-pill {
  background: #F5F1E4;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}

.internal-links {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 26px;
  margin: 40px 0;
}
.internal-links .title { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.internal-links ul { margin: 0; padding-left: 20px; }
.internal-links li { margin-bottom: 8px; }

.blog-index-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 16px;
}
.blog-index-item h3 { margin: 0 0 8px; }
.blog-index-item h3 a { color: var(--navy); text-decoration: none; }
.blog-index-item h3 a:hover { color: var(--teal); }
.blog-index-item p { margin: 0; color: var(--ink-soft); }
.blog-index-item .read-more { font-size: 14px; font-weight: 700; margin-top: 10px; display: inline-block; }
.pillar-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- New homepage (redesign) ---------- */

.hp-hero {
  background: var(--paper);
  padding: 0;
  margin-bottom: -100px;
}
.hp-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.hp-hero-flat .wrap { max-width: 1200px; }
.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hp-hero-flat .hp-hero-grid {
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: center;
}
@media (min-width: 861px) {
  .hp-hero-inner { aspect-ratio: 1440 / 720; display: flex; align-items: flex-start; padding-top: 60px; }
}
.hp-hero-flat .hp-hero-left { padding-right: 40px; }
/* Grid items default to min-width:auto, which stops them shrinking below the
   intrinsic (unwrapped) width of content like the nowrap .hp-pill badge.
   min-width:0 lets the track actually respect 1fr / 55%/45% and lets the
   pill's own overflow:hidden + ellipsis do its job instead of the whole
   hero blowing out past the viewport. */
.hp-hero-left, .hp-hero-art.hp-hero-art-flat { min-width: 0; }
.hp-hero-flat .hp-h1 { font-size: 34px; line-height: 1.22; margin-bottom: 52px; }
.hp-hero-flat .hp-badge { margin-bottom: 22px; }
.hp-hero-flat .hp-bullets { gap: 10px; margin-bottom: 22px; }
.hp-hero-flat .hp-bullet { font-size: 16px; }

.hp-hero-art-flat {
  position: relative;
  height: 100%;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}
.hp-hero-art-flat .illustration-box {
  width: 560px;
  flex-shrink: 0;
  max-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hp-hero-art-flat img {
  width: 476px;
  max-width: none;
  height: auto;
  display: block;
}
.hp-badge {
  display: inline-flex; align-items: center; gap: 18px;
  width: auto; max-width: 470px;
  padding: 13px 24px; border-radius: 999px;
  background: #fff; border: 1px solid #E6ECEB;
  box-shadow: 0 8px 24px rgba(15,44,69,0.06);
  margin-bottom: 22px;
}
.hp-badge-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 999px;
  background: #18A7A8; display: flex; align-items: center; justify-content: center;
}
.hp-badge-icon svg { width: 20px; height: 20px; }
.hp-badge-text { display: flex; flex-direction: column; min-width: 0; }
.hp-badge-label {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: #6F7B8E;
  margin-bottom: 4px; white-space: nowrap;
}
.hp-badge-main {
  font-family: 'Nunito', sans-serif; font-size: 30px; font-weight: 800; color: #142B59;
  white-space: nowrap; line-height: 1.15;
}
.hp-badge-main .accent { color: #18A7A8; }
.hp-h1 {
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 26px;
}
.hp-h1 .accent {
  color: var(--teal);
}

.hp-bullets { display: grid; gap: 14px; margin-bottom: 28px; }
.hp-bullet { display: flex; align-items: center; gap: 14px; font-size: 18px; font-weight: 700; color: var(--ink); }
.hp-bullet .icon-badge { width: 34px; height: 34px; flex-shrink: 0; }
.hp-bullet .icon-badge.sm { width: 30px; height: 30px; border-radius: 999px; overflow: hidden; }
.hp-bullet .story-word { color: var(--teal); }
.hp-bullet .fedasi-word { color: var(--orange); }
.hp-bullet .inky-word { color: var(--coral); }
.hp-bullet .sub { display: block; font-weight: 500; font-size: 15px; color: var(--ink-soft); margin-top: 2px; }

.hp-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.hp-trust { display: flex; align-items: center; gap: 8px; font-size: 17px; color: var(--ink-soft); font-weight: 500; }
.hp-trust svg { flex-shrink: 0; }

.hp-hero-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 380px;
}

section.hp-section { padding: 100px 0; }
.hp-section-head { text-align: center; margin-bottom: 40px; }
.hp-section-head h2 { position: relative; display: inline-block; margin: 0; font-size: 32px; }
.hp-section-head h2 svg { position: absolute; left: 50%; transform: translateX(-50%); bottom: -12px; }

.hp-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
}
.hp-card .icon-badge { width: 59px; height: 59px; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hp-card h3 { margin: 0 0 8px; font-size: 18px; }
.hp-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.hp-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 14px; }
.hp-step { text-align: left; }
.hp-step .step-top { position: relative; width: 104px; height: 104px; margin-bottom: 18px; }
.hp-step .step-num {
  position: absolute; top: -6px; left: -6px; z-index: 1;
  width: 32px; height: 32px; border-radius: 999px; color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(11,37,69,0.25);
}
.hp-step .step-icon { width: 104px; height: 104px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hp-step h3 { margin: 0 0 6px; font-size: 17px; }
.hp-step p { margin: 0; color: var(--ink-soft); font-size: 14px; max-width: 220px; }
.hp-step-arrow { color: var(--teal); align-self: center; margin-top: 46px; }

.hp-steps-boxed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hp-step-box {
  background: #EAF6F6;
  border-radius: 18px;
  padding: 32px 28px;
  text-align: left;
}
.step-big-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}
.hp-step-box h3 { margin: 0 0 8px; font-size: 18px; }
.hp-step-box p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.hp-system {
  background: var(--mint);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.hp-system-art { position: relative; min-height: 260px; }
.hp-checklist-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 14px 34px rgba(11,37,69,0.12);
  max-width: 300px;
}
.hp-checklist-card h4 { margin: 0 0 14px; font-size: 17px; color: var(--navy); }
.hp-checklist-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hp-checklist-card li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); font-weight: 600; }
.hp-system-copy h2 { font-size: 28px; margin: 0 0 16px; }

.hp-system-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 24px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.hp-system-tabs { display: flex; align-items: flex-end; gap: 14px; height: 260px; }
.hp-tab {
  flex: 1;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.hp-system-copy-dark h2 { color: #fff; font-size: 28px; margin: 0 0 32px; }
.hp-system-copy-dark p { color: rgba(255,255,255,0.82); margin: 0 0 22px; font-size: 16px; max-width: 42ch; }
.hp-system-copy p { color: var(--ink-soft); margin: 0 0 22px; font-size: 16px; }

.hp-testimonial { text-align: center; padding-top: 30px; }
.hp-stars { color: var(--orange); font-size: 22px; letter-spacing: 3px; margin: 14px 0 34px; }
.hp-quote {
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.6;
}
.hp-quote-attr { margin-top: 16px; color: var(--ink-soft); font-weight: 700; }
.hp-carousel-row { display: flex; align-items: center; justify-content: center; gap: 24px; }
.hp-arrow-btn {
  width: 40px; height: 40px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0;
  cursor: pointer;
}

.hp-cta-band {
  background: linear-gradient(135deg, #0FA3A3 0%, #0C8C8C 55%, #0B7A82 100%);
  padding: 46px 0 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hp-footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 32px;
  padding: 18px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hp-footer-copyright p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.75); }
.hp-footer-copyright a { color: rgba(255,255,255,0.9); }
.hp-cta-band .wave { position: absolute; top: -1px; left: 0; width: 100%; line-height: 0; transform: translateY(-99%); }
.hp-cta-dots { position: absolute; top: 36px; right: 8%; opacity: 0.8; }
.hp-cta-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; position: relative; z-index: 1; }
.hp-cta-card, .hp-follow { min-width: 0; }
.hp-cta-band h2 { color: #fff; font-size: 28px; margin: 0 0 10px; line-height: 1.25; }
.hp-cta-band p { color: rgba(255,255,255,0.88); margin: 0 0 22px; font-size: 16px; }
.hp-email-row {
  display: flex;
  max-width: 460px;
  background: #fff;
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 12px 28px rgba(4,40,45,0.25);
}
.hp-email-row input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  outline: none;
  background: transparent;
}
.hp-email-row .cta-btn { flex-shrink: 0; white-space: nowrap; }
.hp-privacy-note { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.8); }
.hp-follow h4 { margin: 0 0 14px; font-size: 16px; color: #fff; }
.hp-social-row { display: flex; gap: 12px; margin-bottom: 14px; }
.hp-social-row a {
  width: 38px; height: 38px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background 0.15s;
}
.hp-social-row a:hover { background: rgba(255,255,255,0.15); }
.hp-social-filled a { background: rgba(255,255,255,0.18); border: none; }
.hp-social-filled a:hover { background: rgba(255,255,255,0.3); }
.hp-handle { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; }

@media (max-width: 860px) {
  .hp-hero-grid { grid-template-columns: 1fr; }
  .hp-hero-art { order: -1; min-height: 260px; }
  .hp-cards3 { grid-template-columns: 1fr; }
  .hp-steps { grid-template-columns: 1fr; }
  .hp-step-arrow { display: none; }
  .hp-steps-boxed { grid-template-columns: 1fr; }
  .hp-system { grid-template-columns: 1fr; padding: 32px; }
  .hp-system-dark { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; min-width: 0; }
  .hp-system-tabs { max-width: 280px; height: 160px; margin: 0 auto; }
  .hp-system-copy-dark { min-width: 0; }
  .hp-cta-grid { grid-template-columns: 1fr; }
  .hp-h1 { font-size: 34px; }
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  margin-top: 60px;
  color: var(--ink-soft);
  font-size: 14px;
}
footer a { color: var(--ink-soft); }

@media (max-width: 640px) {
  h1 { font-size: 30px; }
  h2 { font-size: 22px; }
  .site-nav .links { gap: 14px; }
}

/* ---------- Global overflow guard ---------- */
html, body { overflow-x: hidden; max-width: 100%; }

/* ---------- Nav: hamburger menu (mobile only) ---------- */
.nav-burger { display: none; background: none; border: none; padding: 4px; cursor: pointer; }
.nav-cta-mobile { display: none; }
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 24px 16px;
}
.nav-mobile-menu a {
  padding: 12px 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-menu.open { display: flex; }

@media (max-width: 767px) {
  .site-nav .wrap { flex-wrap: nowrap; }
  .nav-burger { display: block; order: 2; }
  .site-nav .links { display: none; }
  .nav-cta-mobile { display: inline-block; order: 3; padding: 10px 16px; font-size: 14px; white-space: nowrap; }
  .logo-link { order: 1; }
  .logo-link img { height: 24px; }

  /* ---------- Hero: stack, center, tighten padding ---------- */
  .hp-hero-flat .hp-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .hp-hero-art.hp-hero-art-flat { order: 2; }
  .hp-hero-left { order: 1; padding-right: 0; text-align: left; }
  .hp-hero-left .hp-bullet { justify-content: flex-start; text-align: left; }
  .hp-hero-left .hp-bullets { width: fit-content; max-width: 300px; margin-left: 0; margin-right: auto; }
  .hp-hero-left .hp-cta-row { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 14px; }
  .hp-hero-left .hp-trust { text-align: left; }

  /* Badge: horizontal row, icon+text left-aligned, ~24px inset each side */
  .hp-badge {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 12px 18px;
    gap: 14px;
    margin-left: 0;
    margin-right: 0;
  }
  .hp-badge-icon { width: 40px; height: 40px; }
  .hp-badge-icon svg { width: 18px; height: 18px; }
  .hp-badge-label { font-size: 11px; }
  .hp-badge-main {
    font-size: 24px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Heading: bigger, natural wrap, slightly widened to land ~3 lines */
  .hp-hero-flat .hp-h1 {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 28px;
  }
  .desktop-break { display: none; }

  /* Illustration: below text, capped size, no forced overflow-bleed */
  .hp-hero-art-flat {
    justify-content: center;
    min-height: 0;
  }
  .hp-hero-art-flat .illustration-box {
    width: 90%;
    max-width: 320px;
    margin: 40px auto 0 auto;
  }
  .hp-hero-art-flat img {
    width: 100%;
    max-width: 320px;
  }

  /* ---------- Section spacing ---------- */
  section.hp-section { padding-top: 56px; padding-bottom: 56px; }
  .hp-hero { margin-bottom: 0; }

  /* ---------- Cards: single column, tighter gap ---------- */
  .hp-cards3 { grid-template-columns: 1fr; gap: 18px; }
  .hp-steps-boxed { grid-template-columns: 1fr; gap: 18px; }

  /* ---------- How It Works: center the icon in the full-width column ---------- */
  .hp-steps { text-align: center; }
  .hp-step { text-align: center; }
  .hp-step .step-top { margin-left: auto; margin-right: auto; }
  .hp-step p { margin-left: auto; margin-right: auto; }

  /* ---------- Why Parents Choose Inkling: center icon + copy in each card ---------- */
  .hp-card { text-align: center; }
  .hp-card .icon-badge { margin-left: auto; margin-right: auto; }

  /* ---------- System-dark bars: hardcoded desktop px heights overflow the
     shorter mobile container, so scale them down proportionally ---------- */
  .hp-system-tabs .hp-tab:nth-child(1) { height: 90px !important; }
  .hp-system-tabs .hp-tab:nth-child(2) { height: 115px !important; }
  .hp-system-tabs .hp-tab:nth-child(3) { height: 140px !important; }
  .hp-system-tabs .hp-tab:nth-child(4) { height: 115px !important; }
}

/* =====================================================================
   How It Works page — built from the spec. Reuses the same tokens as
   the homepage (colors, radii, .hp-card/.hp-section/.cta-btn patterns).
   New class names below are purely new *content* sections, not a new
   design language.
   ===================================================================== */

.wrap-1120 { max-width: 1120px; margin: 0 auto; padding: 0 48px; }

/* ---------- Hero: text 48% / image 52%, top-aligned, not centered ---------- */
.hiw-hero { background: var(--paper); padding: 80px 0 0; }
.hiw-hero-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 60px;
  align-items: start;
}
.hiw-hero-left { padding-top: 4px; }
.hiw-hero-eyebrow { color: var(--teal); font-weight: 800; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.hiw-hero-left .hp-h1 { font-size: 64px; line-height: 1.12; }
.hiw-hero-left .lede { font-size: 20px; color: var(--ink-soft); font-weight: 600; margin: 0 0 10px; }
.hiw-hero-left .lede-body { font-size: 18px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 32px; max-width: 480px; }
.hiw-hero-left .cta-btn { padding: 15px 30px; font-size: 16px; margin-top: 40px; display: inline-block; }
.hiw-hero-art { display: flex; justify-content: center; animation: hiwFadeUp 0.5s ease both; }
.hiw-hero-art img { width: 560px; max-width: 100%; height: auto; display: block; }

.hiw-bubbles { display: flex; gap: 24px; justify-content: center; margin-bottom: 18px; }
.hiw-bubble {
  width: 90px; height: 90px; border-radius: 999px; background: #fff; border: none;
  box-shadow: 0 4px 14px rgba(11,37,69,0.09);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center; font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.15;
  opacity: 0; animation: hiwFadeUp 0.5s ease both;
}
.hiw-bubble svg { width: 24px; height: 24px; }
.hiw-bubble:nth-child(1) { animation-delay: 0.05s; }
.hiw-bubble:nth-child(2) { animation-delay: 0.17s; }
.hiw-bubble:nth-child(3) { animation-delay: 0.29s; }

@keyframes hiwFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Journey: one long rounded container, icons + thin line ---------- */
.hp-journey { background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: 64px; }
.hp-journey-row { display: flex; align-items: flex-start; justify-content: center; }
.hp-journey-step { text-align: center; width: 200px; opacity: 0; animation: hiwFadeUp 0.5s ease both; }
.hp-journey-step:nth-child(1) { animation-delay: 0.05s; }
.hp-journey-step:nth-child(3) { animation-delay: 0.17s; }
.hp-journey-step:nth-child(5) { animation-delay: 0.29s; }
.hp-journey-icon {
  width: 72px; height: 72px; border-radius: 999px; border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.hp-journey-step h3 { margin: 0 0 4px; font-size: 17px; color: var(--teal); }
.hp-journey-step p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.hp-journey-line { flex: 1; max-width: 90px; height: 2px; background: var(--teal); margin-top: 36px; opacity: 0.5; }
.hp-journey-note { text-align: center; color: var(--ink-soft); font-size: 15px; margin-top: 32px; }

/* ---------- Three-card step section: badge + icon + dotted arrow ---------- */
.hiw-cards3-row { display: flex; align-items: stretch; gap: 0; }
.hiw-cards3-row .hp-card { flex: 1; min-height: 340px; border-radius: 28px; text-align: center; }
.hiw-cards3-row .hp-card .step-top { position: relative; width: 72px; height: 72px; margin: 0 auto 18px; }
.hiw-cards3-row .step-num {
  position: absolute; top: -8px; left: -8px; width: 32px; height: 32px; border-radius: 999px;
  background: var(--teal); color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(11,37,69,0.25);
}
.hiw-cards3-row .step-icon { width: 72px; height: 72px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.hiw-cards3-row .hp-card h3 { font-size: 28px; margin: 0 0 4px; }
.hiw-cards3-row .hp-card .step-sub { color: var(--teal); font-weight: 700; font-size: 14px; margin-bottom: 10px; display: block; }
.hiw-cards3-row .hp-card p { font-size: 18px; line-height: 1.7; }
.page-how-it-works .hp-section-head h2 { font-size: 48px; }
@media (hover: hover) {
  .hiw-cards3-row .hp-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .hiw-cards3-row .hp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(11,37,69,0.08); }
}
.hp-dotted-arrow { display: flex; align-items: center; justify-content: center; width: 48px; flex-shrink: 0; align-self: center; }
.hp-dotted-arrow svg { color: var(--teal); }

/* ---------- Process flow: white container, 4 icons, dotted arrows ---------- */
.hp-flow { background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: 56px; }
.hp-flow-row { display: flex; align-items: center; justify-content: center; }
.hp-flow-step { text-align: center; width: 150px; }
.hp-flow-icon { width: 64px; height: 64px; border-radius: 999px; background: #FCE8EC; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.hp-flow-step p { margin: 0; font-size: 14px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Feedback section: 34/66, feedback card dominant ---------- */
.hiw-feedback-grid { display: grid; grid-template-columns: 34% 66%; gap: 48px; align-items: center; }
.hiw-feedback-left h2 { font-size: 32px; margin: 0 0 14px; }
.hiw-feedback-left p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.hiw-feedback-left .spotlight { color: var(--teal); font-weight: 700; }
.hp-feedback-card { background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 4px 24px rgba(11,37,69,0.05); }
.hp-feedback-inner { display: grid; grid-template-columns: 45% 55%; gap: 28px; }
.hp-feedback-card h4 { margin: 0 0 14px; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-soft); }
.hp-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hp-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); }
.hp-checklist .ic { width: 22px; height: 22px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hp-checklist .ic.good { background: var(--teal); }
.hp-checklist .ic.improve { background: var(--orange); }
.hp-example-box { background: var(--mint); border-radius: 16px; padding: 18px; }
.hp-example-box .lbl { font-size: 12px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; letter-spacing: 0.03em; margin-bottom: 6px; }
.hp-example-box .before { color: var(--ink-soft); font-size: 14px; font-style: italic; margin: 0 0 14px; }
.hp-example-box .after { background: #fff; border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--ink); line-height: 1.6; }
.hp-example-box mark { background: #FCEBD4; color: var(--ink); padding: 0 2px; border-radius: 3px; }

/* ---------- Growth: 4 equal minimal cards, dotted arrows ---------- */
.hiw-growth-row { display: flex; align-items: center; justify-content: center; gap: 0; }
.hp-growth-card { width: 220px; height: 220px; background: #fff; border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; flex-shrink: 0; }
.hp-growth-card .lvl { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--teal); font-size: 14px; margin-bottom: 8px; }
.hp-growth-icon { width: 48px; height: 48px; border-radius: 999px; background: #DCEEEE; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.hp-growth-card h3 { margin: 0 0 4px; font-size: 16px; }
.hp-growth-card p { margin: 0; font-size: 13px; color: var(--ink-soft); }

/* ---------- Parent benefits: 4 horizontal cards ---------- */
.hiw-benefits-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hp-benefit-card { width: 100%; min-height: 140px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.hp-benefit-icon { width: 40px; height: 40px; border-radius: 999px; background: #DCEEEE; display: flex; align-items: center; justify-content: center; }
.hp-benefit-card h3 { margin: 4px 0 0; font-size: 18px; }
.hp-benefit-card p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Bottom CTA: Inky / text / button ---------- */
.hp-bottom-cta { display: flex; align-items: center; gap: 40px; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 40px 48px; }
.hp-bottom-cta img { width: 180px; height: 180px; object-fit: contain; flex-shrink: 0; animation: hiwBob 5.5s ease-in-out infinite; }
.hp-bottom-cta .txt { flex: 1; }
.hp-bottom-cta h2 { margin: 0 0 6px; font-size: 26px; }
.hp-bottom-cta p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.hp-bottom-cta .cta-btn { flex-shrink: 0; padding: 15px 30px; font-size: 16px; white-space: nowrap; transition: transform 0.2s ease; }
.hp-bottom-cta .cta-btn:hover { transform: scale(1.03); }
@keyframes hiwBob { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }

/* ---------- How It Works page: mobile ---------- */
@media (max-width: 767px) {
  .page-how-it-works .hp-section-head h2 { font-size: 34px; }
  .wrap-1120 { padding: 0 20px; }
  .hiw-hero { padding-top: 40px; }
  .hiw-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hiw-hero-art { order: -1; }
  .hiw-hero-art img { width: 100%; max-width: 340px; }
  .hiw-hero-left .hp-h1 { font-size: 42px; }
  .hiw-bubble { width: 60px; height: 60px; font-size: 9px; }

  .hp-journey { padding: 32px 24px; }
  .hp-journey-row { flex-direction: column; align-items: center; gap: 28px; }
  .hp-journey-step { width: 100%; max-width: 260px; }
  .hp-journey-line { display: none; }

  .hiw-cards3-row { flex-direction: column; gap: 24px; }
  .hiw-cards3-row .hp-dotted-arrow { display: none; }
  .hiw-cards3-row::after { content: ""; }

  .hp-flow { padding: 28px 20px; }
  .hp-flow-row { flex-direction: column; gap: 24px; }
  .hp-flow .hp-dotted-arrow { transform: rotate(90deg); width: 30px; }

  .hiw-feedback-grid { grid-template-columns: 1fr; gap: 28px; }
  .hp-feedback-inner { grid-template-columns: 1fr; gap: 20px; }

  .hiw-growth-row { flex-wrap: wrap; gap: 20px; }
  .hp-growth-card { width: calc(50% - 10px); height: auto; min-height: 180px; }
  .hiw-growth-row .hp-dotted-arrow { display: none; }

  .hiw-benefits-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hp-benefit-card { min-height: auto; min-width: 0; }

  .hp-bottom-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .hp-bottom-cta .cta-btn { width: 100%; }

  section.hiw-section { padding: 56px 0 !important; }
}

/* =====================================================================
   Our Story page — reuses homepage/How-It-Works tokens and components
   (.wrap-1120, .hp-section-head, .cta-btn, CSS vars). New class names
   below are page-specific content sections only.
   ===================================================================== */

.page-our-story .hp-section-head h2 { font-size: 40px; }

/* ---------- Hero: text 46% / image 54%, top-aligned ---------- */
.os-hero { background: var(--paper); padding: 72px 0 0; }
.os-hero-grid { display: grid; grid-template-columns: 46% 54%; gap: 56px; align-items: start; }
.os-hero-left { max-width: 460px; padding-top: 4px; }
.os-hero-eyebrow { color: var(--teal); font-weight: 800; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.os-hero-left .hp-h1 { font-size: 60px; font-weight: 800; line-height: 1.08; margin: 0 0 16px; }
.os-hero-sub { color: var(--teal); font-weight: 700; font-size: 24px; margin: 0 0 18px; }
.os-hero-left .lede-body { font-size: 20px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 32px; }
.os-hero-art { display: flex; justify-content: center; animation: hiwFadeUp 0.5s ease both; }
.os-hero-art img { width: 560px; max-width: 100%; height: auto; display: block; border-radius: 24px; }

/* ---------- Discovery: quote-led, layered card with depth ---------- */
.os-discovery-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, #FBFFFF);
  border-radius: 28px; padding: 64px 72px;
  box-shadow: 0 18px 60px rgba(17,42,71,0.06);
  text-align: center;
}
.os-discovery-quote-bg {
  position: absolute; top: 74px; left: 50%; transform: translateX(-50%);
  width: 150px; height: 150px; color: var(--teal); opacity: 0.12; z-index: 0; pointer-events: none;
}
.os-discovery-quote-bg svg { width: 100%; height: 100%; }
.os-discovery-card .lbl {
  position: relative; z-index: 1; color: var(--teal); font-weight: 800; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px;
}
.os-discovery-divider { position: relative; z-index: 1; width: 80px; height: 2px; background: var(--teal); opacity: 0.35; margin: 0 auto 32px; }
.os-discovery-card p { position: relative; z-index: 1; margin: 0 auto; max-width: 780px; font-size: 34px; font-weight: 700; line-height: 1.35; color: var(--ink); }
.os-discovery-card p .accent { color: var(--teal); display: block; margin-top: 8px; }
.os-discovery-magnify-corner { position: absolute; right: 36px; bottom: 30px; z-index: 1; color: var(--teal); opacity: 0.9; }
.os-discovery-magnify-corner svg { width: 52px; height: 52px; }

/* ---------- Journey: 4 cards, thin dotted line (no arrowhead) ---------- */
.os-journey-row { display: flex; align-items: stretch; justify-content: center; gap: 0; }
.os-journey-card {
  width: 260px; height: 250px; background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 28px; display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  opacity: 0; animation: hiwFadeUp 0.5s ease both; flex-shrink: 0;
}
.os-journey-card:nth-child(1) { animation-delay: 0s; }
.os-journey-card:nth-child(3) { animation-delay: 0.1s; }
.os-journey-card:nth-child(5) { animation-delay: 0.2s; }
.os-journey-card:nth-child(7) { animation-delay: 0.3s; }
.os-journey-icon { width: 54px; height: 54px; border-radius: 999px; background: #FCE8EC; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.os-journey-icon svg { width: 26px; height: 26px; }
.os-journey-card h3 { margin: 0 0 8px; font-size: 17px; }
.os-journey-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.os-dotted-line { flex: 1; max-width: 40px; height: 2px; background-image: linear-gradient(to right, var(--teal) 40%, transparent 0%); background-size: 8px 2px; background-repeat: repeat-x; align-self: center; margin-top: -60px; }
@media (hover: hover) {
  .os-journey-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .os-journey-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(17,42,71,0.06); }
}

/* ---------- Founder: blush panel, photo + letter ---------- */
.os-founder-panel {
  background: #FFF7F8; border-radius: 32px; padding: 40px 48px;
  display: grid; grid-template-columns: 28% 72%; gap: 40px; align-items: start; position: relative;
}
.os-founder-photo { padding-top: 6px; }
.os-founder-photo img { width: 100%; max-width: 260px; height: 260px; object-fit: cover; border-radius: 28px; display: block; }
.os-founder-text h2 { font-size: 34px; font-weight: 700; margin: 0 0 14px; }
.os-founder-text p { font-size: 18px; line-height: 1.8; color: var(--ink); max-width: 650px; margin: 0 0 12px; }
.os-founder-signature { margin-top: 32px; }
.os-founder-signature .sig { font-family: 'Segoe Script', 'Brush Script MT', cursive; font-size: 30px; color: var(--ink); }
.os-founder-signature .role { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
.os-founder-heart { position: absolute; right: 32px; bottom: 28px; width: 56px; height: 56px; opacity: 0.7; }

/* ---------- Meet Inky: text / Inky (overlapping) / feedback interface ---------- */
.os-inky-card {
  background: #fff; border-radius: 28px; padding: 44px 48px; box-shadow: 0 12px 36px rgba(17,42,71,0.06);
  display: flex; align-items: flex-end; gap: 0; min-height: 320px;
}
.os-inky-text { flex: 0 0 30%; align-self: center; padding-right: 12px; }
.os-inky-text h2 { margin: 0 0 6px; font-size: 26px; }
.os-inky-text .sub { color: var(--teal); font-weight: 700; font-size: 15px; margin: 0 0 10px; }
.os-inky-text p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

.os-inky-art { position: relative; flex: 0 0 220px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; margin-right: -6px; z-index: 2; }
.os-inky-art img { height: 220px; max-height: 220px; width: auto; animation: hiwBob 6s ease-in-out infinite; }
.os-inky-bubble {
  position: relative; margin-bottom: 10px; max-width: 200px;
  background: #E9F3FC; color: #2C6693; font-size: 13px; font-weight: 700; text-align: center;
  padding: 10px 16px; border-radius: 16px; white-space: normal; line-height: 1.35;
  box-shadow: 0 8px 20px rgba(17,42,71,0.08);
}
.os-inky-bubble::after {
  content: ""; position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%); width: 0; height: 0;
  border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid #E9F3FC;
}

.os-feedback-card {
  flex: 1; min-width: 0; max-width: 440px; align-self: flex-end;
  background: #fff; border: 1px solid #F3D9CC; border-radius: 20px; padding: 30px;
  box-shadow: 0 12px 30px rgba(17,42,71,0.06); position: relative; z-index: 1;
}
.os-fb-header { font-size: 14px; font-weight: 800; color: var(--coral); margin-bottom: 14px; }
.os-feedback-example { font-size: 15px; line-height: 1.65; color: var(--ink); }
.os-feedback-example .before { color: var(--ink-soft); text-decoration: line-through; opacity: 0.65; display: block; margin-bottom: 4px; }
.os-feedback-example .arrow { color: var(--teal); display: block; margin-bottom: 4px; }
.os-feedback-example .hl { font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.os-feedback-example .hl-green { color: #1F8A4C; text-decoration: underline; text-decoration-color: #4CAF7D; }
.os-feedback-example .hl-teal { color: var(--teal); text-decoration: underline; text-decoration-color: var(--teal); }
.os-feedback-example .hl-pink { color: var(--coral); text-decoration: underline; text-decoration-color: var(--coral); }
.os-fb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.os-fb-tags .tag { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.os-fb-tags .tag-green { background: #E3F5E9; color: #1F8A4C; }
.os-fb-tags .tag-teal { background: #E1F3F3; color: var(--teal); }
.os-fb-tags .tag-pink { background: #FCE8EC; color: var(--coral); }

/* ---------- Mission: white container, text / 4 benefits ---------- */
.os-mission-panel {
  background: #fff; border-radius: 28px; padding: 40px 48px; box-shadow: 0 12px 36px rgba(17,42,71,0.06);
  display: grid; grid-template-columns: 36% 64%; gap: 32px; align-items: center;
}
.os-mission-text { max-width: 340px; }
.os-mission-text .lbl { display: flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.os-mission-text .lbl svg { width: 18px; height: 18px; }
.os-mission-text h2 { font-size: 26px; margin: 0 0 10px; }
.os-mission-text p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.os-mission-text p .accent { color: var(--teal); font-weight: 700; }
.os-benefits-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.os-benefit { text-align: center; }
.os-benefit-icon { width: 46px; height: 46px; border-radius: 999px; background: var(--mint); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.os-benefit-icon svg { width: 20px; height: 20px; }
.os-benefit h4 { font-size: 15px; margin: 0 0 4px; }
.os-benefit p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.4; }

/* ---------- Our Story: mobile ---------- */
@media (max-width: 767px) {
  .page-our-story .hp-section-head h2 { font-size: 30px; }
  .os-hero { padding-top: 40px; }
  .os-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .os-hero-left { max-width: none; }
  .os-hero-left .hp-h1 { font-size: 38px; }
  .os-hero-sub { font-size: 19px; }
  .os-hero-left .lede-body { font-size: 17px; }
  .os-hero-art { order: 0; }
  .os-hero-art img { width: 100%; max-width: 340px; margin: 0 auto; }
  /* order: headline block first, art second (already DOM order), body/button after via flex order on children */
  .os-hero-left { display: flex; flex-direction: column; }
  .os-hero-left .cta-btn { order: 3; }
  .os-hero-left .lede-body { order: 2; }

  .os-discovery-card { padding: 44px 24px; }
  .os-discovery-card p { font-size: 22px; }
  .os-discovery-quote-bg { width: 80px; height: 80px; top: 18px; }
  .os-discovery-magnify-corner { display: none; }

  .os-journey-row { flex-direction: column; align-items: center; gap: 20px; }
  .os-journey-card { width: 100%; max-width: 340px; height: auto; min-height: 0; }
  .os-dotted-line { display: none; }

  .os-founder-panel { grid-template-columns: 1fr; padding: 28px 22px; gap: 20px; text-align: center; }
  .os-founder-photo { display: flex; justify-content: center; }
  .os-founder-photo img { width: 220px; height: 220px; max-width: 220px; }
  .os-founder-text p { max-width: none; }
  .os-founder-heart { display: none; }

  .os-inky-card { flex-direction: column; text-align: center; padding: 28px 22px; gap: 16px; min-height: 0; }
  .os-inky-text { flex: none; padding-right: 0; }
  .os-inky-art { flex: none; margin-right: 0; flex-direction: column; }
  .os-inky-art img { height: 150px; max-height: 150px; }
  .os-inky-bubble { position: static; transform: none; display: inline-flex; margin-bottom: 10px; white-space: normal; }
  .os-inky-bubble::after { display: none; }
  .os-feedback-card { max-width: 340px; width: 100%; }

  .os-mission-panel { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; text-align: center; }
  .os-mission-text { max-width: none; }
  .os-mission-text .lbl { justify-content: center; }
  .os-benefits-row { grid-template-columns: 1fr 1fr; gap: 20px; }

  section.os-section { padding: 56px 0 !important; }
}

/* =====================================================================
   Pricing page — reuses homepage/site tokens and components
   (.hp-section-head, .cta-btn, CSS vars). New class names below are
   page-specific content sections only.
   ===================================================================== */

.wrap-1200 { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.page-pricing .hp-section-head h2 { font-size: 40px; }

/* ---------- Hero: 48% text / 52% illustration ---------- */
.pr-hero { background: var(--paper); padding: 72px 0 0; }
.pr-hero-grid { display: grid; grid-template-columns: 48% 52%; gap: 64px; align-items: center; }
.pr-hero-left, .pr-hero-art-frame { min-width: 0; }
.pr-hero-left { max-width: 470px; }
.pr-hero-label { color: var(--teal); font-weight: 700; font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.pr-hero-left .hp-h1 { font-size: 64px; font-weight: 800; line-height: 1.05; color: var(--ink); margin: 0 0 16px; }
.pr-hero-tagline { color: var(--teal); font-weight: 700; font-size: 24px; line-height: 1.4; margin: 0 0 16px; }
.pr-hero-left .lede-body { font-size: 22px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 32px; }
.pr-hero-left .cta-btn { height: 52px; box-sizing: border-box; display: inline-flex; align-items: center; border-radius: 28px; padding: 0 34px; font-size: 16px; }
.pr-hero-art-frame {
  width: 640px; max-width: 100%; height: 420px; background: #fff; border-radius: 36px; padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.pr-hero-art-frame img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }

/* ---------- Why families choose Inkling: 3 cards ---------- */
.pr-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pr-card { background: #fff; border-radius: 28px; padding: 40px; box-shadow: 0 12px 40px rgba(0,0,0,0.05); min-height: 260px; }
.pr-card-icon { width: 72px; height: 72px; border-radius: 999px; background: #FCE8EC; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.pr-card-icon svg { width: 32px; height: 32px; }
.pr-card h3 { font-size: 22px; font-weight: 700; text-align: center; margin: 0 0 12px; }
.pr-card p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); text-align: center; margin: 0; }

/* ---------- Pricing cards ---------- */
.pr-plans-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.pr-plan-card { background: #fff; border-radius: 30px; padding: 48px; box-shadow: 0 12px 40px rgba(0,0,0,0.05); position: relative; display: flex; flex-direction: column; }
.pr-plan-card.featured { border: 2px solid var(--coral); box-shadow: 0 12px 40px rgba(240,99,125,0.14); }
.pr-plan-badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff; font-weight: 800; font-size: 14px;
  padding: 8px 20px; border-radius: 18px; white-space: nowrap;
}
.pr-plan-name { color: var(--teal); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.pr-plan-card.featured .pr-plan-name { color: var(--coral); }
.pr-plan-price { font-size: 44px; font-weight: 800; color: var(--ink); margin: 0 0 4px; }
.pr-plan-price .unit { font-size: 16px; font-weight: 700; color: var(--ink-soft); }
.pr-plan-save { display: inline-block; background: #FCE8EC; color: var(--coral); font-weight: 700; font-size: 13px; padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.pr-plan-list { list-style: none; margin: 20px 0 28px; padding: 0; display: grid; gap: 14px; }
.pr-plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink); }
.pr-plan-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.pr-plan-card .cta-btn { display: flex; align-items: center; justify-content: center; width: 100%; height: 52px; box-sizing: border-box; border-radius: 28px; font-size: 16px; margin-top: auto; }
.pr-btn-outline { background: none; border: 2px solid var(--teal); color: var(--teal) !important; }
.pr-btn-outline:hover { background: var(--teal); color: #fff !important; }
.pr-btn-filled-pink { background: var(--coral); border: 2px solid var(--coral); }
.pr-btn-filled-pink:hover { background: #e0455f; }

/* ---------- Everything included strip ---------- */
.pr-included-strip {
  background: #fff; border-radius: 32px; padding: 48px; box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.pr-included-heading { flex: 0 0 36%; font-size: 26px; font-weight: 800; color: var(--ink); margin: 0; }
.pr-included-icons { flex: 1; display: flex; justify-content: space-between; gap: 16px; }
.pr-included-icon-item { text-align: center; }
.pr-included-icon { width: 64px; height: 64px; border-radius: 999px; border: 1.5px solid var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.pr-included-icon svg { width: 26px; height: 26px; }
.pr-included-icon-item p { margin: 0; font-size: 14px; font-weight: 700; color: var(--ink); }

/* ---------- Testimonial (replaces FAQ) ---------- */
.pr-testimonial {
  background: #fff; border-radius: 20px; padding: 40px 48px 40px 40px; box-shadow: 0 20px 45px rgba(20,43,89,0.08);
  display: grid; grid-template-columns: 36% 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.pr-testimonial-art {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(18,43,89,0.08);
  display: flex; align-items: center; justify-content: center;
}
.pr-testimonial-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.pr-testimonial-content { max-width: 600px; }
.pr-testimonial-pill {
  display: inline-flex; align-items: center; gap: 6px; background: #FCE8EC; color: var(--coral);
  font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.pr-testimonial-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.pr-testimonial-stars { color: var(--coral); font-size: 18px; letter-spacing: 3px; margin-bottom: 18px; }
.pr-testimonial-quote-icon { color: var(--coral); opacity: 0.2; width: 36px; height: 36px; margin-bottom: 18px; }
.pr-testimonial blockquote { margin: 0 0 36px; font-size: 28px; font-weight: 700; line-height: 1.4; color: var(--ink); }
.pr-testimonial-divider { display: flex; align-items: center; gap: 12px; max-width: 380px; margin-bottom: 24px; }
.pr-testimonial-divider .line { flex: 1; height: 1px; background: #EADFD8; }
.pr-testimonial-divider svg { width: 16px; height: 16px; color: #F15C7C; flex-shrink: 0; }
.pr-testimonial-attribution { font-weight: 700; color: var(--teal); font-size: 16px; }
.pr-testimonial-attribution span { display: block; font-weight: 600; color: var(--ink-soft); font-size: 14px; margin-top: 6px; }
.pr-testimonial-sparkle { position: absolute; width: 18px; height: 18px; color: var(--coral); opacity: 0.3; }
.pr-testimonial-sparkle.spark-1 { top: 32px; right: 40px; }
.pr-testimonial-sparkle.spark-2 { bottom: 32px; right: 64px; width: 14px; height: 14px; }

/* ---------- Final CTA (no Inky here) ---------- */
.pr-final-cta {
  background: var(--mint); border-radius: 32px; padding: 56px;
  display: flex; align-items: center; gap: 28px;
}
.pr-final-cta-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 999px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.pr-final-cta-icon svg { width: 30px; height: 30px; }
.pr-final-cta-text { flex: 1; }
.pr-final-cta-text h2 { font-size: 48px; margin: 0 0 8px; }
.pr-final-cta-text p { font-size: 18px; color: var(--ink-soft); margin: 0; }
.pr-final-cta .cta-btn { flex-shrink: 0; height: 52px; box-sizing: border-box; display: inline-flex; align-items: center; border-radius: 28px; padding: 0 34px; font-size: 16px; }

/* ---------- Pricing page: mobile ---------- */
@media (max-width: 767px) {
  .page-pricing .hp-section-head h2 { font-size: 30px; }
  .wrap-1200 { padding: 0 24px; }
  .pr-hero { padding-top: 40px; }
  .pr-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .pr-hero-left { max-width: none; }
  .pr-hero-left .hp-h1 { font-size: 40px; }
  .pr-hero-tagline { font-size: 19px; }
  .pr-hero-left .lede-body { font-size: 17px; }
  .pr-hero-art-frame { width: 100%; height: 280px; padding: 16px; }

  .pr-cards3 { grid-template-columns: 1fr; gap: 20px; }
  .pr-card { min-height: 0; padding: 32px; }

  .pr-plans-row { grid-template-columns: 1fr; gap: 24px; }
  .pr-plans-row { display: flex; flex-direction: column; }
  .pr-plans-row .pr-plan-card.featured { order: -1; }
  .pr-plan-card { padding: 32px 24px; }

  .pr-included-strip { flex-direction: column; align-items: stretch; padding: 32px 24px; text-align: center; }
  .pr-included-heading { flex: none; }
  .pr-included-icons { flex-wrap: wrap; justify-content: center; row-gap: 20px; }
  .pr-included-icon-item { flex: 0 0 40%; }

  .pr-testimonial { grid-template-columns: 1fr; padding: 32px; text-align: center; gap: 24px; }
  .pr-testimonial-art { width: 100%; aspect-ratio: 1 / 1; height: auto; margin: 0; }
  .pr-testimonial-content { max-width: none; }
  .pr-testimonial-pill { justify-content: center; }
  .pr-testimonial-stars { justify-content: center; }
  .pr-testimonial blockquote { font-size: 21px; }
  .pr-testimonial-quote-icon { margin-left: auto; margin-right: auto; }
  .pr-testimonial-divider { margin-left: auto; margin-right: auto; }
  .pr-testimonial-sparkle { display: none; }

  .pr-final-cta { flex-direction: column; text-align: center; padding: 36px 24px; }
  .pr-final-cta-text h2 { font-size: 32px; }
  .pr-final-cta .cta-btn { width: 100%; justify-content: center; }

  section.pr-section { padding: 56px 0 !important; }
}

/* =====================================================================
   FAQ page — reuses homepage/site tokens (.cta-btn, CSS vars). New
   class names below are page-specific content + accordion behaviour.
   ===================================================================== */

.fq-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- Hero: left-aligned, faint decorative doodles ---------- */
.fq-hero { background: var(--paper); padding: 72px 0 56px; position: relative; overflow: hidden; }
.fq-hero-tagline { color: var(--teal); font-weight: 700; font-size: 24px; line-height: 1.4; margin: 0 0 24px; }
.fq-hero-label { color: var(--teal); font-weight: 800; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 12px; }
.fq-hero h1 { font-size: 52px; font-weight: 800; line-height: 1.08; color: var(--ink); margin: 0 0 24px; }
.fq-hero-desc { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 640px; margin: 0; }
.fq-hero-doodles { position: absolute; top: 12px; right: 4%; width: 260px; height: 180px; opacity: 0.12; color: var(--teal); pointer-events: none; }
.fq-hero-doodles svg { width: 100%; height: 100%; }

/* ---------- Category labels ---------- */
.fq-category { margin-top: 48px; }
.fq-category:first-of-type { margin-top: 0; }
.fq-category-label {
  display: flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 800; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 20px;
}
.fq-category-label svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- FAQ cards / accordion ---------- */
.fq-card {
  background: #fff; border-radius: 28px; box-shadow: 0 12px 40px rgba(16,43,92,0.05);
  margin-bottom: 20px; transition: box-shadow 250ms ease, transform 250ms ease; overflow: hidden;
}
.fq-card.featured { background: #F8FEFD; border-left: 4px solid #F46F98; }
@media (hover: hover) {
  .fq-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(16,43,92,0.08); }
  .fq-q-btn { cursor: pointer; }
}
.fq-q-btn {
  width: 100%; display: flex; align-items: center; gap: 32px; padding: 32px;
  background: none; border: none; text-align: left; font-family: inherit; color: inherit;
}
.fq-q-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: -2px; border-radius: 20px; }
.fq-icon-wrap {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 999px; background: #DCEEEE;
  display: flex; align-items: center; justify-content: center;
}
.fq-icon-wrap svg { width: 28px; height: 28px; }
.fq-question { flex: 1; margin: 0; font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1.35; }
.fq-toggle-icon { position: relative; flex-shrink: 0; width: 24px; height: 24px; }
.fq-toggle-icon .bar-h, .fq-toggle-icon .bar-v {
  position: absolute; top: 50%; left: 50%; background: var(--teal); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
}
.fq-toggle-icon .bar-h { width: 16px; height: 2.5px; }
.fq-toggle-icon .bar-v { width: 2.5px; height: 16px; }
.fq-card.open .fq-toggle-icon .bar-v { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.fq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 250ms ease-in-out, opacity 250ms ease-in-out; }
.fq-card.open .fq-answer { opacity: 1; }
.fq-answer-inner { padding: 0 32px 32px 128px; font-size: 18px; line-height: 1.75; color: var(--ink-soft); }
.fq-answer-inner a { color: var(--teal); font-weight: 700; }

/* ---------- Bottom CTA (Inky's only appearance on this page) ---------- */
.fq-cta {
  background: #fff; border-radius: 28px; box-shadow: 0 12px 40px rgba(16,43,92,0.05);
  padding: 48px; margin-top: 56px;
  display: flex; align-items: center; gap: 32px;
}
.fq-cta-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 999px; background: var(--mint); display: flex; align-items: center; justify-content: center; }
.fq-cta-icon svg { width: 28px; height: 28px; }
.fq-cta-text { flex: 1; min-width: 0; }
.fq-cta-text h2 { font-size: 30px; margin: 0 0 4px; }
.fq-cta-text .sub { color: var(--teal); font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.fq-cta-text p { font-size: 16px; color: var(--ink-soft); margin: 0 0 20px; max-width: 420px; }
.fq-cta-inky { flex-shrink: 0; width: 150px; }
.fq-cta-inky img { width: 100%; height: auto; display: block; animation: hiwBob 6s ease-in-out infinite; }

/* ---------- FAQ page: mobile ---------- */
@media (max-width: 767px) {
  .fq-wrap { padding: 0 24px; }
  .fq-hero { padding: 40px 0 40px; }
  .fq-hero-doodles { display: none; }
  .fq-hero h1 { font-size: 36px; }
  .fq-hero-tagline { font-size: 18px; }
  .fq-hero-desc { font-size: 17px; }

  .fq-category { margin-top: 40px; }

  .fq-card { margin-bottom: 16px; border-radius: 22px; }
  .fq-q-btn { flex-direction: column; align-items: flex-start; padding: 24px; gap: 12px; position: relative; }
  .fq-icon-wrap { width: 48px; height: 48px; }
  .fq-icon-wrap svg { width: 22px; height: 22px; }
  .fq-toggle-icon { position: absolute; top: 24px; right: 24px; }
  .fq-question { font-size: 18px; padding-right: 32px; }
  .fq-answer-inner { padding: 0 24px 24px 24px; font-size: 17px; }

  .fq-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .fq-cta-text p { max-width: none; }
  .fq-cta-text .cta-btn { width: 100%; justify-content: center; display: flex; }
  .fq-cta-inky { order: 4; width: 130px; }
}

/* =====================================================================
   Blog page — reuses homepage/site tokens (.cta-btn, CSS vars, card
   shadow language). New class names below are page-specific.
   ===================================================================== */

.bl-wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Hero ---------- */
.bl-hero { background: var(--paper); padding: 64px 0 0; }
.bl-label { color: var(--teal); font-weight: 700; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 20px; }
.bl-hero h1 { font-size: 64px; font-weight: 700; line-height: 1.05; color: var(--ink); margin: 0 0 24px; }
.bl-desc { max-width: 650px; font-size: 22px; font-weight: 400; line-height: 1.65; color: var(--ink-soft); margin: 0 0 44px; }

/* ---------- Category pills ---------- */
.bl-pills-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 20px; scrollbar-width: none; }
.bl-pills-row::-webkit-scrollbar { display: none; }
.bl-pill {
  flex-shrink: 0; height: 46px; padding: 0 24px; border-radius: 999px; border: 1.5px solid var(--teal);
  display: inline-flex; align-items: center; gap: 10px; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--teal); background: #fff; white-space: nowrap; cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
}
.bl-pill svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (hover: hover) { .bl-pill:not(.active):hover { background: #DCEEEE; } }
.bl-pill.active { background: linear-gradient(135deg, var(--teal), #0F8D93); color: #fff; border-color: transparent; }
.bl-helper { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink-soft); margin-bottom: 40px; }
.bl-helper svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Grid ---------- */
.bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bl-card {
  display: flex; flex-direction: column; height: 520px; background: #fff;
  border: 1px solid rgba(20,43,89,0.08); border-radius: 24px; padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05); text-decoration: none; color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease; opacity: 0; animation: hiwFadeUp 0.35s ease both;
}
.bl-card:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
@media (hover: hover) {
  .bl-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,0.08); cursor: pointer; }
  .bl-card:hover .bl-card-img { transform: scale(1.03); }
}
.bl-card-img-wrap { width: calc(100% + 40px); height: 180px; margin: -20px -20px 18px -20px; border-radius: 16px 16px 0 0; overflow: hidden; background: var(--mint); }
.bl-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.bl-card-cat { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); margin: 0 0 12px; }
.bl-card h3 {
  font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.3; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.bl-card p {
  font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--ink-soft); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.bl-card-spacer { flex: 1; }
.bl-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 17px; font-weight: 700; margin-top: 14px; }
.bl-read-more .arrow { transition: transform 0.2s ease; }
.bl-card:hover .bl-read-more .arrow { transform: translateX(4px); }
.bl-empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--ink-soft); font-size: 17px; }

/* ---------- Bottom "more articles" strip ---------- */
.bl-more-strip {
  background: var(--mint); border-radius: 24px; padding: 32px 40px; margin-top: 56px;
  display: flex; align-items: center; gap: 24px;
}
.bl-more-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 999px; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.bl-more-icon svg { width: 26px; height: 26px; }
.bl-more-strip h3 { font-size: 20px; margin: 0 0 4px; }
.bl-more-strip p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ---------- Blog page: tablet (2 columns) ---------- */
@media (max-width: 1024px) and (min-width: 768px) {
  .bl-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Blog page: mobile ---------- */
@media (max-width: 767px) {
  .bl-wrap { padding: 0 24px; }
  .bl-hero { padding-top: 40px; }
  .bl-hero h1 { font-size: 44px; }
  .bl-desc { font-size: 18px; margin-bottom: 32px; }
  .bl-pills-row { margin: 0 -24px 20px; padding: 0 24px 4px; }
  .bl-helper { margin-bottom: 28px; }
  .bl-grid { grid-template-columns: 1fr; gap: 24px; }
  .bl-card { height: auto; min-height: 0; }
  .bl-card-img-wrap { height: 190px; }
  .bl-more-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
}

/* ---------- Pricing testimonial: tablet ---------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-testimonial { grid-template-columns: 32% 1fr; gap: 32px; padding: 32px; }
}
