/* ==========================================================================
   Brickell Tech Fix — stylesheet
   Body text stays system-font for speed. Headings and numerals use IBM Plex
   (loaded once, subset to weights actually used) for a firmer, less generic,
   less "AI SaaS template" feel — closer to a technical letterhead than a
   startup landing page.
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #061626;
  --navy-800: #0a2540;
  --navy-700: #123a5e;
  --accent:   #0fb5a4;
  --accent-dk:#0a8d80;
  --accent-lt:#e6f7f5;

  /* Neutrals */
  --ink:    #10202e;
  --body:   #445563;
  --muted:  #6b7c8a;
  --line:   #e2e8ed;
  --line-2: #eef2f5;
  --bg:     #ffffff;
  --bg-alt: #f7f9fb;

  --warn:   #b45309;
  --good:   #0d8a4f;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
  --font-head: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", "Cascadia Code",
               Consolas, monospace;

  /* Space */
  --container: 1120px;
  --gutter: 20px;
  --radius: 7px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.05);
  --shadow-md: 0 4px 16px rgba(10,37,64,.08);
  --shadow-lg: 0 12px 36px rgba(10,37,64,.12);
}

/* --------------------------------------------------------- reset / base */
*, *::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.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
  font-weight: 650;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.025em; font-weight: 650; }
h2 { font-size: clamp(1.5rem, 3.3vw, 2.1rem); }
h3 { font-size: 1.15rem; font-weight: 620; }
h4 { font-size: 1rem; font-weight: 620; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dk); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-800); }

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

strong { color: var(--ink); font-weight: 650; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------- layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 780px; }

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line-2); }
.section--navy { background: var(--navy-800); color: #cfdae4; }
.section--navy h2, .section--navy h3 { color: #fff; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 16px; height: 1.5px;
  background: var(--accent);
  flex: 0 0 16px;
}
.section--navy .eyebrow { color: var(--accent); }

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

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

/* --------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 650;
  font-family: var(--font-head);
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .06s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent); color: #04201d; }
.btn--primary:hover { background: var(--accent-dk); color: #fff; }

.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy-800); background: #fff; color: var(--navy-800); }

.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: var(--accent-lt); color: var(--navy-800); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

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

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 68px;
}

.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 42px; width: auto; }
.site-footer .logo img { height: 46px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--body); text-decoration: none; font-size: .95rem; font-weight: 550;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy-800); }
.nav a[aria-current="page"] { font-weight: 650; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-weight: 700; color: var(--navy-800); text-decoration: none; font-size: .98rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent-dk); }

.nav-toggle {
  display: none;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 9px 11px; cursor: pointer; line-height: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--navy-800);
  border-radius: 2px;
}
.nav-toggle span + span { margin-top: 4px; }

/* --------------------------------------------------------- hero */
.hero {
  padding: 76px 0 64px;
  background:
    radial-gradient(900px 380px at 12% -8%, rgba(15,181,164,.10), transparent 60%),
    linear-gradient(180deg, #fbfdfe 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line-2);
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.hero p.lede { font-size: 1.14rem; color: var(--body); max-width: 52ch; }

.hero__points { list-style: none; padding: 0; margin: 26px 0 30px; }
.hero__points li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  color: var(--ink); font-weight: 550; font-size: 1rem;
}
.hero__points li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-lt);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.hero__points li::after {
  content: ""; position: absolute; left: 5px; top: .72em;
  width: 6px; height: 3px;
  border-left: 2px solid var(--accent-dk);
  border-bottom: 2px solid var(--accent-dk);
  transform: rotate(-45deg);
}

.hero__note { font-size: .9rem; color: var(--muted); margin-top: 16px; }

/* hero card */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px;
}
.quote-card h2 { font-size: 1.15rem; margin-bottom: 4px; }
.quote-card__sub { font-size: .92rem; color: var(--muted); margin-bottom: 18px; }

.quote-list { list-style: none; margin: 0 0 18px; padding: 0; }
.quote-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line-2);
  font-size: .95rem; margin: 0;
}
.quote-list li:last-child { border-bottom: 0; }
.quote-list .label { color: var(--body); }
.quote-list .price { font-family: var(--font-mono); font-weight: 600; color: var(--ink); white-space: nowrap; }

/* --------------------------------------------------------- trust bar */
.trustbar {
  background: var(--navy-900);
  color: #8fa2b3;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trustbar ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0;
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 400; letter-spacing: .01em;
}
.trustbar li {
  margin: 0; padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.trustbar li:first-child { border-left: 0; padding-left: 0; }
.trustbar li:last-child { padding-right: 0; }

/* --------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; color: var(--body); }
.card__price {
  margin-top: auto; padding-top: 16px;
  font-family: var(--font-mono); font-weight: 600; color: var(--navy-800); font-size: 1rem;
}
.card__icon {
  width: 38px; height: 38px; border-radius: 6px;
  background: transparent; color: var(--accent-dk);
  border: 1.5px solid var(--line);
  display: grid; place-items: center; margin-bottom: 18px;
  font-size: 1.25rem;
  transition: border-color .15s ease;
}
.card:hover .card__icon { border-color: var(--accent); }

/* --------------------------------------------------------- pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }

.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; height: 100%; position: relative;
}
.plan--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  border-width: 2px;
}
.plan__badge {
  position: absolute; top: -12px; left: 26px;
  background: var(--accent); color: #04201d;
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 4px;
}
.plan__name { font-size: 1.1rem; margin-bottom: 6px; }
.plan__price {
  font-family: var(--font-mono);
  font-size: 2.15rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.02em; line-height: 1.1; margin: 10px 0 2px;
}
.plan__unit { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.plan__desc { font-size: .95rem; margin-bottom: 20px; }

.plan__features { list-style: none; padding: 0; margin: 0 0 26px; }
.plan__features li {
  position: relative; padding-left: 27px; margin-bottom: 10px;
  font-size: .95rem; color: var(--body);
}
.plan__features li::before {
  content: ""; position: absolute; left: 2px; top: .48em;
  width: 11px; height: 6px;
  border-left: 2px solid var(--accent-dk); border-bottom: 2px solid var(--accent-dk);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }

/* rate table */
.rate-table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.rate-table caption {
  text-align: left; font-weight: 700; color: var(--ink);
  font-size: 1.1rem; padding-bottom: 12px;
}
.rate-table th, .rate-table td {
  text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line-2);
  vertical-align: top;
}
.rate-table th { color: var(--ink); font-weight: 650; }
.rate-table thead th {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); border-bottom: 1px solid var(--line);
}
.rate-table td:last-child, .rate-table th:last-child { text-align: right; white-space: nowrap; }
.rate-table tbody tr:hover { background: var(--bg-alt); }
.rate-table .price { font-weight: 700; color: var(--navy-800); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 640px; }
.compare-table th, .compare-table td {
  padding: 15px 18px; border-bottom: 1px solid var(--line-2);
  text-align: left; vertical-align: top;
}
.compare-table thead th {
  font-size: .8rem; font-weight: 700; color: var(--ink);
  border-bottom: 2px solid var(--line);
}
.compare-table thead th:first-child { color: var(--muted); font-weight: 600; }
.compare-table tbody th {
  font-weight: 650; color: var(--ink); white-space: nowrap;
}
.compare-table td { color: var(--body); }
.compare-table .col-us {
  background: var(--accent-lt);
  border-left: 2px solid var(--accent); border-right: 2px solid var(--accent);
  font-weight: 600; color: var(--ink);
}
.compare-table thead .col-us {
  background: var(--navy-800); color: #fff;
  border-color: var(--navy-800); border-radius: 8px 8px 0 0;
}
.compare-table tbody tr:last-child .col-us { border-radius: 0 0 8px 8px; border-bottom: 2px solid var(--accent); }
.compare-note { font-size: .87rem; color: var(--muted); margin-top: 14px; }

/* --------------------------------------------------------- steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .95rem; margin: 0; }

/* --------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 44px 18px 0; position: relative;
  font-weight: 650; color: var(--ink); font-size: 1.03rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details > div { padding: 0 8px 20px 0; font-size: .98rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------- CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #cfdae4; padding: 60px 0; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { max-width: 56ch; margin-inline: auto; margin-bottom: 26px; color: #b9c9d6; }

/* --------------------------------------------------------- forms */
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-weight: 650; color: var(--ink);
  font-size: .93rem; margin-bottom: 6px;
}
.field .hint { font-weight: 400; color: var(--muted); font-size: .86rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15,181,164,.16);
}
.field textarea { min-height: 128px; resize: vertical; }
.hp { position: absolute; left: -9999px; }

/* --------------------------------------------------------- callouts */
.callout {
  background: var(--accent-lt); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 28px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout--warn { background: #fff7ed; border-left-color: var(--warn); }

.contact-lines { list-style: none; padding: 0; margin: 0; }
.contact-lines li {
  padding: 14px 0; border-bottom: 1px solid var(--line-2);
  display: flex; gap: 14px; align-items: flex-start; margin: 0;
}
.contact-lines li:last-child { border-bottom: 0; }
.contact-lines strong { display: block; font-size: .84rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.contact-lines a { font-size: 1.08rem; font-weight: 650; text-decoration: none; }

/* --------------------------------------------------------- misc */
.area-list { columns: 2; column-gap: 40px; list-style: none; padding: 0; }
.area-list li {
  padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px solid var(--line-2); break-inside: avoid;
}
.area-list li::before {
  content: ""; position: absolute; left: 4px; top: 1.1em;
  width: 10px; height: 2px; border-radius: 1px; background: var(--accent);
}

.breadcrumb { font-size: .87rem; color: var(--muted); padding: 16px 0 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy-800); text-decoration: underline; }

.page-head { padding: 52px 0 12px; }
.page-head h1 { margin-bottom: 14px; }
.page-head p { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }

.prose h2 { margin-top: 44px; }
.prose h3 { margin-top: 30px; }
.prose > :first-child { margin-top: 0; }

/* --------------------------------------------------------- footer */
.site-footer {
  background: var(--navy-900); color: #90a4b5;
  padding: 56px 0 30px; font-size: .93rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h4 {
  color: #fff; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #90a4b5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-blurb { max-width: 34ch; margin-top: 14px; }

.social {
  display: flex; gap: 9px; list-style: none;
  padding: 0; margin: 18px 0 0;
}
.social li { margin: 0; }
.social a {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #b9c9d6;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.social a:hover { background: var(--accent); border-color: var(--accent); color: #04201d; }
.social .icon { width: 19px; height: 19px; }
.social .s-wa:hover { background: #25d366; border-color: #25d366; color: #05331a; }
.footer-bottom {
  padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; font-size: .86rem; color: #718799;
}

/* --------------------------------------------------------- responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 8px 20px 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
  .nav a:last-child { border-bottom: 0; }
  .site-header { position: relative; }
  .header-phone { display: none; }
  .steps, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .hero { padding: 48px 0 44px; }
  .grid-4 { grid-template-columns: 1fr; }
  .area-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .header-cta .btn { width: auto; }
  .trustbar ul { justify-content: flex-start; row-gap: 6px; font-size: .72rem; }
  .trustbar li { padding: 0 12px; }
}

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

@media print {
  .site-header, .cta-band, .site-footer, .trustbar, .btn, .mobile-bar { display: none; }
}

/* ==========================================================================
   Icons — inline SVG sprite, referenced with <use href="#i-name">
   ========================================================================== */
.icon {
  width: 1em; height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
}
.icon--fill { fill: currentColor; stroke: none; }

.card__icon .icon { width: 22px; height: 22px; stroke-width: 1.6; }
.btn .icon { width: 18px; height: 18px; }
.contact-lines .icon { width: 20px; height: 20px; color: var(--accent-dk); margin-top: 3px; }

.step__num .icon { width: 17px; height: 17px; }

/* checklists that previously used a pseudo-element tick */
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px; font-size: .96rem;
}
.ticks .icon { width: 18px; height: 18px; color: var(--accent-dk); margin-top: 3px; }

/* ==========================================================================
   Credential badge (about / trust)
   ========================================================================== */
.creds {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 0; margin: 22px 0 0;
}
.creds li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-lt); color: var(--navy-800);
  border: 1px solid rgba(15,181,164,.3);
  border-radius: 100px; padding: 7px 15px;
  font-size: .87rem; font-weight: 650; margin: 0;
}
.creds .icon { width: 16px; height: 16px; color: var(--accent-dk); }

/* ==========================================================================
   Payment methods
   ========================================================================== */
.pay {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; padding: 0; margin: 0;
}
.pay li { margin: 0; line-height: 0; }
.pay__logo {
  display: block; width: 48px; height: 30px;
  border-radius: 4px;
}
.site-footer .pay__logo { opacity: .92; }
.pay__badge {
  display: inline-flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 13px;
  border-radius: 7px;
  font-size: .82rem; font-weight: 700; letter-spacing: -.01em;
  white-space: nowrap;
  border: 1px solid transparent;
}
.pay__badge .icon { width: 15px; height: 15px; }

.pay__badge--card   { background: #fff; color: var(--navy-800); border-color: var(--line); }
.pay__badge--zelle  { background: #6d1ed4; color: #fff; }
.pay__badge--cash   { background: #00c244; color: #fff; }
.pay__badge--venmo  { background: #008cff; color: #fff; }
.pay__badge--apple  { background: #000; color: #fff; }
.pay__badge--google { background: #fff; color: #3c4043; border-color: var(--line); }
.pay__badge--cashmoney { background: #fff; color: var(--navy-800); border-color: var(--line); }

.section--navy .pay__badge--card,
.section--navy .pay__badge--google,
.section--navy .pay__badge--cashmoney,
.cta-band .pay__badge--card,
.cta-band .pay__badge--google,
.cta-band .pay__badge--cashmoney { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.cta-band .pay__badge--apple { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }

.pay-note { font-size: .87rem; color: var(--muted); margin-top: 14px; }

.footer-pay { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-pay h4 { margin-bottom: 13px; }
.site-footer .pay__badge--card,
.site-footer .pay__badge--google,
.site-footer .pay__badge--cashmoney,
.site-footer .pay__badge--apple {
  background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2);
}
.site-footer .pay__badge { height: 32px; font-size: .79rem; }

/* ==========================================================================
   WhatsApp
   ========================================================================== */
.btn--whatsapp { background: #25d366; color: #05331a; }
.btn--whatsapp:hover { background: #1eb257; color: #fff; }
.cta-band .btn--whatsapp { color: #05331a; }

/* ==========================================================================
   Sticky mobile action bar
   ========================================================================== */
.mobile-bar { display: none; }

@media (max-width: 820px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    background: rgba(255,255,255,.97);
    backdrop-filter: saturate(160%) blur(10px);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 14px rgba(10,37,64,.08);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 10px 4px 11px;
    font-size: .72rem; font-weight: 650; letter-spacing: .01em;
    color: var(--navy-800); text-decoration: none;
    border-right: 1px solid var(--line-2);
  }
  .mobile-bar a:last-child { border-right: 0; }
  .mobile-bar a:active { background: var(--bg-alt); }
  .mobile-bar .icon { width: 20px; height: 20px; }
  .mobile-bar .mb-wa { color: #128c4a; }
  .mobile-bar .mb-book { color: var(--accent-dk); }
  body { padding-bottom: 66px; }
}

/* ==========================================================================
   Enhanced form
   ========================================================================== */
.form-section { margin-bottom: 30px; }
.form-section > legend,
.form-section__title {
  font-size: .78rem; font-weight: 750; text-transform: uppercase;
  letter-spacing: .09em; color: var(--accent-dk);
  padding: 0 0 14px; margin: 0; width: 100%;
}
fieldset.form-section { border: 0; padding: 0; margin-inline: 0; }
fieldset.form-section + fieldset.form-section { border-top: 1px solid var(--line-2); padding-top: 26px; }

.field .req { color: #c2410c; font-weight: 700; }
.field .optional { color: var(--muted); font-weight: 400; font-size: .85rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* validation */
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #dc2626; background: #fef2f2;
}
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.15); }
.error-msg {
  display: none; align-items: center; gap: 6px;
  color: #b91c1c; font-size: .85rem; font-weight: 600; margin-top: 6px;
}
.error-msg.is-shown { display: flex; }
.error-msg .icon { width: 14px; height: 14px; }

.form-alert {
  display: none; gap: 10px; align-items: flex-start;
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  border-radius: 8px; padding: 14px 16px; margin-bottom: 22px; font-size: .92rem;
}
.form-alert.is-shown { display: flex; }
.form-alert .icon { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 18px; }

/* choice chips (radio / checkbox groups) */
.choices { display: flex; flex-wrap: wrap; gap: 9px; }
.choices--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 560px) { .choices--grid { grid-template-columns: 1fr; } }

.choice { position: relative; margin: 0; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice span {
  display: flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); border-radius: 9px;
  padding: 12px 15px; cursor: pointer;
  font-size: .93rem; font-weight: 600; color: var(--body);
  background: #fff; transition: border-color .12s ease, background-color .12s ease;
  height: 100%;
}
.choice span .icon { width: 18px; height: 18px; color: var(--muted); }
.choice:hover span { border-color: var(--muted); }
.choice input:checked + span {
  border-color: var(--accent); background: var(--accent-lt);
  color: var(--navy-800); box-shadow: inset 0 0 0 1px var(--accent);
}
.choice input:checked + span .icon { color: var(--accent-dk); }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

/* conditional blocks */
.conditional { display: none; }
.conditional.is-shown { display: block; animation: fadeIn .18s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* consent */
.consent {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--bg-alt); border: 1px solid var(--line-2);
  border-radius: 9px; padding: 15px 16px; margin-bottom: 20px;
}
.consent input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 18px; accent-color: var(--accent-dk); }
.consent label { font-size: .89rem; color: var(--body); font-weight: 500; line-height: 1.5; }

.form-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; font-size: .82rem; color: var(--muted); margin-top: 14px;
}
.saved-note { display: none; align-items: center; gap: 6px; color: var(--good); font-weight: 600; }
.saved-note.is-shown { display: flex; }
.saved-note .icon { width: 14px; height: 14px; }

button[disabled] { opacity: .65; cursor: progress; }

/* quick-contact rail on the contact page */
.quick-contact { display: grid; gap: 10px; }
.quick-contact a {
  display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line); border-radius: 10px;
  padding: 15px 17px; text-decoration: none; background: #fff;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.quick-contact a:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.quick-contact .icon { width: 22px; height: 22px; color: var(--accent-dk); }
.quick-contact strong { display: block; color: var(--ink); font-size: .98rem; }
.quick-contact small { color: var(--muted); font-size: .84rem; }
.quick-contact .qc-wa .icon { color: #128c4a; }
