/* ==========================================================================
   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; }

/* ==========================================================================
   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); }
}

.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);
}

.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); }

/* ==========================================================================
   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); }
