/* ==========================================================================
   North Texas Fix
   Palette is green-forward (UNT-adjacent green, no university marks).
   Green carries the brand; a single dark CTA colour keeps buttons popping.
   ========================================================================== */

:root {
  --green:        #00853E;
  --green-dark:   #005E2C;
  --green-darker: #00401E;
  --green-bright: #00B84F;
  --green-tint:   #E9F4EE;
  --green-tint-2: #D3EADD;

  --ink:    #0B0F0D;
  --ink-2:  #39433E;
  --muted:  #6C7873;
  --line:   #E1E8E4;
  --bg:     #FFFFFF;
  --bg-alt: #F6F9F7;

  --amber:  #E8A317;
  --red:    #C63737;

  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 1px 2px rgba(11,15,13,.06), 0 8px 24px rgba(11,15,13,.06);
  --shadow-lg: 0 4px 12px rgba(11,15,13,.08), 0 24px 48px rgba(11,15,13,.10);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
a  { color: var(--green-dark); }

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.nowrap { white-space: nowrap; }
.hide { display: none !important; }

section { padding: 68px 0; }
section.tight { padding: 44px 0; }
.bg-alt  { background: var(--bg-alt); }
.bg-tint { background: var(--green-tint); }

.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }

.kicker {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 26px; border-radius: var(--radius); border: 2px solid transparent;
  font: inherit; font-weight: 800; font-size: 1rem; line-height: 1;
  text-decoration: none; cursor: pointer; transition: .15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 2px; }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.btn-ghost { background: #fff; color: var(--green-dark); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-tint); }

.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { background: var(--green-tint); }

.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 9px 16px; font-size: .875rem; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

/* ---------- header ---------- */

.topbar {
  background: var(--green-darker); color: #C9E6D6;
  font-size: .92rem; padding: 10px 0;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }
.topbar .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); margin-right: 6px; }
.topbar .dot.off { background: #E08B8B; }

/* Language switch. Deliberately loud: most customers here speak Spanish, so
   this is a primary control, not a footnote. Black so it does not fight the
   green CTA next to it. */
.lang-btn {
  display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0;
  background: #fff; color: var(--green-darker) !important;
  text-decoration: none !important;
  border: 2px solid #fff; border-radius: 999px;
  padding: 11px 22px; font-weight: 900; font-size: 1rem; line-height: 1;
  transition: .15s ease;
}
.lang-btn:hover { background: var(--green-tint); border-color: var(--green-tint); transform: translateY(-1px); }
.lang-btn:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 2px; }
.lang-btn svg { flex-shrink: 0; }
.lang-btn-short { display: none; }

@media (max-width: 620px) {
  .topbar .wrap { justify-content: center; text-align: center; }
  .lang-btn { width: 100%; justify-content: center; padding: 13px 18px; }
}
/* The full sentence fits every common phone (375px and up). Only fall back to
   the one-word label on the genuinely tiny ones, where it would wrap. */
@media (max-width: 339px) {
  .lang-btn-full  { display: none; }
  .lang-btn-short { display: inline; }
}

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 22px; height: 76px; }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo .mark { width: 38px; height: 38px; color: var(--green); flex-shrink: 0; }
.logo .name { font-weight: 900; font-size: 1.12rem; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
.logo .name span { color: var(--green); display: block; letter-spacing: .16em; font-size: .82rem; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 10px 13px; border-radius: 8px; text-decoration: none;
  color: var(--ink-2); font-weight: 700; font-size: .95rem;
}
.site-nav a:hover { background: var(--green-tint); color: var(--green-dark); }
.site-nav a.active { color: var(--green-dark); background: var(--green-tint); }
.header-cta { margin-left: 10px; }

/* `.site-nav a` is more specific than `.btn-primary`, so the CTA inside the
   nav needs these back explicitly or it renders dark-on-green. */
.site-nav a.btn-primary { color: #fff; background: var(--green); }
.site-nav a.btn-primary:hover { color: #fff; background: var(--green-dark); }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 2px solid var(--line);
  border-radius: 8px; padding: 9px 12px; cursor: pointer; font-weight: 800; color: var(--ink);
}

@media (max-width: 980px) {
  .site-header .wrap { height: 66px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    padding: 10px 16px 18px; gap: 2px; box-shadow: var(--shadow); margin-left: 0;
  }
  .site-nav:not(.open) { display: none; }
  .site-nav a { padding: 13px 12px; font-size: 1.02rem; }
  .header-cta { margin: 8px 0 0; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 460px at 88% -8%, rgba(0,133,62,.14), transparent 62%),
    linear-gradient(180deg, var(--green-tint) 0%, #fff 78%);
  padding: 66px 0 60px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* Workbench photo behind the hero.
   This is a real element rather than a pseudo-element for two reasons: the
   blur has to sit on something other than the text (blurring .hero would
   blur the headline with it), and a url() carried through a CSS variable
   resolves against the stylesheet's folder, not the page's - which silently
   404s. An inline style on a real div resolves against the page.
   scale() hides the soft edge the blur leaves around the outside. */
/* --hero-blur and --hero-scrim come from admin > Wording so the shop can dial
   the photo in without editing CSS. Scrim is the strength behind the copy;
   the far side is always lighter so the repair itself stays visible. */
.hero.has-photo { --hero-blur: 1.25px; --hero-scrim: .80; }

.hero-photo {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  filter: blur(var(--hero-blur)) saturate(.95);
  /* Only needs to hide the blur's soft edge, so it scales with the blur */
  transform: scale(1.03);
  pointer-events: none;
}

/* White scrim: strong where the copy sits, dropping away to the right so you
   can actually see the repair being made. */
.hero.has-photo::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    rgba(255,255,255, var(--hero-scrim)) 0%,
    rgba(255,255,255, var(--hero-scrim)) 34%,
    rgba(255,255,255, calc(var(--hero-scrim) * .62)) 58%,
    rgba(255,255,255, calc(var(--hero-scrim) * .34)) 100%);
}
@media (max-width: 900px) {
  /* Stacked layout puts the copy across the full width, so the scrim has to be
     even - but fade it near the bottom where the badges end. */
  .hero.has-photo::after {
    background: linear-gradient(180deg,
      rgba(255,255,255, var(--hero-scrim)) 0%,
      rgba(255,255,255, var(--hero-scrim)) 72%,
      rgba(255,255,255, calc(var(--hero-scrim) * .7)) 100%);
  }
}

.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center; position: relative; }
.hero h1 { margin-bottom: .2em; }
.hero .hero-title-2 {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 800; line-height: 1.2;
  color: var(--green-dark); margin: 0 0 .6em; letter-spacing: -.01em;
}
.hero .lede { font-size: 1.12rem; color: var(--ink-2); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.hero-actions-2 { margin: 12px 0 0; }
.btn-lg { padding: 17px 32px; font-size: 1.12rem; }

.turnaround {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 2px solid var(--green-tint-2); border-radius: var(--radius);
  padding: 11px 16px; margin: 22px 0 20px; font-size: .95rem; color: var(--green-darker);
}
.turnaround svg { flex-shrink: 0; color: var(--green); }

.badges { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.badges li {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--green-tint-2); color: var(--green-darker);
  border-radius: 999px; padding: 7px 14px; font-size: .84rem; font-weight: 700;
}
.badges li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* hero card = mini tracker preview */
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px;
}
.hero-card .hc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hero-card .hc-code { font-weight: 900; letter-spacing: .05em; color: var(--ink); }
.hero-card .hc-eta { font-size: .8rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero { padding: 44px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- cards ---------- */

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: .18s ease;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .97rem; }

.card-service { display: flex; flex-direction: column; }
.card-service:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-service .icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--green-tint);
  color: var(--green-dark); display: grid; place-items: center; margin-bottom: 18px;
}
.card-service .icon svg { width: 27px; height: 27px; }
.card-service .fee {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-weight: 800; color: var(--green-dark); font-size: .95rem;
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.card-service .fee .amount { font-size: 1.5rem; font-weight: 900; color: var(--ink); }
.card-service .fee .amount.free { color: var(--green); }

.feature { display: flex; gap: 16px; }
.feature .icon {
  flex: 0 0 44px; height: 44px; border-radius: 11px;
  background: var(--green-tint); color: var(--green-dark); display: grid; place-items: center;
}
.feature .icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.04rem; margin-bottom: .3em; }
.feature p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- tracker rail ---------- */

.rail { list-style: none; margin: 0; padding: 0; }
.rail li {
  position: relative; padding: 0 0 26px 42px; color: var(--muted); font-size: .95rem;
}
.rail li:last-child { padding-bottom: 0; }
.rail li::before {
  content: ""; position: absolute; left: 8px; top: 3px;
  width: 15px; height: 15px; border-radius: 50%;
  background: #fff; border: 3px solid var(--line); z-index: 2;
}
.rail li::after {
  content: ""; position: absolute; left: 14px; top: 18px; bottom: -3px;
  width: 3px; background: var(--line);
}
.rail li:last-child::after { display: none; }

.rail li.done { color: var(--ink-2); }
.rail li.done::before { background: var(--green); border-color: var(--green); }
.rail li.done::after  { background: var(--green); }

.rail li.current { color: var(--ink); font-weight: 800; }
.rail li.current::before {
  background: var(--green); border-color: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(0,184,79,.22);
  animation: pulse 1.9s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(0,184,79,.22); }
  50%     { box-shadow: 0 0 0 10px rgba(0,184,79,.05); }
}
@media (prefers-reduced-motion: reduce) { .rail li.current::before { animation: none; } }

.rail .stamp { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); margin-top: 2px; }

/* horizontal rail for wide screens */
.rail-h { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; margin: 0 0 34px; padding: 0; list-style: none; }
.rail-h li { position: relative; text-align: center; padding-top: 34px; font-size: .82rem; color: var(--muted); }
.rail-h li::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--line); z-index: 2;
}
.rail-h li::after { content: ""; position: absolute; top: 8px; left: 50%; width: 100%; height: 3px; background: var(--line); }
.rail-h li:last-child::after { display: none; }
.rail-h li.done { color: var(--ink-2); }
.rail-h li.done::before { background: var(--green); border-color: var(--green); }
.rail-h li.done::after { background: var(--green); }
.rail-h li.current { color: var(--ink); font-weight: 800; }
.rail-h li.current::before { background: var(--green); border-color: var(--green-bright); box-shadow: 0 0 0 5px rgba(0,184,79,.22); }
@media (max-width: 820px) { .rail-h { display: none; } }
@media (min-width: 821px) { .rail-v { display: none; } }

.notice {
  border-radius: var(--radius); padding: 16px 18px; font-size: .95rem;
  border: 1px solid; margin: 0 0 22px;
}
.notice-warn  { background: #FDF6E7; border-color: #F0DDAE; color: #7A5A0B; }
.notice-error { background: #FCEDED; border-color: #F1C9C9; color: #8C2B2B; }
.notice-ok    { background: var(--green-tint); border-color: var(--green-tint-2); color: var(--green-darker); }

/* ---------- wizard ---------- */

.wizard-steps { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.wizard-steps span {
  flex: 1 1 auto; height: 5px; border-radius: 999px; background: var(--line); min-width: 40px;
}
.wizard-steps span.on { background: var(--green); }

.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 12px; }

.choice {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 16px; font: inherit; color: var(--ink); cursor: pointer; transition: .14s ease;
  text-decoration: none;
}
.choice:hover { border-color: var(--green); background: var(--green-tint); }
.choice.selected { border-color: var(--green); background: var(--green-tint); box-shadow: 0 0 0 3px rgba(0,133,62,.12); }
.choice .ch-title { font-weight: 800; display: block; }
.choice .ch-sub { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; }
.choice .ch-price { margin-left: auto; font-weight: 900; color: var(--green-dark); white-space: nowrap; }
.choice .ch-check {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0; color: transparent;
}
.choice.selected .ch-check { background: var(--green); border-color: var(--green); color: #fff; }

.wizard-actions { display: flex; gap: 12px; margin-top: 30px; align-items: center; }
.wizard-actions .spacer { margin-left: auto; }

.searchbox {
  width: 100%; padding: 14px 16px; border: 2px solid var(--line); border-radius: var(--radius);
  font: inherit; margin-bottom: 16px;
}
.searchbox:focus { outline: none; border-color: var(--green); }

/* ---------- summary / receipt ---------- */

.summary {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff;
}
.summary .sum-head { background: var(--green-darker); color: #fff; padding: 18px 22px; font-weight: 800; }
.summary .sum-body { padding: 8px 22px; }
.sum-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.sum-row:last-child { border-bottom: 0; }
.sum-row .lbl { color: var(--ink-2); }
.sum-row .val { font-weight: 700; color: var(--ink); white-space: nowrap; }
.sum-total { background: var(--green-tint); padding: 18px 22px; display: flex; justify-content: space-between; align-items: baseline; }
.sum-total .lbl { font-weight: 800; color: var(--green-darker); }
.sum-total .val { font-size: 1.85rem; font-weight: 900; color: var(--ink); }

/* ---------- forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field label { display: block; font-weight: 800; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.field label .req { color: var(--red); font-weight: 700; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.field input[type=text], .field input[type=tel], .field input[type=email],
.field input[type=date], .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 2px solid var(--line); border-radius: var(--radius);
  font: inherit; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,133,62,.12); }
.field textarea { min-height: 110px; resize: vertical; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field .err { color: var(--red); font-size: .82rem; font-weight: 700; margin-top: 6px; }

.check { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; }

fieldset { border: 0; padding: 0; margin: 0 0 26px; }
fieldset legend { font-weight: 900; font-size: 1.1rem; color: var(--ink); padding: 0; margin-bottom: 14px; }

/* ---------- tables ---------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%; border-collapse: collapse; background: #fff; font-size: .95rem; min-width: 620px;
}
table.data th, table.data td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th {
  background: var(--green-darker); color: #fff; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .06em; position: sticky; top: 0;
}
table.data tbody tr:hover { background: var(--green-tint); }
table.data td.price { font-weight: 800; color: var(--ink); white-space: nowrap; }
table.data td.na { color: var(--muted); font-style: italic; }

.brand-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.brand-tabs button {
  border: 2px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 18px; font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer; color: var(--ink-2);
}
.brand-tabs button:hover { border-color: var(--green); }
.brand-tabs button.on { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------- reviews ---------- */

.stars { display: inline-flex; gap: 2px; line-height: 0; }
.stars .star { position: relative; display: inline-flex; color: var(--line); }
.stars .star.on { color: #E8A317; }
.stars .star.half { color: var(--line); }
.stars .star.half .star-fill { position: absolute; inset: 0; color: #E8A317; }

.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 26px; max-width: 460px; margin: 0 auto;
}
.rating-summary strong { font-size: 1.9rem; color: var(--ink); font-weight: 900; line-height: 1; }

.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; margin: 0; display: flex; flex-direction: column; gap: 14px;
}
.review blockquote {
  margin: 0; font-size: .98rem; color: var(--ink-2); line-height: 1.6;
  /* long single-word pastes from a review must not blow out the card */
  overflow-wrap: anywhere;
}
.review blockquote::before { content: "\201C"; }
.review blockquote::after  { content: "\201D"; }
.review figcaption { margin-top: auto; font-size: .88rem; }
.review .who { font-weight: 800; color: var(--ink); display: block; }
.review .src { color: var(--muted); }

.review-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px;
}

/* ---------- social ---------- */

.social-panel {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px; max-width: 940px; margin: 0 auto;
}
.social-tile {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; text-decoration: none; color: var(--ink);
  font-weight: 800; font-size: .95rem; transition: .15s ease;
}
.social-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.social-tile svg { flex-shrink: 0; }
/* Brand colours on hover only, so the row stays calm at rest */
.social-google:hover    { border-color: #4285F4; color: #1a56b8; }
.social-facebook:hover  { border-color: #1877F2; color: #0d5dc4; }
.social-instagram:hover { border-color: #C13584; color: #A02468; }
.social-tiktok:hover    { border-color: #010101; color: #000; }
.social-whatsapp:hover  { border-color: #25D366; color: #128C4B; }
.social-youtube:hover   { border-color: #FF0000; color: #C40000; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: #1A211D; color: #C6CFCA; transition: .15s ease;
}
.footer-social a:hover { background: var(--green); color: #fff; }

/* ---------- cta band ---------- */

.cta-band { background: var(--green-darker); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #BFE0CE; max-width: 620px; margin: 0 auto 26px; }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: #9AA5A0; padding: 56px 0 26px; font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #C6CFCA; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo .name { color: #fff; }
.site-footer .logo .mark { color: var(--green-bright); }
.footer-bottom {
  border-top: 1px solid #222A26; margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem;
}

/* sticky mobile call bar */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: var(--line); box-shadow: 0 -2px 18px rgba(0,0,0,.10);
  }
  .mobile-bar a {
    background: #fff; padding: 14px 8px; text-align: center; font-weight: 800;
    text-decoration: none; color: var(--green-dark); font-size: .95rem;
  }
  .mobile-bar a.primary { background: var(--green); color: #fff; }
  body { padding-bottom: 56px; }
}

.page-head { padding: 46px 0 34px; background: var(--green-tint); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-bottom: .25em; }
.page-head p { color: var(--ink-2); margin: 0; max-width: 60ch; }

.pill {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  font-size: .76rem; font-weight: 800; letter-spacing: .03em;
}
.pill-green { background: var(--green-tint); color: var(--green-darker); }
.pill-amber { background: #FDF3DF; color: #7A5A0B; }
.pill-red   { background: #FBE9E9; color: #8C2B2B; }
.pill-grey  { background: #EEF1EF; color: var(--muted); }

.code-box {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.85rem; font-weight: 800; letter-spacing: .12em; color: var(--green-darker);
  background: var(--green-tint); border: 2px dashed var(--green); border-radius: var(--radius);
  padding: 18px 22px; display: inline-block;
}

.skip-link {
  position: absolute; left: -9999px; background: var(--green); color: #fff;
  padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }
