/* =================================================================
   Sparky4You - theme styles
   Design tokens from design_handoff_sparky4u/README.md
   Brand yellow locked to #FFD018 (NOT the prototype's #FFC81A).
   Mobile-first; <760px switches the nav to Call + hamburger.
   ================================================================= */

:root {
  /* Brand */
  --s4u-yellow: #FFD018;
  --s4u-yellow-hover: #FFDD52;
  --s4u-yellow-tint: rgba(255, 208, 24, 0.12);
  --s4u-yellow-tint-soft: rgba(255, 208, 24, 0.07);
  --s4u-yellow-border: rgba(255, 208, 24, 0.35);
  --s4u-yellow-border-hover: rgba(255, 208, 24, 0.55);

  /* Surfaces */
  --s4u-footer: #100F0A;
  --s4u-bg: #16150F;
  --s4u-bg-alt: #1A1812;
  --s4u-card: #1E1C14;
  --s4u-card-hover: #221F16;
  --s4u-input: #211E16;

  /* Text */
  --s4u-text: #F3F0E6;
  --s4u-text-strong: #E8E4D8;
  --s4u-muted: #ABA593;
  --s4u-body: #C3BEB0;
  --s4u-body-light: #D8D3C5;
  --s4u-faint: #8C887A;
  --s4u-footnote: #928E7F; /* was #6F6B5C — too low contrast on dark surfaces (~3.4:1), now clears WCAG AA (4.5:1) */

  /* Borders */
  --s4u-hairline: rgba(240, 235, 210, 0.10);
  --s4u-hairline-soft: rgba(240, 235, 210, 0.08);
  --s4u-border: rgba(240, 235, 210, 0.16);
  --s4u-border-strong: rgba(240, 235, 210, 0.25);

  /* Type */
  --s4u-font-head: 'Space Grotesk', system-ui, sans-serif;
  --s4u-font-body: 'Figtree', system-ui, sans-serif;
  --s4u-font-mono: 'Space Mono', ui-monospace, monospace;

  /* Layout */
  --s4u-maxw: 1180px;
  --s4u-gutter: clamp(20px, 5vw, 40px);
  --s4u-section-y: clamp(56px, 9vw, 104px);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

body.s4u {
  margin: 0;
  background: var(--s4u-bg);
  color: var(--s4u-text);
  font-family: var(--s4u-font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.s4u img { max-width: 100%; }
.s4u a { color: inherit; }

/* Skip link for accessibility */
.s4u-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--s4u-yellow);
  color: #16150F;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  text-decoration: none;
}
.s4u-skip:focus { left: 0; }

/* Visible focus ring everywhere (a11y) */
.s4u a:focus-visible,
.s4u button:focus-visible,
.s4u input:focus-visible,
.s4u textarea:focus-visible {
  outline: 2px solid var(--s4u-yellow);
  outline-offset: 2px;
}

/* ---------- Layout helpers ---------- */
.s4u-container {
  max-width: var(--s4u-maxw);
  margin: 0 auto;
  padding-left: var(--s4u-gutter);
  padding-right: var(--s4u-gutter);
}
.s4u-section { padding-top: var(--s4u-section-y); padding-bottom: var(--s4u-section-y); }
.s4u-section--alt { background: var(--s4u-bg-alt); border-top: 1px solid var(--s4u-hairline-soft); }

.s4u-eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--s4u-yellow);
  font-weight: 600;
  margin: 0 0 14px;
}

/* ---------- Typography ---------- */
.s4u h1, .s4u h2, .s4u h3 {
  font-family: var(--s4u-font-head);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.s4u-h1 {
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.04;
  margin: 0 0 20px;
}
.s4u-h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin: 0 0 16px;
}
.s4u-lead {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--s4u-muted);
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.s4u-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease;
  font-family: inherit;
}
.s4u-btn--primary { background: var(--s4u-yellow); color: #16150F; }
.s4u-btn--primary:hover { background: var(--s4u-yellow-hover); }
.s4u-btn--outline { background: transparent; color: var(--s4u-text); font-weight: 600; border-color: var(--s4u-border-strong); }
.s4u-btn--outline:hover { border-color: rgba(240, 235, 210, 0.5); }
.s4u-btn--dark { background: #16150F; color: var(--s4u-text); }
.s4u-btn--dark:hover { background: #000; }
.s4u-btn__dot { width: 9px; height: 9px; border-radius: 50%; background: #16150F; }
.s4u-btn--dark .s4u-btn__dot { background: var(--s4u-yellow); }
/* Anchor buttons on yellow keep dark text - out-specifies the `.s4u a` reset */
.s4u a.s4u-btn--primary,
.s4u a.s4u-phone-btn,
.s4u a.s4u-call-btn { color: #16150F; }

/* ---------- Pulse dot ---------- */
@keyframes s4u-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 208, 24, 0.45); }
  50%      { box-shadow: 0 0 0 7px rgba(255, 208, 24, 0); }
}
.s4u-pulse { animation: s4u-pulse 2.4s ease-in-out infinite; }

/* =================================================================
   HEADER
   ================================================================= */
.s4u-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 21, 15, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--s4u-hairline);
}
.s4u-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.s4u-logo { display: flex; align-items: center; text-decoration: none; }
.s4u-logo img { height: 32px; width: auto; display: block; }

.s4u-nav { display: flex; align-items: center; gap: 26px; }
.s4u-nav__link {
  color: var(--s4u-body-light);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
}
.s4u-nav__link:hover { color: var(--s4u-text); }

.s4u-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--s4u-yellow);
  color: #16150F;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 18px;
  border-radius: 10px;
  white-space: nowrap;
  min-height: 44px;
  transition: background-color .15s ease;
}
.s4u-phone-btn:hover { background: var(--s4u-yellow-hover); }
.s4u-phone-btn__dot { width: 7px; height: 7px; border-radius: 50%; background: #16150F; }

/* Mobile controls */
.s4u-header__mobile { display: none; align-items: center; gap: 10px; }
.s4u-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--s4u-yellow);
  color: #16150F;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 16px;
  border-radius: 10px;
  white-space: nowrap;
  min-height: 44px;
}
.s4u-call-btn:hover { background: var(--s4u-yellow-hover); }
.s4u-call-btn__dot { width: 7px; height: 7px; border-radius: 50%; background: #16150F; }

.s4u-burger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--s4u-border-strong);
  border-radius: 10px;
  color: var(--s4u-text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.s4u-burger__icon-close { display: none; }
.s4u-burger[aria-expanded="true"] .s4u-burger__icon-open { display: none; }
.s4u-burger[aria-expanded="true"] .s4u-burger__icon-close { display: inline; }

.s4u-mobile-menu {
  display: none;
  border-top: 1px solid var(--s4u-hairline);
  background: var(--s4u-bg);
  flex-direction: column;
  padding: 8px var(--s4u-gutter) 16px;
}
.s4u-mobile-menu.is-open { display: flex; }
.s4u-mobile-menu a {
  color: var(--s4u-text-strong);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(240, 235, 210, 0.07);
}
.s4u-mobile-menu a:last-child { border-bottom: none; }

/* =================================================================
   HERO
   ================================================================= */
.s4u-hero { position: relative; background: radial-gradient(120% 90% at 85% 0%, #211E14 0%, #16150F 55%); }
.s4u-hero__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(38px, 6.4vw, 77px);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.s4u-hero__copy { flex: 1 1 420px; min-width: 300px; }
.s4u-hero__media { flex: 1 1 380px; min-width: 280px; position: relative; }

.s4u-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  padding: 7px 13px;
  border: 1px solid var(--s4u-border);
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--s4u-body-light);
  margin-bottom: 24px;
}
.s4u-pill__dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--s4u-yellow); }

.s4u-hero .s4u-h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
.s4u-hero__accent { color: var(--s4u-yellow); }
.s4u-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: var(--s4u-body);
  margin: 0 0 32px;
  max-width: 520px;
  text-wrap: pretty;
}
.s4u-hero__ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.s4u-hero__ctas .s4u-btn { padding: 16px 26px; font-size: 1.05rem; }
.s4u-hero__ctas .s4u-btn__dot { width: 9px; height: 9px; }

.s4u-ticks { display: flex; flex-wrap: wrap; gap: 18px 24px; font-size: 13.5px; color: var(--s4u-muted); }
.s4u-ticks span { white-space: nowrap; }

.s4u-hero__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--s4u-hairline);
  width: 100%;
  height: clamp(380px, 54vh, 560px);
}
.s4u-hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; display: block; }
.s4u-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 21, 15, 0.62) 0%, rgba(22, 21, 15, 0) 42%);
}
.s4u-hero__badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: var(--s4u-card);
  border: 1px solid rgba(240, 235, 210, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.s4u-hero__badge-num {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 208, 24, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--s4u-font-head);
  font-weight: 700;
  color: var(--s4u-yellow);
  font-size: 18px;
}
.s4u-hero__badge-title { font-weight: 700; font-size: 14px; line-height: 1.25; }
.s4u-hero__badge-sub { font-size: 12.5px; color: var(--s4u-muted); line-height: 1.25; }

/* =================================================================
   TRUST BAR
   ================================================================= */
.s4u-trust { border-top: 1px solid var(--s4u-hairline-soft); border-bottom: 1px solid var(--s4u-hairline-soft); background: var(--s4u-bg-alt); }
.s4u-trust__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 38px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.s4u-trust__rating { display: flex; align-items: center; gap: 10px; }
.s4u-stars { font-family: var(--s4u-font-head); font-weight: 700; font-size: 22px; color: var(--s4u-yellow); letter-spacing: 1px; }
.s4u-trust__rating span:last-child { font-size: 13.5px; color: var(--s4u-body); }
.s4u-trust__claims { display: flex; flex-wrap: wrap; gap: 14px 30px; font-size: 14px; color: var(--s4u-body); font-weight: 500; }
.s4u-trust__claims .s4u-sep { color: #403B2A; }

/* =================================================================
   SERVICES
   ================================================================= */
.s4u-section__head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 52px); }
.s4u-section__head--center { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }

.s4u-grid { display: grid; gap: 14px; }
.s4u-grid--services { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.s4u-grid--split { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.s4u-grid--steps { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.s4u-grid--reviews { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

.s4u-card {
  text-decoration: none;
  color: inherit;
  background: var(--s4u-card);
  border: 1px solid var(--s4u-hairline);
  border-radius: 16px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-height: 158px;
  transition: border-color .15s ease, background-color .15s ease;
}
.s4u-card:hover { border-color: var(--s4u-yellow-border-hover); background: var(--s4u-card-hover); }
.s4u-card__icon { width: 34px; height: 34px; color: var(--s4u-yellow); flex-shrink: 0; }
.s4u-card__title { font-weight: 700; font-size: 1.18rem; line-height: 1.2; letter-spacing: -0.01em; margin-top: 4px; text-align: center; width: 100%; }
.s4u-card__foot {
  font-size: 13.5px;
  color: var(--s4u-muted);
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.s4u-card__cat { color: var(--s4u-yellow); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
.s4u-card__arrow { color: var(--s4u-yellow); }

.s4u-card--cta { background: var(--s4u-yellow-tint-soft); border-color: var(--s4u-yellow-border); }
.s4u-card--cta:hover { background: var(--s4u-yellow-tint); border-color: var(--s4u-yellow-border); }
.s4u-card--cta .s4u-card__foot { color: var(--s4u-body); }

/* =================================================================
   HOMEOWNERS vs LANDLORDS
   ================================================================= */
.s4u-split {
  background: var(--s4u-bg);
  border: 1px solid var(--s4u-hairline);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px);
}
.s4u-split__kicker {
  font-family: var(--s4u-font-head);
  font-weight: 700;
  color: var(--s4u-yellow);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.s4u-split h3 {
  font-family: var(--s4u-font-head);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.s4u-split p { color: var(--s4u-muted); line-height: 1.6; margin: 0 0 22px; font-size: 1.02rem; text-wrap: pretty; }
.s4u-ticklist { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.s4u-ticklist > div { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--s4u-body-light); }
.s4u-ticklist .s4u-tick { color: var(--s4u-yellow); flex: 0 0 auto; }
.s4u-split .s4u-btn { padding: 14px 22px; border-radius: 11px; }

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.s4u-step {
  border: 1px solid var(--s4u-hairline);
  border-radius: 16px;
  padding: 30px 26px;
  background: var(--s4u-bg-alt);
}
.s4u-step__num { font-family: var(--s4u-font-head); font-weight: 700; font-size: 2.6rem; color: var(--s4u-yellow); line-height: 1; margin-bottom: 18px; }
.s4u-step h3 { font-family: var(--s4u-font-head); font-weight: 600; font-size: 1.22rem; margin: 0 0 9px; }
.s4u-step p { color: var(--s4u-muted); line-height: 1.55; margin: 0; font-size: 0.98rem; }

/* On the alt section background, step cards use the page bg for contrast */
.s4u-section--alt .s4u-step { background: var(--s4u-bg); }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.s4u-testi__head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(30px, 5vw, 46px);
}
.s4u-testi__head .s4u-h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.s4u-rating-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; }
.s4u-rating-badge__stars { color: var(--s4u-yellow); letter-spacing: 2px; }
.s4u-rating-badge__num { color: var(--s4u-text-strong); }
.s4u-rating-badge__count { color: var(--s4u-muted); font-weight: 400; }
.s4u-review {
  background: var(--s4u-bg);
  border: 1px solid var(--s4u-hairline);
  border-radius: 16px;
  padding: 28px;
}
.s4u-review__stars { color: var(--s4u-yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.s4u-review__quote { font-size: 1.05rem; line-height: 1.6; color: var(--s4u-text-strong); margin: 0 0 20px; text-wrap: pretty; }
.s4u-review__who { font-weight: 600; font-size: 14.5px; }
.s4u-review__who span { color: var(--s4u-muted); font-weight: 400; }

/* =================================================================
   CTA BANNER
   ================================================================= */
.s4u-cta { background: var(--s4u-yellow); }
.s4u-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.s4u-cta__copy { flex: 1 1 360px; }
.s4u-cta__copy h2 {
  font-family: var(--s4u-font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #16150F;
}
.s4u-cta__copy p { margin: 0; color: #3D3914; font-size: 1.1rem; font-weight: 500; }
.s4u-cta .s4u-btn { font-size: 1.1rem; padding: 18px 30px; }

/* =================================================================
   CONTACT
   ================================================================= */
.s4u-contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 56px); }
.s4u-contact__lead { color: var(--s4u-muted); line-height: 1.6; font-size: 1.05rem; margin: 0 0 30px; max-width: 420px; text-wrap: pretty; }
.s4u-contact__rows { display: flex; flex-direction: column; gap: 18px; }
.s4u-contact__row { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.s4u-contact__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--s4u-yellow-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--s4u-yellow);
  font-weight: 700;
  font-family: var(--s4u-font-head);
  flex: 0 0 auto;
}
.s4u-contact__label { display: block; font-size: 12.5px; color: var(--s4u-muted); }
.s4u-contact__val { display: block; font-weight: 600; font-size: 1.05rem; }

/* Form */
.s4u-form-wrap {
  background: var(--s4u-bg-alt);
  border: 1px solid var(--s4u-hairline);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 38px);
}
.s4u-form { display: flex; flex-direction: column; gap: 16px; }
.s4u-form__row { display: flex; flex-wrap: wrap; gap: 16px; }
.s4u-form__col { flex: 1 1 140px; }
.s4u-field label, .s4u-form__label { display: block; font-size: 13px; color: var(--s4u-body); margin-bottom: 7px; font-weight: 500; }
.s4u-input, .s4u-textarea {
  width: 100%;
  background: var(--s4u-input);
  border: 1px solid var(--s4u-border);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--s4u-text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.s4u-input:focus, .s4u-textarea:focus { border-color: var(--s4u-yellow); }
.s4u-textarea { resize: vertical; min-height: 96px; }
.s4u-form .s4u-btn { padding: 16px; }
.s4u-form__note { margin: 2px 0 0; font-size: 12.5px; color: var(--s4u-footnote); text-align: center; }
.s4u-consent { font-size: 12.5px; color: var(--s4u-muted); line-height: 1.5; }
.s4u-consent a { color: var(--s4u-body-light); }
/* Honeypot - visually hidden, off-screen, not display:none (bots skip those) */
.s4u-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.s4u-form__status { font-size: 14px; border-radius: 10px; padding: 12px 14px; display: none; }
.s4u-form__status.is-visible { display: block; }
.s4u-form__status--ok { background: rgba(127, 209, 138, 0.12); color: #7FD18A; border: 1px solid rgba(127, 209, 138, 0.3); }
.s4u-form__status--err { background: rgba(232, 137, 107, 0.12); color: #E8896B; border: 1px solid rgba(232, 137, 107, 0.3); }

/* =================================================================
   LANDING PAGE FEATURE GRID (SEO service pages, issue #28)
   ================================================================= */
.s4u-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.s4u-feature {
  background: var(--s4u-card);
  border: 1px solid var(--s4u-hairline);
  border-radius: 16px;
  padding: 28px 26px;
}
.s4u-feature__marker { width: 10px; height: 10px; background: var(--s4u-yellow); border-radius: 2px; transform: rotate(45deg); margin-bottom: 18px; }
.s4u-feature h3 { font-family: var(--s4u-font-head); font-weight: 600; font-size: 1.22rem; margin: 0 0 9px; }
.s4u-feature p { color: var(--s4u-muted); line-height: 1.55; margin: 0; font-size: 0.98rem; }

/* Yellow-tint callout strip below the feature grid */
.s4u-strip {
  margin-top: 18px;
  background: var(--s4u-yellow-tint-soft);
  border: 1px solid var(--s4u-yellow-border);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}
.s4u-strip__copy { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 1.08rem; }
.s4u-strip__dot { width: 10px; height: 10px; background: var(--s4u-yellow); border-radius: 50%; flex-shrink: 0; }
.s4u-strip .s4u-btn { padding: 13px 20px; border-radius: 11px; min-height: 0; }

/* =================================================================
   FAQ ACCORDION (SEO service pages, issue #28)
   ================================================================= */
.s4u-faq__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 5vw, 56px); }
.s4u-faq__intro .s4u-lead { max-width: 400px; }
.s4u-faq__list { display: flex; flex-direction: column; gap: 10px; }
.s4u-faq__item {
  background: var(--s4u-bg);
  border: 1px solid var(--s4u-hairline);
  border-radius: 14px;
  overflow: hidden;
}
.s4u-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  min-height: 48px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.s4u-faq__q::-webkit-details-marker { display: none; }
.s4u-faq__icon { color: var(--s4u-yellow); font-family: var(--s4u-font-head); font-size: 18px; flex-shrink: 0; }
.s4u-faq__icon::before { content: '+'; }
.s4u-faq__item[open] .s4u-faq__icon::before { content: '\2212'; }
.s4u-faq__a { margin: 0; padding: 0 20px 18px; color: var(--s4u-muted); line-height: 1.6; font-size: 0.98rem; text-wrap: pretty; }
.s4u-faq__more { align-self: flex-start; margin-top: 6px; }

/* =================================================================
   FAQS PAGE (full FAQ list, /faqs)
   ================================================================= */
.s4u-faqs-full { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.s4u-faqs-full__group-title {
  font-family: var(--s4u-font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.s4u-faqs-full__list { display: flex; flex-direction: column; gap: 10px; }

/* =================================================================
   FOOTER
   ================================================================= */
.s4u-footer { background: var(--s4u-footer); border-top: 1px solid var(--s4u-hairline-soft); }
.s4u-footer__inner { padding-top: clamp(40px, 6vw, 64px); padding-bottom: 28px; }
.s4u-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.s4u-footer__logo { height: 52px; width: auto; display: block; margin-bottom: 18px; }
.s4u-footer__tag { color: var(--s4u-faint); line-height: 1.6; font-size: 14px; margin: 0; max-width: 260px; }
.s4u-footer__title { font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--s4u-yellow); margin-bottom: 14px; }
.s4u-footer__list { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--s4u-muted); }
.s4u-footer__list a { color: var(--s4u-body-light); text-decoration: none; }
.s4u-footer__list a.s4u-footer__email { color: var(--s4u-muted); }
.s4u-footer__bottom {
  border-top: 1px solid var(--s4u-hairline-soft);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--s4u-footnote);
}
.s4u-footer__bottom a { color: var(--s4u-body-light); text-decoration: none; }

/* =================================================================
   COOKIE BANNER
   ================================================================= */
.s4u-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 16px clamp(16px, 3vw, 24px);
  display: none;
}
.s4u-cookie.is-visible { display: block; }
.s4u-cookie__card {
  max-width: var(--s4u-maxw);
  margin: 0 auto;
  background: var(--s4u-card);
  border: 1px solid var(--s4u-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.s4u-cookie__text { margin: 0; flex: 1 1 380px; font-size: 0.95rem; color: var(--s4u-body); line-height: 1.55; text-wrap: pretty; }
.s4u-cookie__text a { color: var(--s4u-yellow); font-weight: 600; }
.s4u-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.s4u-cookie .s4u-btn { padding: 12px 20px; min-height: 44px; font-size: 14.5px; }

/* =================================================================
   LEGAL / CONTENT PAGES
   ================================================================= */
.s4u-prose { max-width: 760px; }
.s4u-prose h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 24px; }
.s4u-prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 40px 0 14px; }
.s4u-prose h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.s4u-prose p, .s4u-prose li { color: var(--s4u-body); line-height: 1.7; }
.s4u-prose a { color: var(--s4u-yellow); }
.s4u-prose ul { padding-left: 20px; }
.s4u-prose .s4u-updated { color: var(--s4u-footnote); font-size: 14px; }

/* =================================================================
   RESPONSIVE - <760px nav switch + stacking
   ================================================================= */
@media (max-width: 759px) {
  .s4u-nav { display: none; }
  .s4u-header__mobile { display: flex; }

  /* When these flex rows stack into a column, the desktop flex-basis (e.g.
     420px/360px) is interpreted as a HEIGHT - reset to content height. */
  .s4u-hero__copy, .s4u-hero__media, .s4u-cta__copy { flex: 1 1 auto; }

  .s4u-hero__inner { flex-direction: column; align-items: stretch; }
  .s4u-hero__badge { left: 12px; bottom: -16px; }

  .s4u-cta__inner { flex-direction: column; align-items: flex-start; }
  .s4u-cta .s4u-btn { width: 100%; }
  .s4u-hero__ctas .s4u-btn { flex: 1 1 100%; }

  .s4u-trust__inner { justify-content: flex-start; }

  .s4u-strip { flex-direction: column; align-items: flex-start; }
  .s4u-strip .s4u-btn { width: 100%; }
}

/* Give the hero badge breathing room so it never clips off-screen */
@media (max-width: 420px) {
  .s4u-hero__media { margin-bottom: 8px; }
  .s4u-hero__badge { position: static; margin-top: 14px; box-shadow: none; }
}
