/* ==========================================================================
   WEBBIZORA — DESIGN TOKENS
   Single source of truth for color, type and spacing.
   ========================================================================== */

:root {
  /* Color */
  --wb-primary-dark:   #071411;
  --wb-deep-dark:       #04100D;
  --wb-green:           #00B85A;
  --wb-green-bright:    #14D46C;
  --wb-green-deep:      #12382B;
  --wb-green-soft:      #EAF9F0;
  --wb-off-white:       #F8FAF9;
  --wb-white:           #FFFFFF;
  --wb-text:            #111A17;
  --wb-text-muted:      #66736D;
  --wb-border:          #E2EAE6;

  /* On-dark variants */
  --wb-text-on-dark:        #F8FAF9;
  --wb-text-on-dark-muted:  #9FB0A9;
  --wb-border-on-dark:      rgba(248, 250, 249, 0.12);

  /* Type */
  --wb-font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --wb-font-body:    'Inter', -apple-system, sans-serif;

  --wb-h1: clamp(2.375rem, 1.7rem + 2.7vw, 4.25rem);   /* 38px -> 68px */
  --wb-h2: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);        /* 32px -> 44px */
  --wb-h3: clamp(1.125rem, 1.02rem + 0.4vw, 1.5rem);    /* 18px -> 24px */
  --wb-body: clamp(1rem, 0.97rem + 0.1vw, 1.125rem);    /* 16px -> 18px */

  /* Spacing scale */
  --wb-s-4: 0.25rem;
  --wb-s-8: 0.5rem;
  --wb-s-12: 0.75rem;
  --wb-s-16: 1rem;
  --wb-s-24: 1.5rem;
  --wb-s-32: 2rem;
  --wb-s-48: 3rem;
  --wb-s-64: 4rem;
  --wb-s-80: 5rem;
  --wb-s-96: 6rem;

  /* Layout */
  --wb-max-width: 1240px;
  --wb-radius-sm: 8px;
  --wb-radius-md: 14px;
  --wb-radius-lg: 20px;

  /* Motion */
  --wb-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --wb-fast: 150ms;
  --wb-base: 220ms;

  /* Shadow — used sparingly */
  --wb-shadow-sm: 0 1px 2px rgba(4, 16, 13, 0.06);
  --wb-shadow-md: 0 8px 24px rgba(4, 16, 13, 0.10);
  --wb-shadow-lg: 0 24px 64px rgba(4, 16, 13, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --wb-fast: 0ms;
    --wb-base: 0ms;
  }
}
/* ==========================================================================
   WEBBIZORA — BASE / RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--wb-font-body);
  font-size: var(--wb-body);
  line-height: 1.6;
  color: var(--wb-text);
  background: var(--wb-white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--wb-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--wb-text);
}

h1 { font-size: var(--wb-h1); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: var(--wb-h2); line-height: 1.1; }
h3 { font-size: var(--wb-h3); line-height: 1.3; }

p { color: var(--wb-text-muted); }

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Accessible focus state — never remove without replacing */
:focus-visible {
  outline: 2px solid var(--wb-green);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--wb-green);
  color: var(--wb-deep-dark);
  padding: var(--wb-s-12) var(--wb-s-16);
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 var(--wb-radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* Layout utility */
.wb-container {
  width: 100%;
  max-width: var(--wb-max-width);
  margin-inline: auto;
  padding-inline: var(--wb-s-16);
}

@media (min-width: 400px) {
  .wb-container { padding-inline: var(--wb-s-24); }
}

@media (min-width: 768px) {
  .wb-container { padding-inline: var(--wb-s-32); }
}

.wb-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--wb-s-8);
  font-family: var(--wb-font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wb-green-bright);
}

.wb-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wb-green-bright);
}

/* On light/white backgrounds the bright accent green fails contrast —
   use the deeper green instead. Applied via class, not inline style,
   so every section header stays in sync from one place. */
.wb-eyebrow--on-light { color: var(--wb-green-deep); }
.wb-eyebrow--on-light::before { background: var(--wb-green-deep); }

/* Muted variant — for de-emphasized labels like "What's Not Included" */
.wb-eyebrow--muted { color: var(--wb-text-muted); }
.wb-eyebrow--muted::before { background: var(--wb-text-muted); }

section[data-theme="dark"] {
  background: var(--wb-primary-dark);
  color: var(--wb-text-on-dark);
}
section[data-theme="dark"] h1,
section[data-theme="dark"] h2,
section[data-theme="dark"] h3 { color: var(--wb-white); }
section[data-theme="dark"] p { color: var(--wb-text-on-dark-muted); }

section[data-theme="soft"] { background: var(--wb-green-soft); }
section[data-theme="light"] { background: var(--wb-off-white); }
/* ==========================================================================
   BUTTONS
   ========================================================================== */

.wb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wb-s-8);
  padding: 0.85rem 1.6rem;
  border-radius: var(--wb-radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: transform var(--wb-fast) var(--wb-ease), box-shadow var(--wb-fast) var(--wb-ease), background var(--wb-fast) var(--wb-ease);
}

.wb-btn--primary {
  background: var(--wb-green);
  color: var(--wb-deep-dark);
}
.wb-btn--primary:hover { background: var(--wb-green-bright); transform: translateY(-1px); box-shadow: var(--wb-shadow-md); }

.wb-btn--ghost-dark {
  background: transparent;
  color: var(--wb-white);
  border: 1px solid var(--wb-border-on-dark);
}
.wb-btn--ghost-dark:hover { border-color: var(--wb-green-bright); color: var(--wb-green-bright); }

.wb-btn--ghost-light {
  background: transparent;
  color: var(--wb-text);
  border: 1px solid var(--wb-border);
}
.wb-btn--ghost-light:hover { border-color: var(--wb-green); color: var(--wb-green-deep); }

.wb-btn--sm { padding: 0.6rem 1.1rem; font-size: 0.875rem; }
.wb-btn--block { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.wb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(4, 16, 13, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--wb-border-on-dark);
}

.wb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wb-s-16);
  width: 100%;
}

.wb-logo {
  display: flex;
  align-items: center;
  gap: var(--wb-s-8);
  font-family: var(--wb-font-display);
  font-weight: 800;
  font-size: clamp(1.0625rem, 1rem + 0.6vw, 1.25rem);
  color: var(--wb-white);
  flex-shrink: 0;
  white-space: nowrap;
}
.wb-logo__mark { width: 32px; height: 32px; flex-shrink: 0; }

.wb-nav {
  display: none;
}

@media (min-width: 1024px) {
  .wb-nav {
    display: flex;
    align-items: center;
    gap: var(--wb-s-32);
    margin-inline: auto;
  }
}

.wb-nav__item { position: relative; }

.wb-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wb-text-on-dark);
  padding: var(--wb-s-8) 0;
}
.wb-nav__link:hover { color: var(--wb-green-bright); }
.wb-nav__link svg { width: 14px; height: 14px; transition: transform var(--wb-fast) var(--wb-ease); }
.wb-nav__item:hover .wb-nav__link svg,
.wb-nav__item:focus-within .wb-nav__link svg { transform: rotate(180deg); }

.wb-header__actions {
  display: flex;
  align-items: center;
  gap: var(--wb-s-12);
  flex-shrink: 0;
}

@media (min-width: 400px) {
  .wb-header__actions { gap: var(--wb-s-16); }
}

.wb-header__cta { display: none; }
@media (min-width: 1024px) {
  .wb-header__cta { display: inline-flex; }
}

/* Compact quote CTA stays visible on mobile/tablet next to the hamburger,
   per the requirement that the quote action never be hidden behind a menu. */
.wb-header__cta-compact {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .wb-header__cta-compact { display: none; }
}

.wb-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.wb-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--wb-white);
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .wb-menu-toggle { display: none; }
}

/* Mega menu */
.wb-mega {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(680px, 90vw);
  max-width: calc(100vw - 48px);
  background: var(--wb-white);
  border-radius: var(--wb-radius-md);
  box-shadow: var(--wb-shadow-lg);
  padding: var(--wb-s-24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--wb-base) var(--wb-ease), transform var(--wb-base) var(--wb-ease), visibility var(--wb-base);
}

/* The Locations item sits furthest right in the nav — a menu centered on
   it can run past the viewport edge on laptop widths (1024–1280px).
   Anchor it to the right of its trigger instead of centering. */
.wb-nav__item--right .wb-mega {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(6px);
}
.wb-nav__item:hover .wb-mega,
.wb-nav__item:focus-within .wb-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.wb-nav__item--right:hover .wb-mega,
.wb-nav__item--right:focus-within .wb-mega,
.wb-nav__item--right.is-open-touch .wb-mega {
  transform: translateX(0) translateY(0);
}

.wb-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wb-s-8) var(--wb-s-24);
}

.wb-mega__label {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wb-text-muted);
  margin-bottom: var(--wb-s-8);
}

.wb-mega__link {
  display: block;
  padding: var(--wb-s-8) var(--wb-s-12);
  border-radius: var(--wb-radius-sm);
  color: var(--wb-text);
  font-size: 0.9375rem;
}
.wb-mega__link:hover { background: var(--wb-green-soft); color: var(--wb-green-deep); }

.wb-mega__footer {
  grid-column: 1 / -1;
  margin-top: var(--wb-s-16);
  padding-top: var(--wb-s-16);
  border-top: 1px solid var(--wb-border);
}
.wb-mega__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wb-green-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Mobile nav */
.wb-mobile-nav {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--wb-primary-dark);
  z-index: 90;
  overflow-y: auto;
  padding: var(--wb-s-24);
  transform: translateX(100%);
  transition: transform var(--wb-base) var(--wb-ease);
}
.wb-mobile-nav.is-open { transform: translateX(0); }

.wb-mobile-nav__item { border-bottom: 1px solid var(--wb-border-on-dark); }
.wb-mobile-nav__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--wb-s-16) 0;
  color: var(--wb-white);
  font-size: 1.0625rem;
  font-weight: 600;
}
.wb-mobile-nav__trigger svg { width: 16px; height: 16px; transition: transform var(--wb-fast) var(--wb-ease); }
.wb-mobile-nav__item.is-open .wb-mobile-nav__trigger svg { transform: rotate(180deg); }

.wb-mobile-nav__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--wb-base) var(--wb-ease);
}
.wb-mobile-nav__item.is-open .wb-mobile-nav__panel { max-height: 600px; }

.wb-mobile-nav__panel a {
  display: block;
  padding: var(--wb-s-12) var(--wb-s-8) var(--wb-s-12) var(--wb-s-16);
  color: var(--wb-text-on-dark-muted);
  font-size: 0.9375rem;
  min-height: 44px;
}

.wb-mobile-nav__cta { margin-top: var(--wb-s-24); }
/* ==========================================================================
   HERO
   ========================================================================== */

.wb-hero {
  background: var(--wb-primary-dark);
  color: var(--wb-white);
  padding-top: var(--wb-s-64);
  padding-bottom: 140px; /* room for the discovery panel to overlap */
  position: relative;
  overflow: hidden;
}

.wb-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0, 184, 90, 0.16) 0%, rgba(0, 184, 90, 0) 70%);
  pointer-events: none;
}

.wb-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(248, 250, 249, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 70%, transparent);
  pointer-events: none;
}

.wb-hero__grid {
  display: grid;
  gap: var(--wb-s-48);
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .wb-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--wb-s-64);
  }
}

.wb-hero__eyebrow { margin-bottom: var(--wb-s-24); }

.wb-hero h1 {
  color: var(--wb-white);
  max-width: 15ch;
}
.wb-hero h1 .wb-accent { color: var(--wb-green-bright); }

.wb-hero__lead {
  margin-top: var(--wb-s-24);
  max-width: 46ch;
  font-size: 1.125rem;
  color: var(--wb-text-on-dark-muted);
}

.wb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wb-s-16);
  margin-top: var(--wb-s-32);
}

.wb-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wb-s-24);
  margin-top: var(--wb-s-48);
}
.wb-hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--wb-s-8);
  font-size: 0.875rem;
  color: var(--wb-text-on-dark-muted);
}
.wb-hero__trust-item svg { width: 16px; height: 16px; color: var(--wb-green-bright); flex-shrink: 0; }

/* Hero visual — abstract interface composition, not a robot/brain */
.wb-hero__visual {
  position: relative;
  height: 420px;
  display: none;
}
@media (min-width: 768px) { .wb-hero__visual { display: block; } }

.wb-hero__panel {
  position: absolute;
  background: rgba(248, 250, 249, 0.04);
  border: 1px solid var(--wb-border-on-dark);
  border-radius: var(--wb-radius-md);
  backdrop-filter: blur(6px);
}

.wb-hero__panel--main {
  top: 8%;
  left: 4%;
  width: 84%;
  height: 78%;
  background: var(--wb-deep-dark);
  box-shadow: var(--wb-shadow-lg);
  padding: 0;
  overflow: hidden;
  transform: rotate(-1.2deg);
}

/* Mini browser chrome */
.wb-hero__browser-bar {
  display: flex;
  align-items: center;
  gap: var(--wb-s-8);
  padding: var(--wb-s-12) var(--wb-s-16);
  border-bottom: 1px solid var(--wb-border-on-dark);
}
.wb-hero__browser-dots { display: flex; gap: 6px; }
.wb-hero__browser-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--wb-border-on-dark); }
.wb-hero__browser-url {
  flex: 1;
  height: 20px;
  border-radius: 5px;
  background: rgba(248, 250, 249, 0.05);
  margin-left: var(--wb-s-8);
}

/* A live-looking mini website preview: nav / hero / content blocks */
.wb-hero__preview { padding: var(--wb-s-24) var(--wb-s-20); }
.wb-hero__preview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--wb-s-24);
}
.wb-hero__preview-logo { width: 22px; height: 22px; border-radius: 5px; background: var(--wb-green); }
.wb-hero__preview-links { display: flex; gap: 8px; }
.wb-hero__preview-links span { width: 26px; height: 6px; border-radius: 3px; background: rgba(248, 250, 249, 0.12); }

.wb-hero__preview-headline { height: 12px; width: 70%; border-radius: 4px; background: rgba(248, 250, 249, 0.16); margin-bottom: 10px; }
.wb-hero__preview-headline--sm { width: 45%; background: rgba(248, 250, 249, 0.08); margin-bottom: var(--wb-s-16); }
.wb-hero__preview-cta { width: 84px; height: 26px; border-radius: 6px; background: var(--wb-green); margin-bottom: var(--wb-s-24); }

.wb-hero__preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.wb-hero__preview-grid span { aspect-ratio: 1; border-radius: 6px; background: rgba(248, 250, 249, 0.06); border: 1px solid var(--wb-border-on-dark); }
.wb-hero__preview-grid span:nth-child(2) { background: var(--wb-green-deep); border-color: transparent; }

/* Single floating metric card — restraint: one accent element, not three */
.wb-hero__panel--float-1 {
  bottom: 4%;
  right: -4%;
  width: 54%;
  height: 30%;
  background: var(--wb-white);
  border: none;
  box-shadow: var(--wb-shadow-lg);
  padding: var(--wb-s-16) var(--wb-s-20);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: wb-float 7s var(--wb-ease) infinite;
}
.wb-hero__panel--float-1__top { display: flex; align-items: center; gap: var(--wb-s-8); margin-bottom: var(--wb-s-8); }
.wb-hero__panel--float-1__top svg { width: 16px; height: 16px; color: var(--wb-green); }

@keyframes wb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .wb-hero__panel--float-1 { animation: none; }
}

.wb-hero__metric-label { font-size: 0.6875rem; color: var(--wb-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.wb-hero__metric-value { font-family: var(--wb-font-display); font-size: 1.75rem; font-weight: 800; color: var(--wb-text); margin-top: 2px; }

/* ==========================================================================
   SMART DISCOVERY — signature component
   ========================================================================== */

.wb-discovery {
  position: relative;
  margin-top: -100px;
  z-index: 10;
}

.wb-discovery__panel {
  background: var(--wb-white);
  border-radius: var(--wb-radius-lg);
  box-shadow: var(--wb-shadow-lg);
  padding: var(--wb-s-24);
  position: relative;
  overflow: hidden;
}

.wb-discovery__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wb-green-deep) 0%, var(--wb-green) 50%, var(--wb-green-bright) 100%);
}

@media (min-width: 768px) {
  .wb-discovery__panel { padding: var(--wb-s-32); }
}

.wb-discovery__tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--wb-off-white);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: var(--wb-s-24);
  overflow-x: auto;
  max-width: 100%;
}

.wb-discovery__tab {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wb-text-muted);
  white-space: nowrap;
  transition: background var(--wb-fast) var(--wb-ease), color var(--wb-fast) var(--wb-ease);
}
.wb-discovery__tab[aria-selected="true"] {
  background: var(--wb-primary-dark);
  color: var(--wb-white);
}

.wb-discovery__form {
  display: flex;
  flex-direction: column;
  gap: var(--wb-s-16);
}
@media (min-width: 640px) {
  .wb-discovery__form { flex-direction: row; }
}

.wb-discovery__input-wrap {
  flex: 1;
  position: relative;
}
.wb-discovery__input-wrap svg {
  position: absolute;
  left: var(--wb-s-16);
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--wb-text-muted);
}
.wb-discovery__input {
  width: 100%;
  padding: 0.95rem var(--wb-s-16) 0.95rem 2.75rem;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  font-size: 1rem;
  background: var(--wb-off-white);
}
.wb-discovery__input:focus {
  outline: none;
  border-color: var(--wb-green);
  background: var(--wb-white);
}

.wb-discovery__results {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 8px);
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  box-shadow: var(--wb-shadow-md);
  max-height: 280px;
  overflow-y: auto;
  z-index: 20;
  display: none;
}
.wb-discovery__results.is-open { display: block; }
.wb-discovery__result {
  display: block;
  padding: var(--wb-s-12) var(--wb-s-16);
  font-size: 0.9375rem;
}
.wb-discovery__result:hover,
.wb-discovery__result.is-active { background: var(--wb-green-soft); }
.wb-discovery__result-empty {
  padding: var(--wb-s-16);
  font-size: 0.875rem;
  color: var(--wb-text-muted);
}

.wb-discovery__examples {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wb-s-8);
  margin-top: var(--wb-s-24);
}
.wb-discovery__example {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--wb-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--wb-text-muted);
}
.wb-discovery__example:hover { border-color: var(--wb-green); color: var(--wb-green-deep); }

.wb-discovery__examples-label {
  font-size: 0.75rem;
  color: var(--wb-text-muted);
  width: 100%;
  margin-bottom: 2px;
}
/* ==========================================================================
   SECTION SPACING RHYTHM
   ========================================================================== */

.wb-section { padding-block: var(--wb-s-80); }
.wb-section--tight { padding-block: var(--wb-s-48); }
@media (max-width: 640px) {
  .wb-section { padding-block: var(--wb-s-64); }
}

.wb-section__head { max-width: 640px; margin-bottom: var(--wb-s-48); }
.wb-section__head h2 { margin-top: var(--wb-s-16); }
.wb-section__head p { margin-top: var(--wb-s-16); font-size: 1.0625rem; }
.wb-section__head--center { margin-inline: auto; text-align: center; }

/* Sub-heading used inline within prose/two-col blocks on interior pages
   (service/industry/about detail sections) — replaces repeated inline
   styles so spacing and size stay identical everywhere it's used. */
.wb-subheading {
  margin-top: var(--wb-s-16);
  font-size: var(--wb-h3);
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.wb-trust-strip {
  border-top: 1px solid var(--wb-border);
  border-bottom: 1px solid var(--wb-border);
}

.wb-trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wb-s-24);
}
@media (min-width: 480px) {
  .wb-trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .wb-trust-strip__item:last-child { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
  .wb-trust-strip__grid { grid-template-columns: repeat(5, 1fr); }
  .wb-trust-strip__item:last-child { grid-column: auto; }
}

.wb-trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: var(--wb-s-12);
  padding-inline-start: var(--wb-s-16);
  border-left: 1px solid transparent;
}
@media (min-width: 768px) {
  .wb-trust-strip__item:not(:first-child) { border-left: 1px solid var(--wb-border); }
}
.wb-trust-strip__item svg { width: 22px; height: 22px; color: var(--wb-green); }
.wb-trust-strip__item span { font-size: 0.9375rem; font-weight: 600; color: var(--wb-text); }

/* ==========================================================================
   CARD GRIDS (industry / service / portfolio share a base)
   ========================================================================== */

.wb-grid { display: grid; gap: var(--wb-s-24); }
.wb-grid--3 { grid-template-columns: repeat(1, 1fr); }
.wb-grid--4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .wb-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .wb-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wb-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .wb-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* At the 2-column tablet width, an odd total item count leaves the last
   card alone on its own row (e.g. 7 or 9 items). :last-child:nth-child(odd)
   matches exactly that case — the last item sitting at an odd position —
   regardless of how many items a given page has, so this stays correct
   even as content changes. Centers it instead of stretching it full width. */
@media (min-width: 640px) and (max-width: 1023px) {
  .wb-grid--3 > *:last-child:nth-child(odd),
  .wb-grid--4 > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--wb-s-24) / 2);
    margin-inline: auto;
  }
}

.wb-card {
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-md);
  padding: var(--wb-s-24);
  transition: border-color var(--wb-fast) var(--wb-ease), transform var(--wb-fast) var(--wb-ease), box-shadow var(--wb-fast) var(--wb-ease);
}
.wb-card:hover {
  border-color: var(--wb-green);
  transform: translateY(-2px);
  box-shadow: var(--wb-shadow-md);
}

/* Static variant — for card-shaped content that isn't a link (e.g. a
   simple "included" feature tile). No lift/glow, since that affordance
   implies the whole card is clickable. */
.wb-card--static { cursor: default; }
.wb-card--static:hover {
  border-color: var(--wb-border);
  transform: none;
  box-shadow: none;
}

.wb-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--wb-radius-sm);
  background: var(--wb-green-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--wb-s-16);
}
.wb-card__icon svg { width: 22px; height: 22px; color: var(--wb-green-deep); }

.wb-card h3 { margin-bottom: var(--wb-s-8); }
.wb-card p { font-size: 0.9375rem; }
.wb-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--wb-s-16);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wb-green-deep);
}
.wb-card__link svg { width: 14px; height: 14px; transition: transform var(--wb-fast) var(--wb-ease); }
.wb-card:hover .wb-card__link svg { transform: translateX(3px); }

.wb-section__footer { text-align: center; margin-top: var(--wb-s-48); }

/* ==========================================================================
   SERVICES — editorial list layout (deliberately distinct from the
   industry icon-grid so the two sections don't read as the same template)
   ========================================================================== */

.wb-service-list {
  border-top: 1px solid var(--wb-border);
}

.wb-service-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--wb-s-8) var(--wb-s-24);
  padding-block: var(--wb-s-32);
  border-bottom: 1px solid var(--wb-border);
  align-items: start;
  transition: background var(--wb-fast) var(--wb-ease);
}
/* Force title/description/link into column 2 below tablet so the
   4-item grid never auto-wraps the description into the 3rem index
   column (which caused severely squeezed text on mobile). */
.wb-service-row__title,
.wb-service-row__desc,
.wb-service-row__link {
  grid-column: 2;
}
@media (min-width: 768px) {
  .wb-service-row { grid-template-columns: 4.5rem 2fr 1.6fr auto; align-items: center; }
  .wb-service-row__title,
  .wb-service-row__desc,
  .wb-service-row__link {
    grid-column: auto;
  }
}

.wb-service-row:hover { background: var(--wb-off-white); }

.wb-service-row__index {
  font-family: var(--wb-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wb-border);
  transition: color var(--wb-fast) var(--wb-ease);
}
.wb-service-row:hover .wb-service-row__index { color: var(--wb-green); }

.wb-service-row__title {
  display: flex;
  align-items: center;
  gap: var(--wb-s-12);
}
.wb-service-row__title svg {
  width: 20px; height: 20px;
  color: var(--wb-green-deep);
  flex-shrink: 0;
}
.wb-service-row__title h3 { font-size: 1.125rem; }

.wb-service-row__desc { font-size: 0.9375rem; margin-top: var(--wb-s-8); }
@media (min-width: 768px) {
  .wb-service-row__desc { margin-top: 0; }
}

.wb-service-row__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--wb-s-16);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wb-green-deep);
  white-space: nowrap;
}
.wb-service-row__link svg { width: 14px; height: 14px; transition: transform var(--wb-fast) var(--wb-ease); }
.wb-service-row:hover .wb-service-row__link svg { transform: translateX(3px); }
@media (min-width: 768px) {
  .wb-service-row__link { margin-top: 0; }
}

/* ==========================================================================
   SMALL BUSINESS DISCOVERY — pill cloud
   ========================================================================== */

.wb-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wb-s-12);
}
.wb-pill {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  font-size: 0.9375rem;
  color: var(--wb-text);
}
.wb-pill:hover { border-color: var(--wb-green); background: var(--wb-green-soft); color: var(--wb-green-deep); }

/* Static badge — same shape as the clickable pill, but for informational
   labels that aren't links. No hover feedback, since a hover state on a
   non-interactive element falsely signals it can be clicked. */
.wb-pill--static {
  background: var(--wb-off-white);
  color: var(--wb-text-muted);
  cursor: default;
}
.wb-pill--static:hover { border-color: var(--wb-border); background: var(--wb-off-white); color: var(--wb-text-muted); }

/* ==========================================================================
   WHY WEBBIZORA — dark authority section
   ========================================================================== */

.wb-why__grid {
  display: grid;
  gap: var(--wb-s-48);
}
@media (min-width: 1024px) {
  .wb-why__grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.wb-why__benefits {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--wb-s-16);
  margin-top: var(--wb-s-32);
}
@media (min-width: 480px) {
  .wb-why__benefits { grid-template-columns: repeat(2, 1fr); }
}

.wb-why__benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--wb-s-12);
  padding: var(--wb-s-16);
  border: 1px solid var(--wb-border-on-dark);
  border-radius: var(--wb-radius-sm);
}
.wb-why__benefit svg { width: 18px; height: 18px; color: var(--wb-green-bright); flex-shrink: 0; margin-top: 2px; }
.wb-why__benefit span { font-size: 0.9375rem; font-weight: 500; }

.wb-why__visual {
  border: 1px solid var(--wb-border-on-dark);
  border-radius: var(--wb-radius-lg);
  padding: var(--wb-s-24);
  background: var(--wb-deep-dark);
}
.wb-why__visual-row { display: flex; align-items: center; justify-content: space-between; padding-block: var(--wb-s-12); border-bottom: 1px solid var(--wb-border-on-dark); }
.wb-why__visual-row:last-child { border-bottom: none; }
.wb-why__visual-label { font-size: 0.875rem; color: var(--wb-text-on-dark-muted); }
.wb-why__visual-bar { width: 60%; height: 6px; border-radius: 4px; background: rgba(248,250,249,0.08); overflow: hidden; }
.wb-why__visual-bar span { display: block; height: 100%; background: var(--wb-green-bright); border-radius: 4px; }

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */

.wb-portfolio-card { overflow: hidden; padding: 0; }
.wb-portfolio-card__preview {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--wb-s-24);
}
.wb-portfolio-card__frame {
  width: 100%; height: 100%;
  background: var(--wb-white);
  border-radius: var(--wb-radius-sm);
  border: 1px solid var(--wb-border);
  box-shadow: var(--wb-shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wb-portfolio-card__frame-top { height: 22%; flex-shrink: 0; }
.wb-portfolio-card__frame-body { flex: 1; padding: var(--wb-s-12); display: flex; flex-direction: column; gap: 6px; }
.wb-portfolio-card__frame-body span { display: block; height: 6px; border-radius: 3px; background: var(--wb-border); }
.wb-portfolio-card__frame-body span:first-child { width: 55%; height: 9px; margin-bottom: 2px; }
.wb-portfolio-card__frame-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 4px; flex: 1; }
.wb-portfolio-card__frame-cols span { height: 100%; border-radius: 4px; }

.wb-portfolio-card__tag {
  position: absolute;
  top: var(--wb-s-16);
  left: var(--wb-s-16);
  background: var(--wb-deep-dark);
  color: var(--wb-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.wb-portfolio-card__body { padding: var(--wb-s-20, 1.25rem) var(--wb-s-24); }
.wb-portfolio-card__meta { font-size: 0.8125rem; color: var(--wb-text-muted); margin-top: 4px; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */

.wb-process__list {
  display: grid;
  gap: var(--wb-s-24);
}
@media (min-width: 1024px) {
  .wb-process__list {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--wb-s-16);
    position: relative;
  }
  .wb-process__list::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0; right: 0;
    height: 1px;
    background: var(--wb-border);
  }
}

.wb-process__step { position: relative; }
.wb-process__number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wb-white);
  border: 2px solid var(--wb-green);
  color: var(--wb-green-deep);
  font-family: var(--wb-font-display);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--wb-s-16);
  position: relative;
  z-index: 1;
}
.wb-process__step h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.wb-process__step p { font-size: 0.875rem; }

/* ==========================================================================
   PRICING
   ========================================================================== */

.wb-pricing-grid {
  display: grid;
  gap: var(--wb-s-24);
}
@media (min-width: 640px) {
  .wb-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wb-pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.wb-pricing-card {
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-md);
  padding: var(--wb-s-24);
  display: flex;
  flex-direction: column;
  position: relative;
}
.wb-pricing-card--featured {
  border-color: var(--wb-green);
  box-shadow: var(--wb-shadow-lg);
  transform: translateY(-8px);
}
.wb-pricing-card__badge {
  position: absolute;
  top: -13px; left: var(--wb-s-24);
  background: var(--wb-green);
  color: var(--wb-deep-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.wb-pricing-card__name { font-size: 1rem; font-weight: 600; color: var(--wb-text-muted); }
.wb-pricing-card__price {
  font-family: var(--wb-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wb-text);
  margin-top: var(--wb-s-8);
}
.wb-pricing-card__price span { font-size: 0.9375rem; font-weight: 500; color: var(--wb-text-muted); }
.wb-pricing-card__summary { font-size: 0.875rem; margin-top: var(--wb-s-8); min-height: 40px; }
.wb-pricing-card__features { margin-top: var(--wb-s-24); display: flex; flex-direction: column; gap: var(--wb-s-12); flex-grow: 1; }
.wb-pricing-card__features li { display: flex; align-items: flex-start; gap: var(--wb-s-8); font-size: 0.875rem; color: var(--wb-text); }
.wb-pricing-card__features svg { width: 16px; height: 16px; color: var(--wb-green); flex-shrink: 0; margin-top: 2px; }
.wb-pricing-card .wb-btn { margin-top: var(--wb-s-24); }

/* ==========================================================================
   GLOBAL COVERAGE
   ========================================================================== */

.wb-global__grid {
  display: grid;
  gap: var(--wb-s-48);
}
@media (min-width: 1024px) {
  .wb-global__grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.wb-global__countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wb-s-12);
  margin-top: var(--wb-s-24);
}
@media (min-width: 480px) {
  .wb-global__countries { grid-template-columns: repeat(4, 1fr); }
}
.wb-global__country {
  padding: var(--wb-s-12) var(--wb-s-16);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}
.wb-global__country:hover { border-color: var(--wb-green); background: var(--wb-green-soft); }

.wb-global__map {
  max-width: 400px;
  margin-inline: auto;
}
.wb-global__map svg { width: 100%; height: auto; }
.wb-global__pin {
  animation: wb-pulse 2.6s var(--wb-ease) infinite;
  transform-origin: center;
}
.wb-global__pin:nth-child(2) { animation-delay: 0.5s; }
.wb-global__pin:nth-child(3) { animation-delay: 1s; }
.wb-global__pin:nth-child(4) { animation-delay: 1.5s; }
@keyframes wb-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@media (prefers-reduced-motion: reduce) {
  .wb-global__pin { animation: none; }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.wb-faq { max-width: 760px; margin-inline: auto; }
.wb-faq__item { border-bottom: 1px solid var(--wb-border); }
.wb-faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--wb-s-16);
  padding: var(--wb-s-24) 0;
  text-align: left;
  font-family: var(--wb-font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--wb-text);
}
.wb-faq__trigger svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--wb-green); transition: transform var(--wb-fast) var(--wb-ease); }
.wb-faq__item.is-open .wb-faq__trigger svg { transform: rotate(45deg); }
.wb-faq__panel { max-height: 0; overflow: hidden; transition: max-height var(--wb-base) var(--wb-ease); }
.wb-faq__item.is-open .wb-faq__panel { max-height: 300px; }
.wb-faq__panel p { padding-bottom: var(--wb-s-24); font-size: 0.9375rem; max-width: 62ch; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.wb-cta-band {
  background: var(--wb-green);
  border-radius: var(--wb-radius-lg);
  padding: var(--wb-s-48) var(--wb-s-24);
  text-align: center;
}
@media (min-width: 768px) { .wb-cta-band { padding: var(--wb-s-64); } }
.wb-cta-band h2 { color: var(--wb-deep-dark); }
.wb-cta-band p { color: var(--wb-green-deep); margin-top: var(--wb-s-12); }
.wb-cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--wb-s-16); margin-top: var(--wb-s-32); }
.wb-cta-band .wb-btn--primary { background: var(--wb-deep-dark); color: var(--wb-white); }
.wb-cta-band .wb-btn--primary:hover { background: var(--wb-text); }
.wb-cta-band .wb-btn--ghost-dark { border-color: var(--wb-deep-dark); color: var(--wb-deep-dark); }
.wb-cta-band .wb-btn--ghost-dark:hover { color: var(--wb-white); border-color: var(--wb-deep-dark); background: var(--wb-deep-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.wb-footer {
  background: var(--wb-deep-dark);
  color: var(--wb-text-on-dark-muted);
  padding-block: var(--wb-s-64) var(--wb-s-32);
}
.wb-footer__grid {
  display: grid;
  gap: var(--wb-s-32);
  padding-bottom: var(--wb-s-48);
  border-bottom: 1px solid var(--wb-border-on-dark);
}
@media (min-width: 768px) {
  .wb-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.wb-footer__brand p { margin-top: var(--wb-s-16); max-width: 34ch; font-size: 0.9375rem; }
.wb-footer__social { display: flex; gap: var(--wb-s-12); margin-top: var(--wb-s-24); }
.wb-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--wb-border-on-dark);
  display: flex; align-items: center; justify-content: center;
}
.wb-footer__social a svg { width: 16px; height: 16px; }
.wb-footer__social a:hover { border-color: var(--wb-green-bright); color: var(--wb-green-bright); }

.wb-footer__heading { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--wb-text-on-dark); margin-bottom: var(--wb-s-16); }
.wb-footer__links { display: flex; flex-direction: column; gap: var(--wb-s-12); }
.wb-footer__links a { font-size: 0.9375rem; }
.wb-footer__links a:hover { color: var(--wb-green-bright); }

.wb-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--wb-s-16);
  padding-top: var(--wb-s-32);
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .wb-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.wb-footer__legal { display: flex; gap: var(--wb-s-24); }
/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.wb-breadcrumbs { margin-bottom: var(--wb-s-24); }
.wb-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--wb-s-8);
}
.wb-breadcrumbs li { display: flex; align-items: center; gap: var(--wb-s-8); }
.wb-breadcrumbs a {
  font-size: 0.8125rem;
  color: var(--wb-text-on-dark-muted);
}
.wb-breadcrumbs a:hover { color: var(--wb-green-bright); }
.wb-breadcrumbs span[aria-current] {
  font-size: 0.8125rem;
  color: var(--wb-text-on-dark);
  font-weight: 600;
}
.wb-breadcrumbs svg { width: 10px; height: 10px; transform: rotate(-90deg); color: var(--wb-text-on-dark-muted); flex-shrink: 0; }

/* Light-background variant (used inside white sections, not just the dark hero) */
.wb-breadcrumbs--light a { color: var(--wb-text-muted); }
.wb-breadcrumbs--light a:hover { color: var(--wb-green-deep); }
.wb-breadcrumbs--light span[aria-current] { color: var(--wb-text); }
.wb-breadcrumbs--light svg { color: var(--wb-text-muted); }

/* ==========================================================================
   INTERIOR PAGE HERO — compact dark hero for non-homepage pages
   ========================================================================== */

.wb-page-hero {
  padding-block: var(--wb-s-48) var(--wb-s-64);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .wb-page-hero { padding-block: var(--wb-s-64) var(--wb-s-80); }
}

.wb-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(248, 250, 249, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.wb-page-hero::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 184, 90, 0.14) 0%, rgba(0, 184, 90, 0) 70%);
  pointer-events: none;
}

.wb-page-hero .wb-container { position: relative; }

.wb-page-hero h1 {
  color: var(--wb-white);
  max-width: 26ch;
  font-size: clamp(1.875rem, 1.5rem + 2vw, 3rem);
}

.wb-page-hero__lead {
  margin-top: var(--wb-s-16);
  max-width: 60ch;
  font-size: 1.0625rem;
  color: var(--wb-text-on-dark-muted);
}

.wb-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wb-s-16);
  margin-top: var(--wb-s-24);
}

/* ==========================================================================
   PROSE CONTENT (About, service/industry definitions)
   ========================================================================== */

.wb-prose { max-width: 72ch; }
.wb-prose p + p,
.wb-prose ul { margin-top: var(--wb-s-16); }
.wb-prose ul { padding-left: var(--wb-s-24); list-style: disc; }
.wb-prose li { color: var(--wb-text-muted); font-size: 0.9375rem; margin-bottom: var(--wb-s-8); }

.wb-two-col {
  display: grid;
  gap: var(--wb-s-32);
}
@media (min-width: 768px) {
  .wb-two-col { grid-template-columns: 1fr 1fr; gap: var(--wb-s-48); }
}

.wb-check-list { display: flex; flex-direction: column; gap: var(--wb-s-12); }
.wb-check-list li { display: flex; align-items: flex-start; gap: var(--wb-s-12); font-size: 0.9375rem; color: var(--wb-text); }
.wb-check-list svg { width: 18px; height: 18px; color: var(--wb-green); flex-shrink: 0; margin-top: 2px; }
.wb-check-list--muted svg { color: var(--wb-text-muted); }
.wb-check-list--muted li { color: var(--wb-text-muted); }

.wb-numbered-list { display: flex; flex-direction: column; gap: var(--wb-s-16); counter-reset: wb-count; }
.wb-numbered-list li {
  display: flex;
  gap: var(--wb-s-16);
  font-size: 0.9375rem;
  color: var(--wb-text);
  padding-bottom: var(--wb-s-16);
  border-bottom: 1px solid var(--wb-border);
}
.wb-numbered-list li:last-child { border-bottom: none; }
.wb-numbered-list li::before {
  counter-increment: wb-count;
  content: counter(wb-count);
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--wb-green-soft);
  color: var(--wb-green-deep);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   RELATED LINKS ROW
   ========================================================================== */

.wb-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wb-s-12);
}
.wb-related__list a {
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wb-text);
}
.wb-related__list a:hover { border-color: var(--wb-green); background: var(--wb-green-soft); color: var(--wb-green-deep); }

/* ==========================================================================
   REGIONS / CITIES LIST (country + location hub pages)
   ========================================================================== */

.wb-place-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wb-s-12);
}
@media (min-width: 640px) {
  .wb-place-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wb-place-list { grid-template-columns: repeat(3, 1fr); }
}
.wb-place-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--wb-s-16);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
}
.wb-place-list a svg { width: 16px; height: 16px; color: var(--wb-text-muted); transition: transform var(--wb-fast) var(--wb-ease); }
.wb-place-list a:hover { border-color: var(--wb-green); background: var(--wb-off-white); }
.wb-place-list a:hover svg { transform: translateX(3px); color: var(--wb-green-deep); }

/* Same orphan-guard as wb-grid, extended to the 3-column desktop
   breakpoint since this list's item count grows as location data expands. */
@media (min-width: 640px) and (max-width: 1023px) {
  .wb-place-list > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--wb-s-12) / 2);
    margin-inline: auto;
  }
}
@media (min-width: 1024px) {
  /* A single item left alone in the final row (total count ≡ 1 mod 3)
     gets centered into the middle column instead of hugging the left edge. */
  .wb-place-list > *:last-child:nth-child(3n+1) {
    grid-column: 2 / span 1;
  }
}

/* ==========================================================================
   COMPARISON TABLE (Pricing page)
   ========================================================================== */

.wb-compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.wb-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.wb-compare th, .wb-compare td {
  padding: var(--wb-s-16);
  text-align: left;
  border-bottom: 1px solid var(--wb-border);
}
.wb-compare thead th {
  font-family: var(--wb-font-display);
  font-weight: 700;
  color: var(--wb-text);
  background: var(--wb-off-white);
}
.wb-compare tbody th {
  font-weight: 500;
  color: var(--wb-text-muted);
  white-space: nowrap;
}
.wb-compare td { text-align: center; color: var(--wb-text); }
.wb-compare td:first-child, .wb-compare th:first-child { text-align: left; }
.wb-compare svg.wb-yes { width: 18px; height: 18px; color: var(--wb-green); }
.wb-compare .wb-no { color: var(--wb-border); }
.wb-compare thead th.is-featured { color: var(--wb-green-deep); }

/* ==========================================================================
   TOGGLE (Pricing page — local businesses / agencies)
   ========================================================================== */

.wb-toggle {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  background: var(--wb-off-white);
  border-radius: var(--wb-radius-sm);
  padding: 4px;
  gap: 4px;
}
.wb-toggle button {
  width: 100%;
  white-space: nowrap;
}
@media (min-width: 460px) {
  .wb-toggle {
    display: inline-flex;
    flex-direction: row;
    width: auto;
    max-width: none;
    border-radius: 999px;
  }
  .wb-toggle button { width: auto; }
}
.wb-toggle button {
  padding: 0.6rem 1.2rem;
  border-radius: var(--wb-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wb-text-muted);
}
@media (min-width: 460px) {
  .wb-toggle button { border-radius: 999px; }
}
.wb-toggle button[aria-pressed="true"] {
  background: var(--wb-primary-dark);
  color: var(--wb-white);
}

/* ==========================================================================
   FORM (Contact page)
   ========================================================================== */

.wb-form { display: grid; gap: var(--wb-s-20, 1.25rem); }
.wb-form__row { display: grid; gap: var(--wb-s-20, 1.25rem); grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .wb-form__row--2 { grid-template-columns: 1fr 1fr; }
}
.wb-field { display: flex; flex-direction: column; gap: var(--wb-s-8); }
.wb-field label { font-size: 0.875rem; font-weight: 600; color: var(--wb-text); }
.wb-field input,
.wb-field select,
.wb-field textarea {
  width: 100%;
  padding: 0.85rem var(--wb-s-16);
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  font-size: 0.9375rem;
  background: var(--wb-white);
  min-height: 48px;
}
.wb-field textarea { min-height: 140px; resize: vertical; }
.wb-field input:focus, .wb-field select:focus, .wb-field textarea:focus {
  outline: none;
  border-color: var(--wb-green);
  box-shadow: 0 0 0 3px rgba(0, 184, 90, 0.15);
}
.wb-field--optional label span { color: var(--wb-text-muted); font-weight: 400; }

/* Honeypot — visually and semantically hidden, never shown to real users */
.wb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wb-form__note { font-size: 0.8125rem; color: var(--wb-text-muted); }
.wb-form__status {
  display: none;
  padding: var(--wb-s-16);
  border-radius: var(--wb-radius-sm);
  font-size: 0.9375rem;
}
.wb-form__status.is-success { display: block; background: var(--wb-green-soft); color: var(--wb-green-deep); }
.wb-form__status.is-error { display: block; background: #FDEDEC; color: #8A2A22; }

/* ==========================================================================
   404
   ========================================================================== */

.wb-404 {
  padding-block: var(--wb-s-96) var(--wb-s-64);
  text-align: center;
}
.wb-404__code {
  font-family: var(--wb-font-display);
  font-size: clamp(3rem, 2.5rem + 3vw, 6rem);
  font-weight: 800;
  color: var(--wb-green);
  line-height: 1;
}
.wb-404 h1 { margin-top: var(--wb-s-16); }
.wb-404 p { margin-top: var(--wb-s-16); max-width: 52ch; margin-inline: auto; }
.wb-404__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wb-s-12);
  margin-top: var(--wb-s-32);
}
