@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1e73be;
  --primary-dark: #1a5a99;
  --purple: #a82bff;
  --text: #2d3748;
  --muted: #718096;
  --light: #f7fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --success: #38a169;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

/* ── Header ── */
.topbar {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand-link {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--purple) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav { display: flex; gap: 1.75rem; align-items: center; flex-wrap: wrap; }
.main-nav a {
  color: var(--text);
  font-size: .925rem;
  font-weight: 600;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: .55rem 1.25rem;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--white) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ── Hero ── */
.hero {
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #f7fafc 0%, var(--white) 100%);
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.kicker {
  display: inline-block;
  background: rgba(30,115,190,.1);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #1a202c;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .9rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); }

/* ── Sections ── */
.section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-tight { max-width: 800px; }
.section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: .75rem;
}
.section p {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.section p.lead {
  font-size: 1.125rem;
  color: var(--muted);
}
.section ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.section ul li { margin-bottom: .5rem; color: var(--text); }
.section-alt { background: var(--light); }

/* ── Card grids ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(30,115,190,.12);
  border-color: var(--primary);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card h3 {
  font-size: 1.175rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.service-card p {
  color: var(--muted);
  font-size: .95rem;
  flex: 1;
  margin-bottom: 1.1rem;
}
.service-card .learn {
  color: var(--primary);
  font-weight: 700;
  font-size: .925rem;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--primary);
}
.cta-band .btn-primary:hover { background: #f7fafc; color: var(--primary-dark); }

/* ── Contact form ── */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--light);
  border-radius: 14px;
}
.form-row { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.form-row label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.form-row input, .form-row textarea {
  padding: .75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--primary);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.notice {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: .95rem;
  margin-bottom: 1rem;
  display: none;
}
.notice.error { background: #fff5f5; color: #c53030; border-left: 4px solid #c53030; }
.notice.success { background: #f0fff4; color: #2f855a; border-left: 4px solid #2f855a; }

/* ── Footer ── */
.site-footer {
  background: #1a365d;
  color: rgba(255,255,255,.85);
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-inner h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-inner ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-inner ul li a { color: rgba(255,255,255,.75); font-size: .9rem; }
.footer-inner ul li a:hover { color: var(--white); }
.footer-inner p { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .75rem; }
.footer-inner .brand-link { color: var(--white); background: none; -webkit-text-fill-color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .85rem;
  text-align: center;
  color: rgba(255,255,255,.55);
}

/* ── Prose (for terms, etc.) ── */
.prose { max-width: 760px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.prose p { margin-bottom: 1rem; line-height: 1.75; color: var(--text); }

/* ── Responsive ── */
@media (max-width: 780px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    gap: 1rem;
  }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .section { padding: 3rem 1.5rem; }
}


/* ── Pricing Tiers Section ────────────────────────────────────── */
.pricing-section {
  padding: 4rem 1.5rem;
  background: var(--light);
}
.pricing-section .section-head {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.pricing-tiers {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}
.tier-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(30,115,190,.1);
}
.tier-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(30,115,190,.15);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
}
.tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.tier-subtitle {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  min-height: 2.4em;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tier-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -.02em;
  line-height: 1;
}
.tier-price .period {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 500;
}
.tier-price .vat {
  font-size: .75rem;
  color: #a0aec0;
  margin-left: .25rem;
}
.tier-price .custom {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.tier-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.tier-features li {
  display: flex;
  gap: .6rem;
  font-size: .925rem;
  color: var(--text);
  padding: .35rem 0;
  align-items: flex-start;
}
.tier-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: rgba(30,115,190,.12);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231e73be'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.tier-btn {
  display: block;
  width: 100%;
  padding: .85rem 1.25rem;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  transition: all .2s;
  font-family: inherit;
  cursor: pointer;
}
.tier-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}
.tier-btn.secondary {
  background: transparent;
  color: var(--primary);
}
.tier-btn.secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.tier-footnote {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .875rem;
  color: var(--muted);
}
.tier-footnote a { font-weight: 600; }


/* ── Bing-style Hero (v2) ─────────────────────────────── */
.hero-v2 {
  background: linear-gradient(135deg, #e9f0f9 0%, #edebf5 50%, #e6ecf7 100%);
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-v2-text h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-v2-text p {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.6;
}
.btn-get-started {
  display: inline-block;
  background: linear-gradient(180deg, #5199e9 0%, #1e73be 100%);
  color: #fff;
  padding: .95rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(30,115,190,.25);
  transition: all .2s;
  min-width: 160px;
  text-align: center;
}
.btn-get-started:hover {
  background: linear-gradient(180deg, #3e8ad8 0%, #1a5a99 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,115,190,.35);
}

.hero-scene {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 420px;
}
.hero-blob {
  position: absolute;
  background: #2573c7;
  border-radius: 50%;
  opacity: .9;
}
.hero-blob.b1 { width: 42%; height: 42%; top: 14%; left: 8%; }
.hero-blob.b2 { width: 38%; height: 38%; top: 6%; right: 4%; }
.hero-blob.b3 { width: 36%; height: 36%; bottom: 4%; right: 22%; }
.hero-figure {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.12));
}
.hero-figure.f1 { top: 12%; left: 10%; width: 38%; }
.hero-figure.f2 { top: 4%; right: 2%;  width: 32%; }
.hero-figure.f3 { bottom: 4%; right: 22%; width: 32%; }
.hero-decoration {
  position: absolute;
  z-index: 3;
}
.hero-decoration.d1 { top: 42%; left: 38%; width: 26%; }

/* ── Insights section (1st below hero) ── */
.insights {
  padding: 5rem 1.5rem 4rem;
  background: #fff;
}
.insights-head {
  max-width: 900px;
  margin: 0 auto 3rem;
}
.insights-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.insights-head p {
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 780px;
}
.insights-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 3rem;
}
.insight-card {
  padding: 2rem 1.75rem;
  text-align: center;
}
.insight-card .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-card .icon-wrap img { width: 100%; height: 100%; object-fit: contain; }
.insight-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: .75rem;
}
.insight-card p {
  font-size: .975rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .hero-v2-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-v2-text p { margin-left: auto; margin-right: auto; }
  .hero-scene { max-width: 400px; }
  .insights-head { text-align: center; }
  .insights-head p { margin-left: auto; margin-right: auto; }
}


/* ── Insights-hero (service page heroes matching homepage feel) ── */
.insights-hero {
  background: linear-gradient(135deg, #e9f0f9 0%, #edebf5 50%, #e6ecf7 100%);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.insights-hero .hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.insights-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #1a202c;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.insights-hero .lead {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.insights-hero .hero-emoji-row {
  position: absolute;
  top: 38%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 4%;
  pointer-events: none;
  opacity: .6;
  z-index: 0;
}
.insights-hero .hero-emoji-row img { width: 84px; height: 84px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.08)); }
.insights-hero .hero-emoji-row img:nth-child(1) { transform: rotate(-8deg); }
.insights-hero .hero-emoji-row img:nth-child(2) { transform: rotate(8deg); }

.service-benefits {
  padding: 4rem 1.5rem 2rem;
  background: #fff;
}
.service-benefits-head {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.service-benefits-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.service-benefits-head p { font-size: 1.0625rem; color: #4a5568; line-height: 1.6; }
.service-benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 3rem;
}
.service-benefit { padding: 1.5rem 1.75rem; text-align: center; }
.service-benefit .icon-wrap {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.service-benefit .icon-wrap img { width: 100%; height: 100%; object-fit: contain; }
.service-benefit h3 { font-size: 1.1rem; font-weight: 700; color: #1a202c; margin-bottom: .6rem; }
.service-benefit p { font-size: .95rem; color: #4a5568; line-height: 1.55; max-width: 260px; margin: 0 auto; }

@media (max-width: 640px) {
  .insights-hero .hero-emoji-row { display: none; }
}


/* ── Mobile polish (<=780px) ────────────────────────────────────── */
@media (max-width: 780px) {
  html, body { max-width: 100vw; overflow-x: hidden; }

  /* Hero v2 — homepage */
  .hero-v2 { padding: 2.5rem 1rem 3rem; }
  .hero-v2-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }
  .hero-v2-inner > * { min-width: 0; max-width: 100%; }
  .hero-v2-text h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .hero-v2-text p { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .btn-get-started { width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-scene { max-width: 340px; min-height: 320px; }
  .hero-figure.f1 { width: 34%; }
  .hero-figure.f2, .hero-figure.f3 { width: 30%; }

  /* Insights-hero — service pages */
  .insights-hero { padding: 2.5rem 1rem 3rem; }
  .insights-hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); word-break: break-word; overflow-wrap: anywhere; }
  .insights-hero .lead { font-size: 1rem; padding: 0 .5rem; }
  .insights-hero .hero-emoji-row { display: none; }

  /* Insights + service-benefits sections */
  .insights, .service-benefits { padding: 3rem 1rem 2rem; }
  .insights-head h2, .service-benefits-head h2 { font-size: 1.5rem; padding: 0 .5rem; }
  .insights-head p, .service-benefits-head p { font-size: 1rem; padding: 0 .5rem; }
  .insights-grid, .service-benefits-grid {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    gap: .5rem;
  }
  .insight-card, .service-benefit { padding: 1.5rem 1rem; }

  /* Service cards (homepage) */
  .section { padding: 3rem 1rem; }
  .section > div[style*="max-width"] { padding: 0 !important; }
  .card-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.75rem 1.5rem; }

  /* Pricing tiers */
  .pricing-section { padding: 3rem 1rem; }
  .pricing-tiers { grid-template-columns: 1fr; gap: 1.25rem; }
  .tier-card { padding: 1.75rem 1.5rem; }
  .pricing-section .section-head h2 { font-size: 1.5rem; }
  .pricing-section .section-head p { font-size: 1rem; padding: 0 .5rem; }

  /* CTA band */
  .cta-band { padding: 2.5rem 1rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band p { font-size: 1rem; }

  /* Hero (old-style still used on contact/terms) */
  .hero { padding: 2.5rem 1rem 2rem; }
  .hero-inner { max-width: 100%; }
  .hero h1 { font-size: clamp(1.75rem, 6.5vw, 2.25rem); word-break: break-word; overflow-wrap: anywhere; }
  .hero .lead { font-size: 1rem; padding: 0 .5rem; }
  .btn-row { flex-direction: column; align-items: stretch; padding: 0 1rem; }
  .btn-row .btn { width: 100%; }

  /* Contact form */
  .contact-form { padding: 1.5rem; margin: 0 1rem; }

  /* Footer */
  .site-footer { padding: 2rem 1rem 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; text-align: center; }
  .footer-inner ul { align-items: center; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  /* Topbar */
  .topbar-inner { flex-wrap: nowrap; }
  .brand-link { font-size: 1.5rem !important; }

  /* Prose */
  .prose { padding: 1.5rem 1rem 3rem; }

  /* Pricing nav (sticky on pricing page) */
  .pricing-nav { top: 54px; padding: .5rem 1rem; }
  .pricing-nav-inner { justify-content: flex-start; }
  .pricing-nav a { font-size: .8rem; padding: .35rem .65rem; }

  /* Insights nav (pricing.html sticky section nav) */
  .pricing-service { padding: 2.5rem 1rem; }
  .service-head h2 { font-size: 1.5rem; }
  .service-head p { font-size: 1rem; padding: 0 .5rem; }
}

@media (max-width: 420px) {
  .hero-v2-text h1, .insights-hero h1, .hero h1 { font-size: 1.6rem; }
  .hero-scene { max-width: 280px; min-height: 260px; }
}
