/* =========================================================
   Adoptive Technologies - Design System
   Brand: Navy #4C4B63, Orange #FF9F1C, Blue #5386E4
   Type: Poppins (display), Inter (body/UI), Merriweather (editorial)
   ========================================================= */

:root{
  --navy: #4C4B63;
  --navy-700: #403f56;
  --navy-800: #34333f;
  --navy-900: #26252e;
  --orange: #FF9F1C;
  --orange-600: #EB8F0F;
  --orange-50: #FFF4E2;
  --blue: #5386E4;
  --blue-600: #3E6FCB;
  --blue-50: #EAF0FD;
  --grey: #949396;
  --grey-light: #ABA8B2;
  --ink: #262626;
  --ink-soft: #5B5A63;
  --bg: #FFFFFF;
  --bg-soft: #F7F7F9;
  --bg-soft-2: #F1EFF3;
  --border: #E6E4EA;
  --success: #2E9E6D;

  --font-display: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;

  --container: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(38,37,38,0.06);
  --shadow-md: 0 8px 30px rgba(38,37,38,0.10);
  --shadow-lg: 0 20px 60px rgba(38,37,38,0.16);
  --ease: cubic-bezier(.22,.9,.35,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 110px; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: var(--blue); text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); font-weight: 700; }
h2{ font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.5rem); }
h3{ font-size: 1.28rem; }
p{ margin: 0 0 1em; color: var(--ink-soft); }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow{ max-width: 820px; margin: 0 auto; padding: 0 24px; }

section{ position: relative; }
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
@media (max-width: 780px){
  .section{ padding: 64px 0; }
  .section-tight{ padding: 44px 0; }
}
.bg-soft{ background: var(--bg-soft); }
.bg-navy{ background: linear-gradient(155deg, var(--navy) 0%, var(--navy-800) 100%); color:#fff; }
.bg-navy h2, .bg-navy h3{ color:#fff; }
.bg-navy p{ color: rgba(255,255,255,.78); }
/* ...but not inside light cards sitting on a dark section - those keep normal dark-on-white text */
.bg-navy .card h3{ color: var(--navy); }
.bg-navy .card p{ color: var(--ink-soft); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing:.09em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 14px;
}
.eyebrow::before{ content:''; width:22px; height:2px; background: var(--orange); border-radius:2px; }
.bg-navy .eyebrow{ color: var(--orange); }

.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family: var(--font-display); font-weight: 600; font-size: .97rem;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  cursor:pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; flex-shrink:0; transition: transform .22s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn-primary{ background: var(--orange); color: #262218; box-shadow: 0 8px 22px rgba(255,159,28,.35); }
.btn-primary:hover{ background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,159,28,.42); }
.btn-navy{ background: var(--navy); color: #fff; }
.btn-navy:hover{ background: var(--navy-700); transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.55); color:#fff; }
.btn-outline:hover{ background: rgba(255,255,255,.12); border-color:#fff; transform: translateY(-2px); }
.btn-outline-navy{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color:#fff; transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--navy); padding-left:4px; padding-right:4px; border:none; }
.btn-ghost svg{ width:15px; height:15px; }
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 20px; font-size: .88rem; }

.btn-row{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }

/* ---------- Header ---------- */
.top-bar{
  background: var(--navy-900); color: rgba(255,255,255,.82);
  font-size: .82rem;
}
.top-bar .container{ display:flex; justify-content:space-between; align-items:center; height:38px; }
.top-bar-links{ display:flex; gap:22px; }
.top-bar a{ color: rgba(255,255,255,.82); display:inline-flex; align-items:center; gap:6px; }
.top-bar a:hover{ color: var(--orange); }
.top-bar svg{ width:14px; height:14px; }
.top-bar-social a{ color: rgba(255,255,255,.7); }
.top-bar-social{ display:flex; gap:12px; }

header.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease), padding .25s var(--ease);
}
header.site-header.is-scrolled{ box-shadow: var(--shadow-md); }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; height: 84px; gap: 24px; transition: height .25s var(--ease); }
header.site-header.is-scrolled .nav-wrap{ height: 68px; }
.brand{ display:flex; align-items:center; }
.brand img{ height: 46px; width:auto; transition: height .25s var(--ease); }
header.site-header.is-scrolled .brand img{ height: 38px; }
nav.main-nav{ display:flex; align-items:center; gap: 6px; }
nav.main-nav > ul{ display:flex; gap: 2px; }
nav.main-nav a.nav-link{
  display:flex; align-items:center; gap:5px;
  padding: 10px 14px; border-radius: 8px;
  font-weight: 500; font-size:.95rem; color: var(--navy);
  transition: color .2s, background .2s;
}
nav.main-nav a.nav-link:hover, nav.main-nav li.active > a.nav-link{ color: var(--blue-600); background: var(--blue-50); }
.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-cta{ padding: 12px 22px; }

.has-dropdown{ position: relative; }
.dropdown{
  position:absolute; top: calc(100% + 8px); left:0; min-width: 240px;
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 8px; opacity:0; visibility:hidden; transform: translateY(6px);
  transition: all .2s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a{ display:flex; flex-direction:column; gap:2px; padding:10px 12px; border-radius:8px; color:var(--navy); }
.dropdown a:hover{ background: var(--bg-soft); }
.dropdown a small{ color: var(--ink-soft); font-weight:400; font-size:.79rem; }
.dropdown a strong{ font-size:.92rem; font-weight:600; }

.menu-toggle{
  display:none; width: 44px; height:44px; border-radius:10px; border:1px solid var(--border);
  background:#fff; align-items:center; justify-content:center; cursor:pointer;
}
.menu-toggle svg{ width:22px; height:22px; color: var(--navy); }

.mobile-cta-item{ display:none; }

@media (max-width: 1080px){
  /* backdrop-filter on the header makes it the "containing block" for any fixed-position
     descendant (same rule as transform/filter) - that was trapping the mobile menu's
     inset:68px 0 0 0 against the header's own ~85px height instead of the full screen,
     squashing it into a tiny sliver. Turning it off here (mobile only) fixes that. */
  header.site-header{ backdrop-filter: none; }
  nav.main-nav{ position: fixed; inset: 68px 0 0 0; background:#fff; flex-direction:column; align-items:stretch;
    padding: 18px 22px 30px; overflow-y:auto; transform: translateX(100%); transition: transform .3s var(--ease); z-index: 400; }
  nav.main-nav.open{ transform: translateX(0); }
  nav.main-nav > ul{ flex-direction:column; gap:2px; width:100%; }
  nav.main-nav a.nav-link{ padding:14px 10px; font-size:1.05rem; width:100%; }
  .dropdown{ position:static; box-shadow:none; border:none; opacity:1; visibility:visible; transform:none; display:none; padding-left:14px; }
  .has-dropdown.open .dropdown{ display:flex; flex-direction:column; }
  .mobile-cta-item{ display:block; order:-1; margin-bottom:14px; }
  .mobile-cta-item .btn{ width:100%; }
  .nav-actions{ display:none; }
  /* main-nav has an explicit z-index (400) but the toggle button doesn't have any
     position/z-index of its own - within their shared parent, a positioned element
     always paints above a plain in-flow one regardless of the header's own z-index,
     so the open menu was covering the button that's meant to close it. Giving the
     button its own higher z-index fixes that. */
  .menu-toggle{ display:flex; position:relative; z-index:401; }
}
@media (max-width: 620px){
  /* Client Portal and Remote Support stay hidden on phones (already reachable
     from the main nav) - the email address no longer carries this class, so
     it now shows next to the phone number at every width. */
  .top-bar-links a.hide-mobile{ display:none; }
}
@media (max-width: 560px){
  .top-bar .container{ font-size:.74rem; }
  .top-bar-social{ display:none; }
  /* Phone number + full email address is a tight fit at this size - tighten
     the gap between them so there's a bit of breathing room to spare. */
  .top-bar-links{ gap:14px; }
}
@media (max-width: 400px){
  /* Right at the edge on the smallest phones (iPhone SE, etc.) - shrink a
     little further so the two links have room to spare rather than
     touching/wrapping. */
  .top-bar .container{ font-size:.68rem; }
  .top-bar-links{ gap:10px; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-800) 78%, var(--navy-900) 100%);
  color:#fff; overflow:hidden; position:relative;
}
.hero::before{
  content:''; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background:
    radial-gradient(600px 400px at 88% 8%, rgba(255,159,28,.18), transparent 60%),
    radial-gradient(500px 400px at 100% 100%, rgba(83,134,228,.22), transparent 60%);
}
.hero-inner{
  display:grid; grid-template-columns: 1.05fr .95fr; align-items:center; gap: 40px;
  padding: 76px 0 60px; position:relative; z-index:2;
}
.hero h1{ color:#fff; margin-bottom:.42em; }
.hero .lead{ font-size: 1.14rem; color: rgba(255,255,255,.82); max-width: 560px; }
.hero-badges{ display:flex; gap:22px; flex-wrap:wrap; margin-top:34px; }
.hero-badge{ display:flex; align-items:center; gap:10px; font-size:.88rem; color: rgba(255,255,255,.85); }
.hero-badge svg{ width:20px; height:20px; color: var(--orange); flex-shrink:0; }
.hero-media{ position:relative; }
.hero-media .photo-frame{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  background: linear-gradient(160deg, rgba(255,159,28,.16), rgba(83,134,228,.16));
  display:flex; align-items:flex-end; justify-content:center; min-height: 420px;
}
.hero-media img{ position:relative; z-index:2; max-height: 480px; width:auto; margin:0 auto; }
.hero-media .glow{ position:absolute; width:280px; height:280px; border-radius:50%; background: var(--orange); opacity:.22; filter: blur(60px); top:-40px; right:-40px; }
.hero-crumbs{ display:flex; gap:8px; align-items:center; font-size:.85rem; color: rgba(255,255,255,.6); margin-bottom:22px; }
.hero-crumbs a{ color: rgba(255,255,255,.6); }
.hero-crumbs a:hover{ color:#fff; }
.hero.hero-sub .hero-inner{ padding: 54px 0 68px; grid-template-columns: 1.15fr .85fr; }
.hero.hero-sub .hero-media .photo-frame{ min-height: 320px; }
.hero-checks{ display:flex; flex-direction:column; gap:12px; margin-top:26px; }
.hero-checks li{ display:flex; align-items:center; gap:10px; font-size:.96rem; color:rgba(255,255,255,.88); }
.hero-checks svg{ width:19px; height:19px; color: var(--orange); flex-shrink:0; }

@media (max-width: 900px){
  /* .hero-inner's own padding shorthand zeroes out left/right (it normally
     relies on the two-column grid for side balance) - add it back now that
     the photo column is hidden and the text sits alone. */
  .hero-inner, .hero.hero-sub .hero-inner{ grid-template-columns: 1fr; padding: 48px 24px 60px; }
  /* Photo removed on mobile - was taking up the full screen above the fold */
  .hero-media{ display:none; }
}

/* ---------- Icon circles / stat chips ---------- */
.icon-circle{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background: var(--blue-50); color: var(--blue); flex-shrink:0;
}
.icon-circle svg{ width:26px; height:26px; }
.icon-circle.orange{ background: var(--orange-50); color: var(--orange-600); }
.icon-circle.lg{ width:64px; height:64px; border-radius:18px; }
.icon-circle.lg svg{ width:30px; height:30px; }
.icon-circle.round{ border-radius:50%; }

/* ---------- Problem list ---------- */
.problem-media{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); position:relative; }
.problem-media img{ width:100%; height:100%; object-fit:cover; }

.problem-tiles{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px; max-width: 940px; margin: 0 auto 44px; }
.problem-tile{
  flex: 1 1 380px; max-width: 430px; display:flex; gap:14px; align-items:flex-start; text-align:left;
  font-size:1.02rem; color: var(--ink); font-weight:500;
  padding: 20px 24px; background:#fff; border:1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.problem-tile:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem-tile svg{ width:22px; height:22px; color: var(--orange-600); flex-shrink:0; margin-top:2px; }

/* One-at-a-time reveal - spaced further apart than the site-wide default stagger
   so each tile visibly finishes appearing before the next one starts. */
.problem-tiles[data-reveal-group] > *{ transition-duration: .5s; }
.problem-tiles[data-reveal-group].is-visible > *:nth-child(1){ transition-delay: 0s; }
.problem-tiles[data-reveal-group].is-visible > *:nth-child(2){ transition-delay: .18s; }
.problem-tiles[data-reveal-group].is-visible > *:nth-child(3){ transition-delay: .36s; }
.problem-tiles[data-reveal-group].is-visible > *:nth-child(4){ transition-delay: .54s; }
.problem-tiles[data-reveal-group].is-visible > *:nth-child(5){ transition-delay: .72s; }
/* the closing quote waits until the last tile has finished appearing */
.problem-tiles + .problem-callout[data-reveal]{ transition-delay: .95s; }

.problem-callout{ max-width: 640px; margin: 0 auto; text-align:center; }
.problem-callout .rule{ width:44px; height:3px; background: var(--orange); margin: 0 auto 22px; border-radius:2px; }
.problem-callout p{ font-family: var(--font-serif); font-style: italic; color: var(--navy); font-size:1.35rem; line-height:1.55; margin:0; }
@media (max-width:560px){ .problem-callout p{ font-size:1.15rem; } }
.map-embed{ min-height:340px; }
.map-embed iframe{ display:block; min-height:340px; }
@media (max-width: 640px){ .map-embed{ min-height:280px; } .map-embed iframe{ min-height:280px; } }

/* ---------- Cards ---------- */
.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
@media (max-width: 980px){ .grid-4{ grid-template-columns: repeat(2,1fr); } .grid-3{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 30px 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3{ margin-bottom:.4em; }
.card p{ font-size:.96rem; margin-bottom: 1.1em; }
.card-link{ display:inline-flex; align-items:center; gap:7px; font-weight:600; font-size:.92rem; color: var(--blue-600); }
.card-link svg{ width:15px; height:15px; transition: transform .2s var(--ease); }
.card:hover .card-link svg{ transform: translateX(4px); }

/* "How we help" section - gradient icon tiles on an airy backdrop wash */
.help-section{ position:relative; overflow:hidden; }
.help-section::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(600px 360px at 90% 0%, rgba(255,159,28,.10), transparent 60%),
    radial-gradient(520px 360px at 2% 100%, rgba(83,134,228,.10), transparent 60%);
}
.help-section .container{ position:relative; z-index:1; }
.help-grid{ gap: 32px; }
.help-card{ padding: 38px 32px; }

/* Dark variant - a shade darker than the Proof section's .bg-navy, plus a brighter
   version of the same colour wash so it still reads clearly against the dark base. */
.help-section.bg-navy{ background: linear-gradient(155deg, var(--navy-700) 0%, var(--navy-900) 100%); }
.help-section.bg-navy::before{
  background:
    radial-gradient(600px 360px at 90% 0%, rgba(255,159,28,.16), transparent 60%),
    radial-gradient(520px 360px at 2% 100%, rgba(83,134,228,.18), transparent 60%);
}
.icon-tile{
  width:64px; height:64px; border-radius:18px; display:flex; align-items:center; justify-content:center;
  color:#fff; margin-bottom:18px; flex-shrink:0;
}
.icon-tile svg{ width:30px; height:30px; }
.icon-tile.blue{ background: linear-gradient(150deg, var(--blue), var(--navy)); }
.icon-tile.orange{ background: linear-gradient(150deg, var(--orange), var(--navy)); }
@media (max-width: 640px){ .help-card{ padding: 32px 26px; } }

.service-card-lg{
  display:grid; grid-template-columns: 90px 1fr; gap:22px; padding: 30px; border:1px solid var(--border);
  border-radius: var(--radius-md); background:#fff; align-items:start;
}
.service-card-lg .icon-circle{ width:64px; height:64px; border-radius:18px; }
.service-check{ display:flex; flex-direction:column; gap:9px; margin: 14px 0 16px; }
.service-check li{ display:flex; gap:9px; align-items:flex-start; font-size:.92rem; color: var(--ink-soft); }
.service-check svg{ width:16px; height:16px; color: var(--success); margin-top:3px; flex-shrink:0; }
@media (max-width:640px){ .service-card-lg{ grid-template-columns: 1fr; } }

/* ---------- Values / feature blocks ---------- */
.value-card{ background:#fff; border-radius: var(--radius-md); padding: 26px; text-align:left; border: 1px solid var(--border); }
.value-panel{ background: var(--bg-soft); border-radius: var(--radius-lg); padding: 34px; }

.diff-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap:0; border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; background:#fff; }
.diff-item{ padding: 32px 24px; border-right:1px solid var(--border); text-align:center; }
.diff-item:last-child{ border-right:none; }
.diff-item .icon-circle{ margin:0 auto 16px; }
.diff-item h3{ font-size:1.02rem; }
.diff-item p{ font-size:.88rem; margin:0; }
@media (max-width: 980px){ .diff-strip{ grid-template-columns: repeat(2,1fr); } .diff-item{ border-bottom:1px solid var(--border); } .diff-item:nth-child(2n){ border-right:none; } }
@media (max-width: 560px){ .diff-strip{ grid-template-columns: 1fr; } }

/* ---------- Proof / testimonials ---------- */
.proof-grid{ display:grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items:center; }
.stars{ display:flex; gap:3px; color: var(--orange); }
.stars svg{ width:17px; height:17px; }
.testimonial-quote{ font-family: var(--font-serif); font-size:1.06rem; line-height:1.6; color:#fff; margin: 14px 0; }
.testimonial-source{ font-size:.85rem; color: rgba(255,255,255,.65); }
.proof-divider{ width:1px; align-self:stretch; background: rgba(255,255,255,.14); }
.proof-badge{ text-align:center; }
.proof-badge .badge-chip{ margin: 0 auto 14px; }
@media (max-width: 900px){ .proof-grid{ grid-template-columns:1fr; text-align:center; } .proof-divider{ display:none; } .stars{ justify-content:center; } }
/* "See why businesses choose Adoptive" was set to nowrap like every other
   button, but its longer text has no room to spare on narrow phones and was
   getting cut off - let it wrap onto two lines there instead. */
@media (max-width: 480px){ .proof-more-btn{ white-space:normal; text-align:center; } }

.badge-chip{
  width:96px; height:96px; border-radius:50%; background: rgba(255,159,28,.14); border: 2px solid rgba(255,159,28,.4);
  display:flex; align-items:center; justify-content:center; color: var(--orange);
}
.badge-chip svg{ width:44px; height:44px; }

.testi-card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); padding:28px; }
.testi-card .stars{ margin-bottom:12px; }
.testi-card blockquote{ font-family: var(--font-serif); font-size:1rem; margin:0 0 16px; color: var(--ink); }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:42px; height:42px; border-radius:50%; background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:600; font-size:.85rem; }
.testi-name{ font-weight:600; font-size:.9rem; color:var(--navy); }
.testi-role{ font-size:.8rem; color: var(--ink-soft); }

.slider-track{ display:flex; gap:24px; transition: transform .5s var(--ease); }
.slider-viewport{ overflow:hidden; }
.slider-dots{ display:flex; justify-content:center; gap:8px; margin-top:26px; }
.slider-dots button{ width:9px; height:9px; border-radius:50%; border:none; background: rgba(255,255,255,.3); cursor:pointer; padding:0; }
.slider-dots button.active{ background: var(--orange); width:22px; border-radius:5px; transition: all .25s; }
.slider-nav{ display:flex; gap:10px; }
.slider-arrow{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--border); background:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition: all .2s;
}
.slider-arrow:hover{ background: var(--navy); border-color: var(--navy); }
.slider-arrow:hover svg{ color:#fff; }
.slider-arrow svg{ width:18px; height:18px; color: var(--navy); }
.slider-arrow[disabled]{ opacity:.4; cursor:default; pointer-events:none; }
/* Review cards are white boxes on the dark Proof section - hidden on phones,
   keeping the "Trusted by businesses like yours" heading, stars and the
   "See why businesses choose Adoptive" link above them. */
@media (max-width: 640px){ .reviews-carousel{ display:none; } }

.slide{ flex: 0 0 calc((100% - 48px) / 3); min-width:0; }
.slide .testi-card{ height:100%; }
@media (max-width: 900px){ .slide{ flex: 0 0 100%; } }

/* ---------- Pricing calculator ---------- */
.calc-wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap:0; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); }
.calc-left{ background:#fff; padding: 44px; }
.calc-right{ background: var(--navy); color:#fff; padding: 44px; display:flex; flex-direction:column; justify-content:center; }
.calc-field{ margin-bottom: 26px; }
.calc-field label{ display:flex; justify-content:space-between; font-weight:600; font-size:.92rem; color:var(--navy); margin-bottom:10px; }
.calc-field label .val{ color: var(--orange-600); font-family: var(--font-display); }
input[type=range]{
  -webkit-appearance:none; width:100%; height:6px; border-radius:4px; background: var(--bg-soft-2); outline:none;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; width:22px; height:22px; border-radius:50%; background: var(--orange); cursor:pointer;
  border:4px solid #fff; box-shadow: 0 2px 8px rgba(255,159,28,.5);
}
input[type=range]::-moz-range-thumb{ width:22px; height:22px; border-radius:50%; background: var(--orange); cursor:pointer; border:4px solid #fff; box-shadow: 0 2px 8px rgba(255,159,28,.5); }
select, .text-input{
  width:100%; padding: 13px 16px; border-radius:10px; border:1px solid var(--border); font-family: var(--font-body);
  font-size:.96rem; color: var(--ink); background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%234C4B63' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance:none;
}
.text-input{ background-image:none; }
.calc-addon{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0; border-top:1px solid var(--border); }
.calc-addon:last-child{ border-bottom:1px solid var(--border); }
.calc-addon strong{ display:block; font-family:var(--font-display); font-size:.92rem; color:var(--navy); }
.calc-addon small{ display:block; font-size:.82rem; color:var(--ink-soft); margin-top:2px; }
.calc-check{ display:flex; flex-direction:column; gap:12px; margin-bottom:30px; }
.calc-check li{ display:flex; gap:10px; align-items:center; font-size:.93rem; color: rgba(255,255,255,.88); }
.calc-check svg{ width:18px; height:18px; color: var(--orange); flex-shrink:0; }
.calc-estimate-label{ font-size:.85rem; color: rgba(255,255,255,.65); margin-bottom:4px; }
.calc-estimate{ font-family: var(--font-display); font-size: 2.6rem; font-weight:700; color:#fff; margin-bottom:2px; }
.calc-estimate span{ font-size:1.1rem; font-weight:500; color: rgba(255,255,255,.7); }
.calc-note{ font-size:.78rem; color: rgba(255,255,255,.55); margin-top:16px; }
.calc-capture{ background: var(--bg-soft); border-radius: var(--radius-md); padding:22px; margin-top: 8px; }
.calc-capture-row{ display:flex; gap:10px; margin-top:12px; }
.calc-capture-row .text-input{ flex:1; }
@media (max-width: 900px){ .calc-wrap{ grid-template-columns:1fr; } .calc-left, .calc-right{ padding: 30px 26px; } .calc-capture-row{ flex-direction:column; } }
/* Interactive calculator doesn't fit a phone screen well - hide it there and keep
   just the section heading/price-from copy above it. */
@media (max-width: 640px){ .calc-wrap{ display:none; } }
/* With the calculator hidden and the CTA band + blog section also hidden on
   phones, this section's own bottom padding was stacking directly with the
   Book a call section's top padding - about 128px of empty space between the
   pricing copy and "Start Here". Drop the bottom padding here since there's
   no calculator left to need the breathing room. */
@media (max-width: 640px){ .pricing-section{ padding-bottom:0; } }

/* ---------- FAQ Accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:12px; max-width: 900px; margin: 0 auto; }
.faq-item{ border:1px solid var(--border); border-radius: var(--radius-sm); background:#fff; overflow:hidden; }
.faq-question{
  display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%;
  padding: 20px 22px; background:none; border:none; text-align:left; cursor:pointer;
  font-family: var(--font-display); font-weight:600; font-size:1rem; color: var(--navy);
}
.faq-icon{ width:30px; height:30px; border-radius:50%; background: var(--bg-soft-2); display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative; }
.faq-icon::before, .faq-icon::after{ content:''; position:absolute; background: var(--navy); border-radius:2px; transition: transform .25s var(--ease), opacity .25s; }
.faq-icon::before{ width:12px; height:2px; }
.faq-icon::after{ width:2px; height:12px; }
.faq-item.open .faq-icon{ background: var(--orange); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after{ background:#fff; }
.faq-item.open .faq-icon::after{ transform: rotate(90deg); opacity:0; }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .3s var(--ease); }
.faq-answer-inner{ padding: 0 22px 22px; }
.faq-answer-inner p{ margin:0; font-size:.95rem; }
.faq-item.open .faq-answer{ max-height: 320px; }

/* ---------- CTA band ---------- */
.cta-band{
  display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap;
  background: linear-gradient(120deg, var(--blue-50), var(--orange-50));
  border-radius: var(--radius-lg); padding: 40px 44px;
}
.cta-band-left{ display:flex; align-items:center; gap:20px; }
.cta-band-left p{ margin:4px 0 0; }
.cta-band h3{ margin:0; }
.cta-band-right{ text-align:right; }
.cta-band-right small{ display:block; margin-top:8px; color: var(--ink-soft); font-size:.82rem; }
@media (max-width: 760px){ .cta-band{ flex-direction:column; text-align:center; padding: 32px 26px; } .cta-band-left{ flex-direction:column; text-align:center; } .cta-band-right{ text-align:center; width:100%; } }
/* Homepage-only: hidden on mobile since the actual booking calendar sits right
   below it - two consecutive "book a call" prompts back to back on a small screen. */
@media (max-width: 640px){ .home-cta-band{ display:none; } }
/* Homepage blog teaser section hidden on phones. */
@media (max-width: 640px){ .home-blog-section{ display:none; } }

.cta-final{ background: linear-gradient(155deg, var(--navy) 0%, var(--navy-800) 100%); color:#fff; border-radius: var(--radius-lg); overflow:hidden; position:relative; }
.cta-final::before{ content:''; position:absolute; inset:0; background: radial-gradient(500px 300px at 90% 10%, rgba(255,159,28,.25), transparent 60%); }
.cta-final-inner{ position:relative; z-index:2; padding: 56px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-final h2{ color:#fff; margin-bottom:.3em; }
.cta-final p{ color: rgba(255,255,255,.78); margin:0; max-width:480px; }
@media (max-width: 760px){ .cta-final-inner{ flex-direction:column; text-align:center; padding: 40px 28px; } }

/* ---------- Booking form ---------- */
.book-panel{ display:grid; grid-template-columns: .95fr 1.05fr; gap:0; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); }
.book-info{ background: var(--navy); color:#fff; padding: 48px; display:flex; flex-direction:column; justify-content:center; }
.book-info h2{ color:#fff; }
.book-info p{ color: rgba(255,255,255,.78); }
.book-info-list{ display:flex; flex-direction:column; gap:16px; margin-top:26px; }
.book-info-list li{ display:flex; gap:12px; align-items:flex-start; font-size:.94rem; color: rgba(255,255,255,.85); }
.book-info-list svg{ width:20px; height:20px; color: var(--orange); flex-shrink:0; margin-top:2px; }
.book-form{ background:#fff; padding: 48px; }
.book-form.booking-embed{ padding:0; overflow-x:hidden; }
.book-form.booking-embed iframe{ width:100%; height:720px; border:0; display:block; }
/* Taller on phones, and with a little breathing room on each side instead of
   the embed sitting flush against the screen edges - Microsoft's own widget
   steps through service, date/time and contact fields inside this one box,
   so it needs a lot more height to get through the whole flow without a
   scrollbar-within-a-scrollbar on a small screen. We can't read the real
   content height of a cross-origin iframe, so this is a generous fixed
   height rather than a true auto-fit. */
@media (max-width: 900px){ .book-form.booking-embed{ padding: 0 14px; } }
@media (max-width: 640px){ .book-form.booking-embed iframe{ height:1600px; } }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.form-group{ margin-bottom:18px; }
.form-group label{ display:block; font-weight:600; font-size:.86rem; color: var(--navy); margin-bottom:7px; }
textarea.text-input{ resize: vertical; min-height:96px; font-family: inherit; }
.form-note{ font-size:.8rem; color: var(--ink-soft); margin-top:14px; text-align:center; }
@media (max-width: 900px){ .book-panel{ grid-template-columns:1fr; } .book-info, .book-form{ padding: 34px 28px; } }
@media (max-width: 560px){ .form-row{ grid-template-columns:1fr; } }

/* ---------- Stats ---------- */
.stats-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; text-align:center; }
.stat-num{ font-family: var(--font-display); font-size: 2.4rem; font-weight:700; color: var(--navy); }
.bg-navy .stat-num{ color:#fff; }
.stat-label{ font-size:.88rem; color: var(--ink-soft); }
.bg-navy .stat-label{ color: rgba(255,255,255,.65); }
@media (max-width: 700px){ .stats-row{ grid-template-columns: repeat(2,1fr); } }

/* ---------- Insight / blog cards ---------- */
.insight-card{ border:1px solid var(--border); border-radius: var(--radius-md); overflow:hidden; background:#fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease); display:flex; flex-direction:column; }
.insight-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.insight-thumb{ height:170px; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.insight-thumb svg{ width:52px; height:52px; color: rgba(255,255,255,.9); position:relative; z-index:2; }
.insight-thumb::after{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.14), transparent 55%); }
.thumb-blue{ background: linear-gradient(140deg, var(--blue) 0%, var(--navy) 100%); }
.thumb-navy{ background: linear-gradient(140deg, var(--navy) 0%, var(--navy-900) 100%); }
.thumb-orange{ background: linear-gradient(140deg, var(--orange) 0%, var(--navy) 130%); }
.insight-body{ padding: 22px; display:flex; flex-direction:column; flex:1; }
.tag-pill{ display:inline-block; background: var(--blue-50); color: var(--blue-600); font-size:.74rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:5px 12px; border-radius:100px; margin-bottom:12px; align-self:flex-start; }
.insight-meta{ display:flex; gap:16px; font-size:.8rem; color: var(--ink-soft); margin: 14px 0 6px; }
.insight-meta span{ display:flex; align-items:center; gap:5px; }
.insight-meta svg{ width:13px; height:13px; }
.insight-body h3{ font-size:1.06rem; margin-bottom:8px; }
.insight-body p{ font-size:.9rem; flex:1; }

/* ---------- Footer ---------- */
footer.site-footer{ background: var(--navy-900); color: rgba(255,255,255,.7); padding-top: 70px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img{ height:40px; margin-bottom:16px; filter: brightness(0) invert(1); }
.footer-brand p{ color: rgba(255,255,255,.6); font-size:.9rem; max-width: 280px; }
.footer-contact{ display:flex; flex-direction:column; gap:10px; margin: 16px 0 18px; font-size:.9rem; }
.footer-contact a{ color: rgba(255,255,255,.75); display:flex; align-items:center; gap:9px; }
.footer-contact a:hover{ color: var(--orange); }
.footer-contact svg{ width:15px; height:15px; color: var(--orange); flex-shrink:0; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; color:#fff; transition: background .2s; }
.footer-social a:hover{ background: var(--orange); color: var(--navy-900); }
.footer-social svg{ width:16px; height:16px; }
footer.site-footer h4{ color:#fff; font-size:.92rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px; font-family: var(--font-display); }
.footer-links{ display:flex; flex-direction:column; gap:11px; }
.footer-links a{ color: rgba(255,255,255,.65); font-size:.9rem; }
.footer-links a:hover{ color: var(--orange); }
.footer-badges{ display:flex; align-items:center; gap:22px; margin-top:18px; flex-wrap:wrap; }
.footer-badge-logo{ height:64px; width:auto; }
.footer-badge-logo.tgg{ height:46px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 24px 0; font-size:.82rem; color: rgba(255,255,255,.5); flex-wrap:wrap; gap:10px; }
.footer-bottom-links{ display:flex; gap:22px; }
.footer-bottom-links a{ color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover{ color:#fff; }
.footer-link-btn{ background:none; border:none; padding:0; font: inherit; font-size:.82rem; color: rgba(255,255,255,.5); cursor:pointer; }
.footer-link-btn:hover{ color:#fff; }
@media (max-width: 980px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; gap:34px; } .footer-bottom{ flex-direction:column; text-align:center; } }

/* ---------- Breadcrumb / misc page bits ---------- */
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{ padding:8px 16px; border-radius:100px; border:1px solid var(--border); font-size:.85rem; font-weight:600; color:var(--navy); background:#fff; cursor:pointer; transition: all .2s; }
.pill:hover, .pill.active{ background: var(--navy); color:#fff; border-color: var(--navy); }

.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
@media (max-width: 900px){ .two-col{ grid-template-columns:1fr; gap:32px; } }

.timeline-values{ display:grid; grid-template-columns: repeat(2,1fr); gap: 20px; background: var(--bg-soft); border-radius: var(--radius-lg); padding: 32px; }
.timeline-values .item{ display:flex; gap:14px; }
.timeline-values h4{ font-family:var(--font-display); font-size:1rem; color:var(--navy); margin:0 0 5px; }
.timeline-values p{ font-size:.88rem; margin:0; }
@media (max-width:560px){ .timeline-values{ grid-template-columns:1fr; } }

.people-photo{ position:relative; }
.people-photo .photo-frame{
  border-radius: var(--radius-lg); overflow:hidden; background: linear-gradient(160deg, var(--blue-50), var(--orange-50));
  display:flex; align-items:flex-end; justify-content:center; min-height: 380px;
}
.people-photo img{ max-height: 460px; }

.badge-row{ display:flex; gap:18px; flex-wrap:wrap; align-items:center; }
.brand-chip{ display:flex; align-items:center; gap:10px; padding: 12px 18px; border:1px solid var(--border); border-radius: 12px; font-family: var(--font-display); font-weight:600; color: var(--navy); font-size:.92rem; background:#fff; }
.brand-chip svg{ width:20px; height:20px; color: var(--blue); }

/* ---------- Reveal animation ---------- */
[data-reveal]{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform:none; }
[data-reveal-group] > *{ opacity:0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal-group].is-visible > *{ opacity:1; transform:none; }
[data-reveal-group].is-visible > *:nth-child(1){ transition-delay: .05s; }
[data-reveal-group].is-visible > *:nth-child(2){ transition-delay: .12s; }
[data-reveal-group].is-visible > *:nth-child(3){ transition-delay: .19s; }
[data-reveal-group].is-visible > *:nth-child(4){ transition-delay: .26s; }
[data-reveal-group].is-visible > *:nth-child(5){ transition-delay: .33s; }

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed; right:24px; bottom:24px; width:48px; height:48px; border-radius:50%;
  background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg); border:none; cursor:pointer; z-index:400;
  opacity:0; visibility:hidden; transform: translateY(10px); transition: all .25s var(--ease);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:none; }
.back-to-top:hover{ background: var(--orange); }
.back-to-top svg{ width:20px; height:20px; }

/* ---------- 404 page ---------- */
.error-404{ min-height:60vh; display:flex; align-items:center; }
.error-404-inner{ max-width:620px; margin:0 auto; text-align:center; }
.error-404-icon{ margin:0 auto 20px; width:72px; height:72px; }
.error-404-icon svg{ width:34px; height:34px; }
.error-code{
  font-family: var(--font-display); font-weight:700; line-height:1;
  font-size: clamp(3.6rem, 2.8rem + 4vw, 6rem);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom:6px;
}
.error-404 h1{ margin-top:.2em; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:900;
  background:#fff; box-shadow: 0 -8px 30px rgba(38,37,38,.14); border-top:1px solid var(--border);
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.cookie-banner.show{ transform:none; }
.cookie-banner-inner{
  max-width: var(--container); margin:0 auto; padding: 20px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
}
.cookie-banner-inner p{ margin:0; font-size:.88rem; color: var(--ink-soft); flex:1 1 340px; }
.cookie-banner-inner a{ color: var(--navy); text-decoration:underline; }
.cookie-banner-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
@media (max-width:640px){ .cookie-banner-actions{ width:100%; } .cookie-banner-actions .btn{ flex:1 1 auto; } }

.cookie-modal{ position:fixed; inset:0; z-index:950; display:flex; align-items:center; justify-content:center; padding:20px; }
.cookie-modal[hidden]{ display:none; }
.cookie-modal-backdrop{ position:absolute; inset:0; background: rgba(38,37,38,.55); }
.cookie-modal-card{
  position:relative; background:#fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  max-width:480px; width:100%; padding: 36px 32px; max-height:86vh; overflow-y:auto;
}
.cookie-modal-card h3{ font-family:var(--font-display); color:var(--navy); margin:0 0 10px; font-size:1.3rem; }
.cookie-modal-card > p{ font-size:.9rem; color:var(--ink-soft); margin:0 0 22px; }
.cookie-modal-close{
  position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%; border:none;
  background: var(--bg-soft); color: var(--navy); display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.cookie-modal-close svg{ width:16px; height:16px; }
.cookie-modal-close:hover{ background: var(--bg-soft-2); }
.cookie-modal-row{ display:flex; align-items:flex-start; justify-content:space-between; gap:18px; padding:16px 0; border-top:1px solid var(--border); }
.cookie-modal-row strong{ font-family:var(--font-display); color:var(--navy); font-size:.95rem; }
.cookie-modal-row p{ margin:4px 0 0; font-size:.84rem; color: var(--ink-soft); }
.cookie-modal-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:24px; }

.cookie-toggle{ position:relative; display:inline-block; width:42px; height:24px; flex-shrink:0; margin-top:2px; }
.cookie-toggle input{ opacity:0; width:0; height:0; }
.cookie-toggle span{ position:absolute; inset:0; background: var(--grey-light); border-radius:100px; transition: background .2s var(--ease); cursor:pointer; }
.cookie-toggle span::before{ content:""; position:absolute; left:3px; top:3px; width:18px; height:18px; background:#fff; border-radius:50%; transition: transform .2s var(--ease); }
.cookie-toggle input:checked + span{ background: var(--orange); }
.cookie-toggle input:checked + span::before{ transform: translateX(18px); }
.cookie-toggle.is-disabled span{ cursor:default; opacity:.7; }
.cookie-toggle.is-disabled input:checked + span{ background: var(--navy); }

/* ---------- Email analyzer embed ---------- */
.analyzer-embed{ background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 36px; min-height: 140px; }
@media (max-width:640px){ .analyzer-embed{ padding: 22px; } }

/* ---------- Utility ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.mb-0{ margin-bottom:0; }
.small{ font-size:.85rem; }
.muted{ color: var(--ink-soft); }
.divider{ height:1px; background: var(--border); border:none; margin: 0; }

/* Page hero for legal/simple pages */
.page-hero{ background: linear-gradient(155deg, var(--navy) 0%, var(--navy-800) 100%); color:#fff; padding: 64px 0 56px; }
.page-hero h1{ color:#fff; margin-bottom:.3em; }
.page-hero p{ color: rgba(255,255,255,.78); max-width:640px; }
.legal-content h2{ margin-top:1.6em; }
.legal-content p, .legal-content li{ color: var(--ink-soft); }
.legal-content ul{ list-style: disc; padding-left: 1.4em; margin-bottom:1em; }
.legal-content li{ margin-bottom:.4em; }
.legal-content table{ width:100%; border-collapse:collapse; margin: 1em 0 1.4em; font-size:.9rem; }
.legal-content th, .legal-content td{ text-align:left; padding:12px 14px; border:1px solid var(--border); vertical-align:top; }
.legal-content th{ background:var(--bg-soft); color:var(--navy); font-family:var(--font-display); font-weight:600; }
@media (max-width:640px){ .legal-content table{ display:block; overflow-x:auto; white-space:nowrap; } }

/* ---------- Blog article body (generated from /posts markdown) ---------- */
.article-body{ padding-top: 44px; }
.article-body h2{ font-size: 1.5rem; margin-top: 1.6em; }
.article-body h3{ font-size: 1.2rem; margin-top: 1.4em; }
.article-body p{ font-size: 1.04rem; line-height: 1.75; color: var(--ink); }
.article-body ul{ list-style: disc; padding-left: 1.4em; margin-bottom: 1.2em; }
.article-body li{ font-size: 1.04rem; line-height: 1.7; color: var(--ink); margin-bottom: .5em; }
.article-body strong{ color: var(--navy); }
.article-byline{
  display:flex; align-items:center; gap:16px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border);
}
.article-byline img{ width:52px; height:52px; border-radius:50%; object-fit:cover; object-position: top center; flex-shrink:0; }
.article-byline .name{ font-family: var(--font-display); font-weight:600; color: var(--navy); margin:0; font-size:.95rem; }
.article-byline .role{ margin:2px 0 0; font-size:.85rem; color: var(--ink-soft); }

/* ---------- Blog filtering (category / tag pills) ---------- */
.insight-card.is-hidden{ display:none; }
