/* =============================================================================
   Fixed Price Websites by Native Artificial Intelligence — styles
   Palette: warm off-white canvas, deep ink, confident emerald accent.
   Mobile-first, accessible contrast, no heavy animation.
   ========================================================================== */

:root {
  /* Warm neutrals to match Native Artificial Intelligence's near-black + cream palette */
  --ink:        #17120b;   /* warm near-black for headings */
  --ink-2:      #2a2118;
  --body:       #4d4438;   /* readable body text */
  --muted:      #6e695f;   /* Native Artificial Intelligence grey — darkened for WCAG AA (≈4.6:1 on white) */
  --line:       #ece4d8;
  --bg:         #ffffff;
  --bg-soft:    #faf6f0;   /* warm cream */
  --bg-soft-2:  #f3ebdf;

  /* Native Artificial Intelligence orange system */
  --accent:     #f4a14e;   /* brand bright orange — fills */
  --accent-h:   #ef9133;   /* button hover fill */
  --accent-d:   #b6531f;   /* burnt orange — text, links, white-text chips */
  --accent-ink: #1c1206;   /* dark text used ON the bright accent */
  --accent-l:   #fdf2e4;   /* light tint background */
  --accent-l2:  #f7ddbe;   /* tint border */
  --gold:       #97640f;   /* deep amber — darkened for readable contrast on light bg */
  --danger:     #c0492f;
  --ok:         #1a7f4f;

  --radius:     16px;
  --radius-sm:  11px;
  --radius-lg:  24px;

  --shadow-sm:  0 1px 2px rgba(11,31,26,.05), 0 1px 3px rgba(11,31,26,.06);
  --shadow:     0 4px 14px rgba(11,31,26,.07), 0 2px 6px rgba(11,31,26,.05);
  --shadow-lg:  0 18px 50px -12px rgba(11,31,26,.22), 0 8px 20px -8px rgba(11,31,26,.12);

  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: var(--accent-d); text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Visible keyboard focus for all interactive elements */
a:focus-visible, button:focus-visible, summary:focus-visible,
.btn:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent-d); outline-offset: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
h1, h2 { font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.55rem); }
h3 { font-size: 1.22rem; font-weight: 700; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 820px; }
.section { padding: clamp(56px, 4vw + 36px, 104px) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 4vw, 54px); }
.section-sub { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }

.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-d);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow.center { justify-content: center; width: 100%; }
.eyebrow.light { color: #ffd9a0; }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-l); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 6px 16px -4px rgba(182,83,31,.45); }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 10px 22px -6px rgba(182,83,31,.5); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-d); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 1.04rem; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #f7b267 0%, #f4a14e 45%, #df7c20 100%);
  box-shadow: 0 4px 12px -3px rgba(216,122,34,.5), inset 0 1px 0 rgba(255,255,255,.35);
}
.brand-svg { width: 30px; height: 30px; filter: drop-shadow(0 1px 1px rgba(124,60,12,.25)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; font-weight: 800; letter-spacing: -.02em; }
.brand-text small { color: var(--muted); font-size: .72rem; letter-spacing: .02em; }

.main-nav { display: none; gap: 4px; }
.main-nav a {
  color: var(--ink-2); font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  padding: 8px 12px; border-radius: 9px; transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--accent-l); color: var(--accent-d); }
.nav-cta { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 2px; padding: 14px 22px 22px;
  background: #fff; border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 6px; color: var(--ink-2); font-family: var(--font-head); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { margin-top: 12px; border-bottom: 0; color: #fff; justify-content: center; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: clip; padding: clamp(48px, 5vw, 92px) 0 clamp(56px, 6vw, 104px); }
.site-credit { position: absolute; top: 14px; left: 18px; z-index: 4; margin: 0; font-size: .72rem; color: var(--muted); }
.hero-glow {
  position: absolute; inset: -30% -10% auto auto; width: 720px; height: 720px; pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(244,161,78,.22), transparent 60%);
  filter: blur(10px);
}
.hero-grid { display: grid; gap: 44px; align-items: center; position: relative; }
.hero-copy h1 { font-size: clamp(2.1rem, 1.1rem + 4.4vw, 3.7rem); margin: 16px 0 0; }
.hero-copy .hl { color: var(--accent-d); }
.lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); color: var(--body); margin-top: 20px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-weight: 600; font-size: .94rem; font-family: var(--font-head); }
.ic { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* hero visual */
.hero-visual { position: relative; }
.card-elev { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.builder-preview { padding: 22px; max-width: 420px; margin-inline: auto; }
.bp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bp-tag { font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--accent-d); background: var(--accent-l); padding: 5px 11px; border-radius: 999px; }
.bp-win { display: inline-flex; gap: 5px; }
.bp-win i { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-soft-2); }
.bp-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 12px; border-radius: 10px; font-size: .92rem; color: var(--ink-2); }
.bp-row b { font-family: var(--font-head); }
.bp-row.is-on { background: var(--accent-l); }
.bp-total { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding: 16px 12px 6px; border-top: 1px dashed var(--line); }
.bp-total span { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.bp-count { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent-d); font-weight: 800; }
.bp-foot { margin-top: 6px; font-size: .82rem; color: var(--muted); padding: 0 12px; }
.hero-badge {
  position: absolute; bottom: -22px; left: -6px; padding: 14px 18px; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; line-height: 1.1; text-align: left;
}
.hb-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.hb-price { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--ink); }
.hb-sub { font-size: .8rem; color: var(--muted); }

/* ---------- StudioUI promo band (full-width feature card) ---------- */
/* Adapts the studioui.ai .net-band shape to FPW: long horizontal banner card,
   radial glow + card gradient + border, copy left / gold CTA right, stacks on
   mobile. Uses FPW's own .container, .eyebrow, .btn-primary and tokens; the dark
   canvas reuses the StudioUI brand surface already established in .g-studioui. */
.studioui-promo { padding: 0 0 clamp(8px, 2vw, 20px); }
.su-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 46px) clamp(24px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  background:
    radial-gradient(620px 320px at 12% 0%, rgba(255,194,75,.16), transparent 70%),
    linear-gradient(165deg, #161a2c 0%, #101322 60%, #0c0e19 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-lg);
}
.su-glow {
  position: absolute; inset: -40% auto auto -10%; width: 520px; height: 520px; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(244,161,78,.18), transparent 60%);
  filter: blur(8px);
}
.su-copy { position: relative; flex: 1 1 440px; min-width: 280px; }
.su-eyebrow { color: #ffd9a0; margin-bottom: 12px; }
.su-band h2 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.4rem); margin: 0 0 10px; }
.su-band .lead { color: #cdd2e6; max-width: 62ch; margin: 0; }
.su-cta { position: relative; flex: 0 0 auto; }
@media (max-width: 720px) {
  .su-cta { width: 100%; }
  .su-cta .btn { width: 100%; }
}

/* ---------- cards generic ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s var(--ease), box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ---------- how it works ---------- */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: s; }
.step { position: relative; padding-top: 30px; }
.step-num {
  position: absolute; top: -18px; left: 26px; width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
  color: var(--accent-ink); background: linear-gradient(135deg, var(--accent), #e88a2c); box-shadow: 0 8px 18px -6px rgba(182,83,31,.45);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- quote builder ---------- */
/* wizard (step-by-step quote builder) */
.is-typehidden, .is-offpage { display: none !important; }

/* Paged wizard — DEFAULT-HIDE every step; reveal ONLY the step that matches the
   #wizard[data-step] container. This is the structural guarantee that the final
   "Your details" step (page 6) can never appear on load, on a stale view, or if
   JS fails to run — there is no JS-added class the page depends on to stay safe.
   The container ships as data-step="1" in the HTML, so step 1 is the worst case. */
.wiz-pages [data-wizpage] { display: none; }
#wizard[data-step="1"] .wiz-pages [data-wizpage="1"],
#wizard[data-step="2"] .wiz-pages [data-wizpage="2"],
#wizard[data-step="3"] .wiz-pages [data-wizpage="3"],
#wizard[data-step="4"] .wiz-pages [data-wizpage="4"],
#wizard[data-step="5"] .wiz-pages [data-wizpage="5"] { display: block; }
/* type-hidden groups stay hidden even on their own step (handled by !important above) */

.wiz-progress { margin: 0 auto 26px; }
.wiz-bar { height: 8px; background: var(--bg-soft-2); border-radius: 999px; overflow: hidden; }
.wiz-bar #wiz-fill { display: block; height: 100%; width: 16.66%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-h)); transition: width .35s var(--ease); }
.wiz-label { margin-top: 10px; font-family: var(--font-head); font-weight: 700; color: var(--ink-2); font-size: .95rem; text-align: center; }
.wiz-pages { min-width: 0; }
.wiz-page-title { margin-bottom: 4px; }
.wiz-page-sub { color: var(--muted); margin-bottom: 18px; font-size: .95rem; }
.wiz-nav { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.wiz-nav #wiz-back { margin-right: auto; }
.wiz-nav #wiz-next { margin-left: auto; }

.quote-layout { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; }
.qgroup { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.qgroup-head { margin-bottom: 16px; }
.qgroup-step { font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-d); }
.qgroup h3 { margin: 4px 0 4px; }
.qgroup-q { font-weight: 600; color: var(--ink-2); }
.qgroup-helper { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.qgroup-intro { background: var(--accent-l); border: 1px solid var(--accent-l2); border-radius: var(--radius-sm); padding: 14px 16px; font-size: .92rem; color: var(--ink-2); margin-bottom: 16px; }

.opts { display: grid; gap: 11px; }
.opt {
  display: flex; align-items: flex-start; gap: 13px; padding: 15px 16px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.opt:hover { border-color: var(--accent-l2); background: #fcfefd; }
.opt:has(input:checked) { border-color: var(--accent); background: var(--accent-l); box-shadow: 0 0 0 1px var(--accent) inset; }
.opt:has(input:focus-visible) { outline: 2px solid var(--accent-d); outline-offset: 2px; }
.opt input { margin-top: 3px; width: 19px; height: 19px; accent-color: var(--accent); flex: none; }
.opt-body { flex: 1; min-width: 0; }
.opt-label { font-family: var(--font-head); font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.opt-sub { color: var(--muted); font-size: .88rem; margin-top: 3px; }
.opt-price { font-family: var(--font-head); font-weight: 800; color: var(--accent-d); white-space: nowrap; margin-left: 10px; }
.opt-price.zero { color: var(--muted); }
.opt-price.discuss { color: var(--accent-d); font-style: italic; }
.badge-popular { font-family: var(--font-head); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-d); background: #fff; border: 1px solid var(--accent-l2); padding: 2px 8px; border-radius: 999px; }
.placeholder-flag { font-size: .7rem; color: var(--gold); font-weight: 600; }

/* option hidden by a dependency (e.g. Managed hosting on ecommerce) */
.opt.is-hidden { display: none !important; }
/* option hidden because it doesn't apply to the chosen website type */
.opt.is-opthidden { display: none !important; }
/* gated option: the row stays fully visible, but its tick-box is concealed
   (and not interactive) until the requirement is met — then the box appears */
.opt.is-gated input { visibility: hidden; }
.opt.is-gated { pointer-events: none; }
/* small inline note under a group head explaining a lock */
.qgroup-note { margin-top: 10px; font-size: .85rem; color: var(--accent-d); background: var(--accent-l); border: 1px solid var(--accent-l2); border-radius: var(--radius-sm); padding: 8px 12px; }

.custom-pages { margin-top: 12px; padding: 14px 16px; border: 1px dashed var(--line); border-radius: var(--radius-sm); display: none; align-items: center; gap: 12px; flex-wrap: wrap; }
.custom-pages.show { display: flex; }
.custom-pages label { font-family: var(--font-head); font-weight: 600; color: var(--ink-2); font-size: .92rem; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.stepper button { width: 38px; height: 38px; background: #fff; border: 0; font-size: 1.3rem; color: var(--accent-d); line-height: 1; }
.stepper button:hover { background: var(--accent-l); }
.stepper input { width: 52px; text-align: center; border: 0; border-inline: 1.5px solid var(--line); height: 38px; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.custom-pages .cp-price { font-family: var(--font-head); font-weight: 800; color: var(--accent-d); margin-left: auto; }

/* summary */
.quote-summary { padding: 24px; position: sticky; top: 86px; }
.qs-titlerow { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.qs-title { margin-bottom: 0; }
.qs-curpick { display: inline-flex; }
#cur-select {
  font: inherit; font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--ink-2);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 6px 28px 6px 12px; cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b6531f' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
}
#cur-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-l); }
.qs-curnote { font-size: .78rem; color: var(--accent-d); background: var(--accent-l); border: 1px solid var(--accent-l2); border-radius: 9px; padding: 9px 11px; margin-bottom: 12px; }
.qs-discussnote { font-size: .8rem; color: var(--ink-2); background: var(--bg-soft); border: 1px dashed var(--accent-l2); border-radius: 9px; padding: 10px 12px; margin-bottom: 12px; }
.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; }
.qs-line { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 7px 0; }
.qs-line span { color: var(--body); }
.qs-line strong { font-family: var(--font-head); color: var(--ink); font-size: 1.05rem; }
.qs-sub strong { color: var(--ink-2); }
.qs-divider { height: 1px; background: var(--line); margin: 8px 0; }
.qs-grand span { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.qs-grand strong { font-size: 1.5rem; color: var(--accent-d); }
.qs-monthly { margin-top: 14px; padding: 14px; background: var(--accent-l); border-radius: var(--radius-sm); border: 1px solid var(--accent-l2); }
.qs-monthly .qs-line { padding: 2px 0; }
.qs-monthly strong { color: var(--accent-d); font-size: 1.25rem; }
.qs-monthly strong small { font-size: .8rem; font-weight: 600; }
.qs-monthly-note { font-size: .8rem; color: var(--ink-2); margin-top: 6px; }
.qs-breakdown { margin: 16px 0; border-top: 1px solid var(--line); padding-top: 12px; }
.qs-breakdown summary { font-family: var(--font-head); font-weight: 600; color: var(--ink-2); cursor: pointer; font-size: .92rem; }
.qs-items { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 6px; }
.qs-items li { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; color: var(--body); }
.qs-items li b { font-family: var(--font-head); color: var(--ink-2); }
.qs-empty { color: var(--muted); font-style: italic; }
.qs-disclaimer { font-size: .82rem; color: var(--muted); margin: 14px 0 16px; }
.qs-fineprint { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- why / benefits ---------- */
.benefits { display: grid; gap: 18px; grid-template-columns: 1fr; }
.benefit-ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--accent-d);
  background: var(--accent-l); margin-bottom: 14px;
}
.benefit.card { overflow: hidden; }
.benefit-img {
  display: block; width: calc(100% + 52px); height: 300px;
  margin: -26px -26px 22px; object-fit: cover; background: var(--accent-l);
}
/* locations page: keep 4 cards per row, emblem banner shorter than industries */
#locations .benefit-img { height: 160px; }
/* industries page: 2 cards per row so images render large */
#industries .benefits { grid-template-columns: 1fr; }
@media (min-width: 620px) { #industries .benefits { grid-template-columns: repeat(2, 1fr); } }
.benefit h3 { margin-bottom: 7px; }
.benefit p { color: var(--muted); }
.suitable { margin-top: 40px; text-align: center; }
.suitable-label { font-family: var(--font-head); font-weight: 700; color: var(--ink-2); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-2); box-shadow: var(--shadow-sm); }

/* ---------- domain guide ---------- */
.guide-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.guide { padding-top: 28px; }
.guide-num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 800; margin-bottom: 12px; }
.guide h3 { margin-bottom: 8px; }
.guide p { color: var(--muted); font-size: .96rem; }
.guide-eg { margin-top: 10px; }
.guide-eg code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--bg-soft); padding: 2px 7px; border-radius: 6px; font-size: .85rem; color: var(--ink-2); }
.ok, .bad { font-family: var(--font-head); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; margin-right: 6px; }
.ok { color: var(--accent-d); }
.bad { color: var(--danger); }
.guide-cta { margin-top: 26px; padding: 26px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; border-radius: var(--radius); }
.guide-cta h3 { margin-bottom: 4px; }
.guide-cta p { color: var(--muted); max-width: 540px; }

/* ---------- examples / portfolio ---------- */
.cat-head { font-size: 1.3rem; margin: 8px 0 16px; text-align: center; }
.cat-note { color: var(--muted); margin: -8px 0 18px; font-size: .94rem; text-align: center; }
.portfolio { display: grid; gap: 22px; grid-template-columns: 1fr; margin-bottom: 40px; }
.folio { overflow: hidden; display: flex; flex-direction: column; }
/* logos sit on a clean, colourless backdrop (no brand gradient) */
.folio-thumb { aspect-ratio: 16 / 10; display: grid; place-items: center; position: relative; background: var(--bg-soft); border-bottom: 1px solid var(--line); overflow: hidden; }
.folio-domain { position: absolute; bottom: 12px; left: 12px; z-index: 2; color: var(--muted); font-family: ui-monospace, monospace; font-size: .76rem; background: #fff; border: 1px solid var(--line); padding: 4px 9px; border-radius: 7px; }
.folio-logo { position: absolute; inset: 0; z-index: 1; display: block; padding: 26px 30px 46px; }
.folio-logo-chip { display: block; width: 100%; height: 100%; }
/* width+height 100% + contain forces small logos to scale UP to fill the tile */
.folio-logo-chip img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* per-brand example tiles — logo fills the box on its own brand colour */
.g-carpentry { background: #f3f1ed; }
.g-fashion   { background: #f0eae1; }
.g-jerky     { background: #17130d; }
.g-nativeai  { background: radial-gradient(120% 95% at 50% -10%, rgba(244,161,78,.16), transparent 60%), #080b12; }
.g-studioui  { background: radial-gradient(120% 95% at 50% -10%, rgba(255,194,75,.14), transparent 60%), #101322; }
.g-marshy    { background: #ecf4ec; }
.folio-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.folio-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.folio-body h4 { font-family: var(--font-head); font-size: 1.18rem; color: var(--ink); font-weight: 800; }
.folio-body p { color: var(--muted); font-size: .94rem; margin-top: 8px; }
.tag { font-family: var(--font-head); font-weight: 700; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 999px; }
.tag-live { color: var(--accent-d); background: var(--accent-l); }
.tag-soon { color: var(--gold); background: #fbf2e2; }
.tag-inhouse { color: #4a52a8; background: #eef0fb; }
.folio-tags { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 7px; }
.folio-tags li { font-size: .76rem; color: var(--ink-2); background: var(--bg-soft); border-radius: 6px; padding: 4px 9px; }
.folio-note { font-size: .8rem; color: var(--gold); font-weight: 600; margin-top: 12px; }
.folio-link { margin-top: auto; padding-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--accent-d); align-self: flex-start; }

/* itemised checkout on the details step */
.checkout { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-top: 6px; }
.co-row { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.co-row span:first-child { color: var(--ink-2); }
.co-row span:last-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.co-total { display: flex; justify-content: space-between; gap: 14px; padding-top: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; color: var(--ink); }
.co-total span:last-child { color: var(--accent-d); }
.co-total.co-mo { font-size: .92rem; padding-top: 5px; font-weight: 700; }
.co-note { font-size: .76rem; color: var(--muted); margin-top: 11px; }
.co-empty { font-size: .9rem; color: var(--muted); }
.deposit-note { font-size: .76rem; color: var(--muted); margin: 8px 0 4px; text-align: center; }
.folio-link:hover { color: var(--accent); }

/* ---------- hosting ---------- */
.hosting-foot { max-width: 760px; margin: 28px auto 0; text-align: center; color: var(--muted); font-size: .92rem; }
.hosting-foot strong { color: var(--ink-2); }
.hosting-intro { max-width: 800px; margin: 0 auto 36px; text-align: center; color: var(--body); }
.hosting-intro strong { color: var(--ink); }
.hosting-cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
.hcard { padding: 28px 26px; position: relative; }
.hcard h3 { margin-bottom: 6px; }
.hcard-price { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--ink); margin-bottom: 16px; }
.hcard-price small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.hcard.is-featured { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.hcard-flag { position: absolute; top: -12px; right: 22px; background: var(--accent-d); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: 5px 12px; border-radius: 999px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: .95rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; font-family: var(--font-head); }
.ticks li.muted { color: var(--muted); font-size: .85rem; }
.ticks li.muted::before { content: "•"; color: var(--muted); }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 50px 18px 20px; position: relative;
  font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--accent-d); font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--accent-d); }
.faq-a { padding: 0 20px 20px; color: var(--muted); }

/* ---------- contact ---------- */
.section-dark { background: linear-gradient(165deg, #17120b 0%, #2c1c0d 65%, #3a230f 100%); color: #e8ddcd; }
.section-dark h2 { color: #fff; }
.section-dark .section-sub { color: #cdbda6; }
.contact-form { padding: 30px; display: grid; gap: 16px; text-align: left; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-family: var(--font-head); font-weight: 600; color: var(--ink-2); font-size: .9rem; }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg-soft); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-l); }
.field textarea[readonly] { background: #eef3f0; color: var(--ink-2); }
.field-hint { color: var(--muted); font-size: .8rem; }
.domain-check { min-height: 1.1em; transition: color .15s; }
.domain-check.checking { color: var(--muted); font-style: italic; }
.domain-check.ok { color: var(--ok); font-weight: 600; }
.domain-check.taken { color: var(--danger); font-weight: 600; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.consent input { margin-top: 3px; width: 19px; height: 19px; accent-color: var(--accent); flex: none; }
.form-status { font-family: var(--font-head); font-weight: 600; text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--accent-d); }
.form-status.err { color: var(--danger); }

/* ---------- footer ---------- */
.site-footer { background: #120c06; color: #c9beb0; padding: 52px 0 30px; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brandtop { display: flex; align-items: center; gap: 11px; }
.footer-brand .brand-text strong { color: #fff; font-size: 1.1rem; }
.footer-brand .brand-text small { color: #a3957f; margin-top: 5px; }
.footer-tag { margin-top: 12px; color: #a3957f; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 2px 18px; align-content: start; }
.footer-nav a { color: #d3c8ba; font-size: .92rem; font-family: var(--font-head); font-weight: 500; padding: 6px 0; }
.footer-nav a:hover { color: var(--accent); }
.footer-base { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; padding-top: 22px; font-size: .82rem; color: #8a7d6c; }
.footer-base a { color: #c9beb0; }
.footer-base a:hover { color: var(--accent); }
.brand-credit { color: inherit; text-decoration: none; }
.brand-credit:hover { color: var(--accent); text-decoration: underline; }

/* ---------- legal pages (privacy / terms) ---------- */
.legal-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: clamp(40px, 5vw, 72px) 0 clamp(30px, 4vw, 48px); }
.legal-hero h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); }
.legal-hero .updated { color: var(--muted); margin-top: 12px; font-size: .95rem; }
.legal { padding: clamp(40px, 4vw, 72px) 0 clamp(56px, 6vw, 96px); }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--body); }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 7px; }
.legal a { color: var(--accent-d); text-decoration: underline; text-underline-offset: 2px; }
.legal .lead { font-size: 1.08rem; color: var(--ink-2); }
.legal-note { background: var(--accent-l); border: 1px solid var(--accent-l2); border-radius: var(--radius-sm); padding: 14px 16px; font-size: .9rem; color: var(--ink-2); margin-bottom: 30px; }
.legal-back { display: inline-flex; align-items: center; gap: 7px; margin-top: 30px; font-family: var(--font-head); font-weight: 700; color: var(--accent-d); }

/* ---------- responsive ---------- */
@media (min-width: 620px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio { grid-template-columns: repeat(2, 1fr); }
  .hosting-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 920px) {
  .main-nav { display: flex; }
  .nav-cta { display: inline-flex; margin-right: 14px; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .quote-layout { grid-template-columns: 1.55fr 1fr; }
  .benefits { grid-template-columns: repeat(4, 1fr); }
  .guide-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio { grid-template-columns: repeat(3, 1fr); }
  /* client row has only 2 boxes — centre them (same width as the 3-box
     in-house row) so the two sit above the three, forming a pyramid */
  .portfolio.is-pair { grid-template-columns: repeat(2, calc((100% - 44px) / 3)); justify-content: center; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

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

/* NativeAI parent-brand credit logo in footer */
.nativeai-credit{height:16px;width:auto;vertical-align:middle;display:inline-block;opacity:.92}
.brand-credit:hover .nativeai-credit{opacity:1}
.brand-credit:has(.nativeai-credit):hover{text-decoration:none}
