/* =============================================================
   Hiven — shared stylesheet
   Built on Pico CSS (see the <link> in <head> of every page, loaded
   before this file so these rules — and Pico's own CSS variables,
   overridden below — win the cascade). No build step, no JS framework.
   ============================================================= */

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

:root {
  --navy: #101827;
  --navy-soft: #1c2740;
  --ink: #1a1f2b;
  --paper: #ffffff;
  --paper-tint: #f6f7fb;
  --line: #e4e7ef;
  --muted: #5a6072;
  --coral: #ff5a4e;
  --coral-dark: #e2432f;
  --teal: #17b899;
  --gold: #f6b93b;
  --lavender: #9c8cf5;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px -14px rgba(16, 24, 39, 0.25);
  --shadow-sm: 0 4px 14px -8px rgba(16, 24, 39, 0.3);
  --shadow-hard: 4px 4px 0 var(--navy);
  --shadow-hard-sm: 3px 3px 0 var(--navy);
  --maxw: 1120px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Space Grotesk", var(--font);
}

/* ---- Pico CSS tokens, remapped to the brand above ----
   Pico still does the work (form controls, focus states,
   <details>/<summary>, <mark>, <table>, <code>, spacing scale) —
   these overrides just make its output match our palette.

   Selector note: every page sets <html data-theme="light">, and Pico
   itself defines its light-theme tokens on the compound selector
   `:root:not([data-theme=dark]), [data-theme=light]` (specificity
   0,2,0). A plain `:root { --pico-* }` here (specificity 0,1,0) would
   lose to that regardless of source order, so this block matches it
   with `:root[data-theme="light"]` to win on cascade order instead. */
:root[data-theme="light"] {
  --pico-font-family: var(--font);
  --pico-font-size: 100%;
  --pico-line-height: 1.55;
  --pico-border-radius: var(--radius-sm);
  --pico-color: var(--ink);
  --pico-background-color: var(--paper);
  --pico-primary: var(--coral-dark);
  --pico-primary-background: var(--coral);
  --pico-primary-border: var(--coral);
  --pico-primary-underline: var(--coral-dark);
  --pico-primary-hover: var(--coral-dark);
  --pico-primary-hover-background: var(--coral-dark);
  --pico-primary-hover-border: var(--coral-dark);
  --pico-primary-focus: rgba(255, 90, 78, 0.3);
  --pico-primary-inverse: #fff;
  --pico-mark-background-color: var(--coral);
  --pico-mark-color: var(--navy);
  --pico-ins-color: var(--teal);
  --pico-del-color: var(--coral-dark);
  --pico-form-element-spacing-vertical: 0.85rem;
  --pico-form-element-spacing-horizontal: 1rem;
  --pico-form-element-border-color: var(--line);
  --pico-form-element-focus-color: var(--coral);
  --pico-switch-checked-background-color: var(--coral);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Pico pads the top/bottom of <header>, <main> and <footer> by
   default, via `body>footer,body>header,body>main{padding-block:
   var(--pico-block-spacing-vertical)}` — a compound selector with
   higher specificity (0,0,2) than a plain `main{}`/`header{}` override,
   so it has to be matched here, not just out-specified by our own
   .site-header/.site-footer class rules. This padding showed up as a
   stray gap between the sticky header and the hero, and extra height
   inside the header itself — every section/component here already
   carries its own padding, so none of it is wanted. */
body > header,
body > main,
body > footer {
  padding: 0;
}

/* Pico sets `color: var(--pico-color)` directly on
   address/blockquote/dl/ol/p/pre/table/ul — a direct rule on the
   element itself, so it wins over any color inherited from a
   dark-background wrapper (.pricing-card, .bespoke, .cta-band,
   .hero-panel, .site-footer, etc.), even though our rules on those
   wrappers are more specific. Restoring plain inheritance here at
   the same specificity — but later in the cascade — undoes that,
   the same way `svg { color: inherit }` etc. undoes it in short. */
address, blockquote, dl, ol, p, pre, table, ul {
  color: inherit;
}

/* Same story for markers: Pico puts `list-style:square` directly on
   `ul li`, which (being a direct rule on the <li> itself) beats
   `list-style:none` set on the parent <ul> by any of our classes.
   This site never uses native bullets — every list either has its
   own icon/chip or is a nav — so reset markers globally to match. */
ul li, ol li {
  list-style: none;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
  /* Pico also puts a default margin-bottom on every <section> —
     invisible between two sections sharing a background, but a
     visible stripe of body-white wherever they don't (e.g. the
     gradient hero into the grey trust strip). Spacing here is
     handled entirely by padding, so drop the margin. */
  margin-bottom: 0;
}

section.tight {
  padding: 56px 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; }

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
}

/* Inline highlight for a keyword inside a heading */
.mark {
  display: inline-block;
  background: var(--coral);
  color: var(--navy);
  padding: 2px 12px;
  border-radius: 8px;
  transform: rotate(-1deg);
}

.mark.gold { background: var(--gold); }
.mark.teal { background: var(--teal); color: #fff; }

/* Sticker-style kicker label, not a soft muted pill */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--coral);
  border: 2px solid var(--navy);
  padding: 7px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-hard-sm);
}

.eyebrow.gold { background: var(--gold); }
.eyebrow.teal { background: var(--teal); color: #fff; }
.eyebrow.light { background: #fff; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-hard);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 4px 4px 0 var(--coral);
}

.btn-dark:hover {
  background: var(--navy-soft);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--coral);
}

.btn-ghost:hover,
.btn-ghost-light:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--navy); }

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.btn-ghost-light:hover { border-color: #fff; }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--coral-dark);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: 0.2s;
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 24px 22px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; width: 100%; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  background: radial-gradient(circle at 15% 20%, #fff1ef 0%, transparent 45%),
              radial-gradient(circle at 85% 0%, #eafbf5 0%, transparent 40%),
              var(--paper);
  padding: 96px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 22px;
}

.price-badge .amount { font-size: 1.15rem; color: var(--gold); }

/* ---------- Decorative shapes ---------- */

.hero-decor {
  position: relative;
}

.shape {
  position: absolute;
  border-radius: 26%;
  box-shadow: var(--shadow);
  z-index: 0;
}

.shape-coral { background: var(--coral); }
.shape-gold { background: var(--gold); }
.shape-teal { background: var(--teal); }
.shape-lav { background: var(--lavender); }

.shape-ring {
  background: transparent;
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: none;
}

.shape-dot {
  border-radius: 50%;
  box-shadow: none;
}

.hero-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 34px;
  border: 2px solid var(--navy);
  box-shadow: 6px 6px 0 var(--coral);
  position: relative;
  z-index: 1;
}

.hero-panel h3 { color: #fff; margin-bottom: 6px; }
.hero-panel .lede { color: rgba(255,255,255,0.7); }

.hero-panel ul {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-panel ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.check {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-tint);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

.trust-item .big { font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.trust-item .small { color: var(--muted); font-size: 0.9rem; }

/* ---------- Cards / grids ---------- */

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-hard-sm);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 2px solid var(--navy);
  background: #fff1ef;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  box-shadow: var(--shadow-hard-sm);
}

.feature-card:nth-child(4n+1) .icon { background: var(--coral); }
.feature-card:nth-child(4n+2) .icon { background: var(--gold); }
.feature-card:nth-child(4n+3) .icon { background: var(--teal); }
.feature-card:nth-child(4n+4) .icon { background: var(--lavender); }

.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* ---------- Pop grid — alternating light/dark/coral feature cards ---------- */

.pop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .pop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .pop-grid { grid-template-columns: 1fr; }
}

.pop-card {
  border-radius: 20px;
  padding: 28px;
  border: 2px solid var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 180px;
}

.pop-card.light { background: var(--paper); box-shadow: var(--shadow-hard-sm); }
.pop-card.dark { background: var(--navy); color: #fff; box-shadow: 5px 5px 0 var(--coral); }
.pop-card.coral { background: var(--coral); color: var(--navy); box-shadow: 5px 5px 0 var(--navy); }
.pop-card.teal { background: var(--teal); color: var(--navy); box-shadow: 5px 5px 0 var(--navy); }
.pop-card.gold { background: var(--gold); color: var(--navy); box-shadow: 5px 5px 0 var(--navy); }

.pop-card .icon-row {
  font-size: 1.6rem;
}

.pop-card .chip {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
}

.pop-card.light .chip { background: #ffe4e0; color: #b32d1c; }
.pop-card.dark .chip { background: rgba(255,255,255,0.14); color: #fff; }
.pop-card.coral .chip,
.pop-card.gold .chip { background: rgba(16,24,39,0.12); color: var(--navy); }
.pop-card.teal .chip { background: rgba(16,24,39,0.12); color: var(--navy); }

.pop-card p { margin: 0; font-size: 0.9rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: inherit;
}

.arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex: none;
}

.pop-card.light .arrow-circle { background: #ffe4e0; color: #b32d1c; }
.pop-card.dark .arrow-circle { background: rgba(255,255,255,0.14); color: #fff; }
.pop-card.coral .arrow-circle,
.pop-card.gold .arrow-circle { background: rgba(16,24,39,0.12); color: var(--navy); }
.pop-card.teal .arrow-circle { background: rgba(16,24,39,0.12); color: var(--navy); }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 2px solid var(--navy);
}

.step:nth-child(1) .step-num { background: var(--coral); color: var(--navy); }
.step:nth-child(2) .step-num { background: var(--gold); color: var(--navy); }
.step:nth-child(3) .step-num { background: var(--teal); color: #fff; }

/* ---------- Bespoke callout ---------- */

.bespoke {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 var(--gold);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 860px) {
  .bespoke { grid-template-columns: 1fr; padding: 36px 26px; }
}

.bespoke h2 { color: #fff; }
.bespoke .lede { color: rgba(255,255,255,0.72); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  display: inline-block;
}

.tag:nth-child(odd) { transform: rotate(-1.5deg); }
.tag:nth-child(even) { transform: rotate(1.5deg); }
.tag:nth-child(3n) { background: var(--coral); border-color: var(--coral); color: var(--navy); font-weight: 700; }

/* ---------- Pricing card ---------- */

.pricing-card {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 520px;
  margin: 0 auto;
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 var(--coral);
  text-align: center;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  margin: 6px 0 0;
}

.pricing-card .price sup { font-size: 1.6rem; top: -1.6em; }
.pricing-card .price span.per { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.6); }

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  text-align: left;
  display: grid;
  gap: 12px;
}

.pricing-card ul li {
  display: flex;
  gap: 10px;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.92);
}

.pricing-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 18px;
}

/* ---------- Pricing banner — compact horizontal teaser ----------
   Used where the full pricing-card would just duplicate the detailed
   plan already on pricing.html: price, one line, two buttons, on a
   single row, sized to its content instead of a tall empty card. */

.pricing-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  border: 2px solid var(--navy);
  box-shadow: 6px 6px 0 var(--coral);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pricing-banner .banner-price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}

.pricing-banner .banner-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-banner .banner-price sup { font-size: 1.15rem; }
.pricing-banner .banner-price .per { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.6); }

.pricing-banner .lede {
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 320px;
  flex: 1;
}

.pricing-banner .cta-row {
  flex: none;
  flex-wrap: nowrap;
}

@media (max-width: 760px) {
  .pricing-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px;
  }
  .pricing-banner .lede { max-width: none; }
  .pricing-banner .cta-row { flex-wrap: wrap; width: 100%; }
}

/* ---------- FAQ — native <details>/<summary>, Pico-powered ----------
   Pico already gives these a working accordion (marker rotation,
   smooth reveal, keyboard/focus support) with no JS. This just
   restyles the marker and spacing to match the rest of the page. */

.faq-list details {
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.faq-list summary {
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-list summary:focus {
  color: var(--coral-dark);
}

.faq-list details[open] summary {
  color: var(--coral-dark);
  margin-bottom: 0;
}

.faq-list details p {
  color: var(--muted);
  margin: 0 0 20px;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

/* Field styling is mostly Pico's own (form-element spacing, border
   and border-radius come from the --pico-form-element-* tokens set
   above) — this tightens spacing/label weight and pins the focus
   ring to the brand coral explicitly, since Pico computes its own
   focus box-shadow from a chain of variables we don't fully control. */
.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 0.1rem var(--pico-primary-focus, rgba(255, 90, 78, 0.3));
}

.field input,
.field textarea,
.field select {
  margin-bottom: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}

.form-status.show { display: block; }
.form-status.ok { background: #e9faf3; color: #0e7d5f; border: 1px solid #bdecd7; }
.form-status.err { background: #fef0ef; color: #b3271a; border: 1px solid #fbd2ce; }

/* ---------- Info strip (contact details) ---------- */

.info-list {
  display: grid;
  gap: 18px;
}

.info-list .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-list .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eafbf5;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.info-list h3 { margin-bottom: 2px; font-size: 1rem; }
.info-list p { color: var(--muted); margin: 0; }

/* ---------- Scheduling ---------- */

.schedule-embed {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--paper-tint);
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
}

.schedule-embed code {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.85em;
}

.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 620px) { .slots { grid-template-columns: 1fr 1fr; } }

.slot {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
}

.slot:hover { border-color: var(--coral); color: var(--coral-dark); }
.slot.selected { border-color: var(--coral); background: #fff1ef; color: var(--coral-dark); }

/* ---------- Payment page ---------- */

.paysteps {
  display: grid;
  gap: 14px;
}

.paystep {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-tint);
}

.paystep .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.summary-card {
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-weight: 800; font-size: 1.1rem; }

.badge-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Banner / CTA section ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 var(--teal);
  text-align: center;
}

.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255,255,255,0.72); margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.site-footer a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover { border-color: #fff; }

/* ---------- Misc ---------- */

.divider { height: 1px; background: var(--line); margin: 0; }

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check .check { background: var(--coral); }

.page-hero {
  padding: 64px 0 20px;
  background: var(--paper-tint);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--coral-dark); }

/* =============================================================
   HOME PAGE
   Sections that only appear on index.html: the hero browser mock,
   the proof bar, the why-a-website band, the work grid, the coral
   final CTA and the simplified footer layout.
   ============================================================= */

/* ---------- Hero: browser mock in place of the old panel ---------- */

.site-shot {
  border: 2px solid var(--navy);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--teal);
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.site-shot .bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-tint);
}

.site-shot .bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.site-shot .bar i:nth-child(1) { background: var(--coral); }
.site-shot .bar i:nth-child(2) { background: var(--gold); }
.site-shot .bar i:nth-child(3) { background: var(--teal); }

/* Placeholder fill — replace the whole .shot-ph div with an <img> */
.shot-ph {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--paper-tint) 0 12px, #eceef4 12px 24px);
}

.shot-ph span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 6px;
}

/* ---------- Proof bar (replaces the four-column trust strip) ---------- */

.proof-bar {
  background: var(--navy);
  color: #fff;
  padding: 26px 0;
}

.proof-bar .wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.proof-bar .count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
}

.proof-bar .count small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}

.proof-bar blockquote {
  margin: 0;
  flex: 1;
  min-width: 300px;
  font-size: 1.02rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  border: 0;
  padding: 0;
}

.proof-bar blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  margin-top: 6px;
}

/* ---------- Why-a-website band ---------- */

.why-band {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.why-band h2 { margin-bottom: 12px; max-width: 680px; }
.why-band .lede { margin-bottom: 34px; }

.why-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 860px) { .why-cols { grid-template-columns: 1fr; gap: 28px; } }

.why-cols .rule {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 14px;
  display: block;
}

.why-cols > div:nth-child(1) .rule { background: var(--coral); }
.why-cols > div:nth-child(2) .rule { background: var(--gold); }
.why-cols > div:nth-child(3) .rule { background: var(--teal); }

.why-cols p { margin: 0; font-size: 1.02rem; }

/* ---------- Steps as bordered cards ---------- */

.step.card {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 16px;
  box-shadow: var(--shadow-hard-sm);
  padding: 26px;
}

.step.card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Our work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 760px) { .work-grid { grid-template-columns: 1fr; } }

.work-grid .thumb {
  height: 210px;
  border: 2px solid var(--navy);
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, var(--paper-tint) 0 12px, #eceef4 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-grid > div:nth-child(1) .thumb { box-shadow: 5px 5px 0 var(--coral); }
.work-grid > div:nth-child(2) .thumb { box-shadow: 5px 5px 0 var(--teal); }

.work-grid .thumb span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 11px;
  border-radius: 6px;
}

.work-grid .quote { margin: 14px 0 0; font-size: 0.98rem; font-style: italic; }
.work-grid .who { margin: 4px 0 0; font-size: 0.88rem; color: var(--muted); }

/* ---------- Final CTA — coral, with the price as a tilted tag ---------- */

.cta-final {
  position: relative;
  background: var(--coral);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 24px;
  box-shadow: 10px 10px 0 var(--navy);
  padding: 56px 56px 52px;
  overflow: hidden;
}

.cta-final .blob {
  position: absolute;
  border: 2px solid var(--navy);
  border-radius: 26%;
}

.cta-final .blob-gold {
  width: 150px; height: 150px;
  right: -40px; top: -46px;
  background: var(--gold);
  transform: rotate(18deg);
}

.cta-final .blob-teal {
  width: 64px; height: 64px;
  right: 120px; bottom: -24px;
  background: var(--teal);
  transform: rotate(-12deg);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: end;
}

.cta-final h2 {
  font-size: 2.6rem;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 560px;
}

.cta-final h2, .cta-final p { color: #101827; }
.cta-final p { margin: 0 0 28px; font-size: 1.12rem; max-width: 460px; }

.cta-final .btn {
  padding: 20px 40px;
  font-size: 1.18rem;
  font-weight: 800;
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 5px 5px 0 var(--gold);
}

.cta-final .btn:hover {
  background: var(--navy-soft);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--gold);
}

.price-tag {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--navy);
  padding: 24px 30px;
  text-align: center;
  transform: rotate(2deg);
}

.price-tag .kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-tag .amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.price-tag .amount sup { font-size: 1.4rem; }

.price-tag .per {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.price-tag .note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .cta-final { padding: 36px 26px; }
  .cta-final-inner { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .cta-final h2 { font-size: 2rem; }
  .price-tag { justify-self: start; }
}

/* ---------- Footer: three columns, no contact list, no socials ---------- */

.footer-grid.footer-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-split .footer-cols {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
}


/* Hero decorations only clear the content column on wide screens */
@media (max-width: 1240px) {
  .hero-decor > .shape { display: none; }
}


/* Single-column hero — no preview panel, examples live at the bottom */
.hero-single { max-width: 820px; margin-right: auto; }
.hero-single h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.hero-single .lede { max-width: 700px; }


.price-plate { display: flex; align-items: baseline; gap: 8px; border: 2px solid var(--navy); border-radius: 14px; box-shadow: 4px 4px 0 var(--navy); padding: 12px 20px; background: #fff; }
.price-plate b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; }
.price-plate span { font-size: 0.9rem; color: var(--muted); }


/* =============================================================
   REVIEW + GO LIVE  (pages a customer reaches by private link)
   ============================================================= */

.header-slim .nav { justify-content: space-between; }
.header-slim .nav-links, .header-slim .nav-toggle { display: none; }

.review-hero { padding: 48px 0 36px; background: var(--paper-tint); border-bottom: 1px solid var(--line); }
.review-hero h1 { max-width: 760px; }

.preview-frame { border: 2px solid var(--navy); border-radius: 18px; box-shadow: 8px 8px 0 var(--teal); background: #fff; overflow: hidden; }
.preview-frame .bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--paper-tint); }
.preview-frame .bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.preview-frame .bar i:nth-child(1) { background: var(--coral); }
.preview-frame .bar i:nth-child(2) { background: var(--gold); }
.preview-frame .bar i:nth-child(3) { background: var(--teal); }
.preview-frame .bar .addr { flex: 1; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.75rem; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 4px 10px; }
.preview-frame .body { height: 420px; display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(45deg, var(--paper-tint) 0 12px, #eceef4 12px 24px); }
.preview-frame .body span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.8rem; color: var(--muted); background: #fff; border: 1px solid var(--line); padding: 8px 12px; border-radius: 6px; }

.decide { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
@media (max-width: 760px) { .decide { grid-template-columns: 1fr; } }
.decide .box { border: 2px solid var(--navy); border-radius: 18px; padding: 28px; background: #fff; }
.decide .box.go { background: var(--coral); box-shadow: 6px 6px 0 var(--navy); }
.decide .box.go h3, .decide .box.go p { color: var(--navy); }
.decide .box h3 { font-size: 1.2rem; margin: 0 0 8px; }
.decide .box p { color: var(--muted); margin: 0 0 18px; font-size: 0.96rem; }
.decide .box.go .btn { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 4px 4px 0 var(--gold); }
.decide .box.go .btn:hover { background: var(--navy-soft); transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--gold); }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.checklist li i { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--navy); font-style: normal; }

.summary-card { border: 2px solid var(--navy); border-radius: 20px; box-shadow: 6px 6px 0 var(--navy); background: #fff; padding: 30px; }
.summary-card h2 { font-size: 1.25rem; margin: 0 0 20px; }
.summary-card .row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.summary-card .row span:last-child { font-weight: 600; white-space: nowrap; }
.summary-card .row.total { border-bottom: 0; padding-top: 18px; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.summary-card .row.total span:last-child { font-size: 1.6rem; }
.summary-card .btn { margin-top: 18px; }
.summary-card .secure { margin: 14px 0 0; font-size: 0.85rem; color: var(--muted); }


.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.eyebrow.teal { color: var(--navy); }
