@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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; }
}

/* === popula websites overhaul 2026-04-22 === */

/* PPC dropdown in main nav */
.main-nav .nav-dropdown{position:relative;display:inline-block}
.main-nav .nav-dropdown-toggle{
  background:transparent;border:none;cursor:pointer;font:inherit;color:var(--text);
  font-size:.925rem;font-weight:500;padding:0;display:inline-flex;align-items:center;
  gap:.25rem;line-height:1.5;transition:color .2s;
}
.main-nav .nav-dropdown-toggle:hover,
.main-nav .nav-dropdown-toggle.active,
.main-nav .nav-dropdown-toggle[aria-expanded="true"]{color:var(--primary)}
.main-nav .nav-dropdown-menu{
  position:absolute;top:calc(100% + .5rem);left:50%;transform:translateX(-50%);
  background:#fff;border:1px solid var(--border);border-radius:12px;
  box-shadow:0 12px 32px -12px rgba(0,0,0,.15);
  padding:.5rem;min-width:180px;display:none;flex-direction:column;gap:.15rem;z-index:200;
}
.main-nav .nav-dropdown:hover .nav-dropdown-menu,
.main-nav .nav-dropdown:focus-within .nav-dropdown-menu,
.main-nav .nav-dropdown.open .nav-dropdown-menu{display:flex}
.main-nav .nav-dropdown-menu a{
  display:block;padding:.5rem .75rem;border-radius:8px;font-size:.9rem;
  color:var(--text);font-weight:500;white-space:nowrap;
}
.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a.active{background:var(--light);color:var(--primary)}
@media (max-width:780px){
  .main-nav .nav-dropdown{width:auto;display:flex;flex-direction:column;align-items:center}
  .main-nav .nav-dropdown-toggle{
    width:auto;padding:0;justify-content:center;
    font-size:.925rem;font-weight:600;
  }
  .main-nav .nav-dropdown-menu{
    position:static;transform:none;box-shadow:none;border:none;padding:.5rem 0 0;
    min-width:0;background:transparent;align-items:center;gap:.75rem;
  }
  .main-nav .nav-dropdown-menu a{padding:.25rem .75rem;text-align:center;font-size:.925rem;font-weight:600}
  .main-nav .nav-dropdown.open .nav-dropdown-menu{display:flex}
  .main-nav .nav-dropdown:not(.open) .nav-dropdown-menu{display:none}
  /* disable hover-open on touch/narrow */
  .main-nav .nav-dropdown:hover .nav-dropdown-menu{display:none}
  .main-nav .nav-dropdown.open:hover .nav-dropdown-menu{display:flex}
}

/* What you get for your £199 — ginzig-exact card grid (copy, icons, font all match ginzig.com) */
.what-included{padding:80px 24px;background:#fafaf9;font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;line-height:1.6;color:#0a0a0a}
.what-included-inner{max-width:1120px;margin:0 auto}
.what-included h2{font-size:44px;line-height:1.1;margin:0 0 16px;font-weight:900;letter-spacing:-.025em;color:#0a0a0a}
.what-included .sublede{font-size:18px;color:#78716c;max-width:720px;margin:0 0 48px;line-height:1.5}
.what-included .grid{display:grid;gap:22px;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.what-included .card{background:#fff;border:1px solid #f5f5f4;border-radius:18px;padding:28px;transition:all .15s ease}
.what-included .card:hover{transform:translateY(-2px);border-color:#ddd6fe;box-shadow:0 16px 32px -18px rgba(0,0,0,.1)}
.what-included .card .emoji{font-size:32px;display:block;margin-bottom:4px;line-height:1}
.what-included .card h3{margin:10px 0 8px;font-size:19px;color:#0a0a0a;font-weight:800;line-height:1.25}
.what-included .card p{color:#57534e;margin:0;font-size:15px;line-height:1.5}
@media (max-width:640px){
  .what-included{padding:56px 20px}
  .what-included h2{font-size:32px;letter-spacing:-.02em}
  .what-included .sublede{font-size:16px;margin-bottom:32px}
  .what-included .card{padding:22px}
}

/* Dark Get Started CTA band */
.get-started-cta{background:#1a1a1a;padding:72px 32px;text-align:center}
.get-started-cta-inner{max-width:720px;margin:0 auto}
.get-started-cta h2{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:36px;margin:0 0 14px;color:#fff;font-weight:800;line-height:1.15}
.get-started-cta p{font-size:17px;color:#d4d4d8;margin:0 0 32px;line-height:1.5}
.get-started-cta .btn-big{display:inline-block;background:#ff6b00;color:#fff;font-size:20px;font-weight:700;padding:20px 44px;border-radius:12px;text-decoration:none;letter-spacing:.01em;transition:transform .15s ease,box-shadow .15s ease}
.get-started-cta .btn-big:hover{transform:translateY(-2px);box-shadow:0 12px 24px -10px rgba(255,107,0,.55);color:#fff}
.get-started-cta .subtext{margin:16px 0 0;font-size:13px;color:#a1a1aa}
@media (max-width:640px){
  .get-started-cta{padding:56px 20px}
  .get-started-cta h2{font-size:26px}
  .get-started-cta p{font-size:15px;margin-bottom:24px}
  .get-started-cta .btn-big{font-size:17px;padding:16px 32px}
}

/* Wizard form (/websites/get-started/) */
.wizard-page{background:#fafaf9;min-height:calc(100vh - 160px);padding:28px 16px}
.wizard-container{max-width:560px;margin:0 auto}
.wizard-container .kicker{color:#ff6b00;font-size:12px;letter-spacing:.15em;font-weight:700;margin-bottom:8px;display:inline-block}
.wizard-container h1{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:22px;margin:0 0 6px;color:#0a0a0a;font-weight:800;line-height:1.2}
.wizard-intro{font-size:13px;color:#57534e;margin:0 0 20px;line-height:1.5}
.wizard-progress{margin-bottom:18px}
.wizard-progress-labels{display:flex;justify-content:space-between;font-size:11px;color:#78716c;margin-bottom:6px}
.wizard-step-counter{font-weight:700;color:#0a0a0a}
.wizard-progress-track{height:5px;background:#e7e5e4;border-radius:999px;overflow:hidden}
.wizard-progress-fill{height:100%;background:#ff6b00;border-radius:999px;transition:width .25s ease;width:20%}
.wizard-card{background:#fff;border:1px solid #e7e5e4;border-radius:14px;padding:20px}
.wizard-step{display:block}
.wizard-step[hidden]{display:none}
.wizard-emoji{font-size:28px;display:block;margin-bottom:2px;line-height:1}
.wizard-step h2{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:18px;margin:8px 0 4px;color:#0a0a0a;font-weight:800}
.wizard-step-sub{font-size:12px;color:#78716c;margin:0 0 18px}
.wizard-step label{display:block;margin-bottom:14px;font-size:13px}
.wizard-step label > input[type="text"],
.wizard-step label > input[type="email"],
.wizard-step label > input[type="tel"],
.wizard-step label > input:not([type]),
.wizard-step label > textarea{display:block;width:100%;margin-top:4px;padding:11px 12px;border:1px solid #d6d3d1;border-radius:10px;font-size:14px;box-sizing:border-box;font-family:inherit;color:#0a0a0a;background:#fff}
.wizard-step label > textarea{resize:vertical;min-height:90px;line-height:1.45}
.wizard-step label > input:focus,
.wizard-step label > textarea:focus{outline:2px solid #ff6b00;outline-offset:-1px;border-color:#ff6b00}
.wizard-step label[aria-invalid="true"] > input,
.wizard-step label[aria-invalid="true"] > textarea{border-color:#dc2626}
.wizard-step label > span.optional{font-weight:400;color:#78716c;font-size:12px;margin-left:4px}
.wizard-step fieldset{border:none;padding:0;margin:0 0 14px}
.wizard-step fieldset legend{font-size:13px;font-weight:700;color:#0a0a0a;margin-bottom:8px;padding:0}
.wizard-step fieldset label{display:flex;align-items:center;gap:8px;margin-bottom:8px;font-weight:400;font-size:14px;color:#0a0a0a}
.wizard-step fieldset input[type="radio"],
.wizard-step fieldset input[type="checkbox"]{margin:0;accent-color:#ff6b00}
.wizard-step label > strong{display:block;font-weight:700;font-size:13px;color:#0a0a0a;margin-bottom:4px}
.wizard-nav{margin-top:20px;padding-top:18px;border-top:1px solid #f5f5f4;display:flex;flex-direction:column;gap:10px}
.wizard-nav button{font:inherit;border:none;cursor:pointer;border-radius:10px}
.wizard-next,.wizard-submit{background:#ff6b00;color:#fff;font-size:15px;font-weight:700;padding:14px;width:100%}
.wizard-next:hover,.wizard-submit:hover{background:#e55e00}
.wizard-submit:disabled{background:#fdba74;cursor:wait}
.wizard-back{background:transparent;color:#78716c;font-size:13px;padding:6px;width:100%}
.wizard-back:disabled{color:#d6d3d1;cursor:not-allowed}
.wizard-error{color:#dc2626;font-size:13px;margin-top:10px;background:#fef2f2;border:1px solid #fecaca;padding:10px 12px;border-radius:10px}
.wizard-review-row{padding:12px 0;border-bottom:1px dashed #e7e5e4;font-size:14px}
.wizard-review-row:last-child{border-bottom:none}
.wizard-review-row strong{display:block;font-size:12px;color:#78716c;margin-bottom:2px;font-weight:700;text-transform:uppercase;letter-spacing:.05em}
.wizard-review-row .val{color:#0a0a0a;white-space:pre-wrap;display:block}
.wizard-review-row .edit{float:right;font-size:12px;color:#ff6b00;background:transparent;border:none;padding:0;cursor:pointer;font-weight:700}
.wizard-thanks{background:#fff;border:1px solid #e7e5e4;border-radius:14px;padding:28px;text-align:center}
.wizard-thanks h2{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:22px;margin:8px 0;color:#0a0a0a;font-weight:800}
.wizard-thanks p{color:#57534e;line-height:1.55;margin:0 0 18px;font-size:14px}
.wizard-honeypot{position:absolute;left:-9999px;top:-9999px;height:0;width:0;overflow:hidden}

@media (min-width:640px){
  .wizard-page{padding:48px 24px}
  .wizard-container h1{font-size:30px;margin-bottom:10px}
  .wizard-intro{font-size:16px;margin-bottom:32px}
  .wizard-progress{margin-bottom:28px}
  .wizard-card{border-radius:18px;padding:32px}
  .wizard-emoji{font-size:32px;margin-bottom:4px}
  .wizard-step h2{font-size:22px}
  .wizard-step-sub{font-size:14px;margin-bottom:24px}
  .wizard-step label{font-size:14px}
  .wizard-nav{flex-direction:row-reverse;justify-content:space-between;align-items:center}
  .wizard-next,.wizard-submit{width:auto;padding:12px 32px}
  .wizard-back{width:auto;padding:12px 20px;text-align:left}
}
