/* ===========================================================
   AnchorPoint Systems — site styles

   Colour rule, and the reason this file was rewritten:
   --teal (#33c4b3) is a FILL. It is bright enough to sit behind
   dark text and nowhere near dark enough to *be* text on white
   (3.06:1). Anything that is a word on a light background uses
   --teal-text (#0d7368, 5.72:1). Buttons say which background
   they belong on in their own class name, because the previous
   ".section .btn-ghost" descendant rule silently produced white
   text on white in the hero and navy on navy in the footer CTA.
   =========================================================== */
:root {
  --navy: #0b2545;
  --navy-2: #102e4f;

  --teal: #33c4b3;        /* fills, ticks, glows, marks */
  --teal-dk: #1ba596;     /* fill hover only */
  --teal-text: #0d7368;   /* text on light — 5.72:1 on white */

  --ink: #14202e;
  --slate: #4a5a6a;       /* 7.09:1 on white */
  --muted: #5b6d80;       /* 5.32:1 on white */
  --line: #e4e9ef;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;

  /* On dark bands */
  --on-dark-soft: #cfe0f0;
  --on-dark-dim: #b6cade;  /* 8.33:1 on the band gradient */

  --radius: 16px;
  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 14px 40px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 30px 70px -30px rgba(11, 37, 69, 0.45);
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 0 0 10px 10px; font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.96rem; letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer; border: none; white-space: nowrap; text-align: center;
}
/* Teal fill with near-black text: 7.66:1. Works on light and dark alike. */
.btn-primary { background: var(--teal); color: #04231f; box-shadow: 0 8px 22px rgba(51, 196, 179, 0.35); }
.btn-primary:hover { background: var(--teal-dk); transform: translateY(-2px); }

/* For LIGHT backgrounds. */
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* For DARK backgrounds. */
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* ── Header / nav ────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.brand-mark { width: 32px; height: 32px; flex: none; }
.brand-sys { color: var(--teal-text); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-weight: 600; font-size: 0.93rem; color: var(--slate); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-links .nav-cta {
  background: var(--navy); color: #fff; padding: 9px 18px; border-radius: 999px;
}
.nav-links .nav-cta:hover { background: var(--navy-2); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(51,196,179,0.18), transparent 60%),
    linear-gradient(180deg, #f7fafd 0%, #ffffff 100%);
  padding: 80px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--teal-text); background: rgba(13,115,104,0.10);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--navy); font-weight: 800; margin-bottom: 20px;
}
.accent { color: var(--teal-text); }
.lede { font-size: 1.12rem; color: var(--slate); max-width: 560px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-alt { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.wa-link { color: var(--teal-text); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.wa-link:hover { color: var(--navy); }
.wa-icon { width: 18px; height: 18px; fill: currentColor; flex: none; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-points li { position: relative; padding-left: 22px; color: var(--slate); font-weight: 600; font-size: 0.92rem; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 3px rgba(51,196,179,0.25);
}

/* Hero art */
.hero-art { position: relative; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; animation: orbDrift 14s ease-in-out infinite alternate; }
.orb-1 { width: 220px; height: 220px; background: rgba(51,196,179,0.45); top: 0; right: 20px; }
.orb-2 { width: 160px; height: 160px; background: rgba(11,37,69,0.18); bottom: 10px; left: 10px; animation-duration: 18s; }
@keyframes orbDrift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-10px, 14px, 0) scale(1.08); }
}
.glass-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 24px;
  box-shadow: var(--shadow-md); padding: 36px 32px; text-align: center;
}
.anchor-big { width: 110px; height: 110px; margin: 0 auto 14px; }
.glass-tag { font-weight: 700; color: var(--navy); letter-spacing: 0.01em; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-text); margin-bottom: 14px; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); font-weight: 800; max-width: 780px; }
.section-intro { font-size: 1.06rem; color: var(--slate); max-width: 700px; margin-top: 18px; }

/* Reveal on scroll. Default is visible: if JS never runs, nothing hides. */
.reveal-ready .reveal { opacity: 0; transform: translateY(16px); }
.reveal-ready .reveal.in {
  opacity: 1; transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

/* ── Services ────────────────────────────────────────────── */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.svc {
  position: relative; overflow: hidden;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.svc::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-text));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(51,196,179,0.45); }
.svc:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(51,196,179,0.18), rgba(13,115,104,0.10));
  color: var(--teal-text); margin-bottom: 18px;
  transition: transform 0.35s var(--ease);
}
.svc:hover .svc-icon { transform: translateY(-2px) rotate(-4deg) scale(1.06); }
.svc-icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.svc p { color: var(--slate); font-size: 0.95rem; }

/* ── Dark bands (consultation, payments) ─────────────────── */
.band {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--navy) 0%, #0d2c52 55%, #123a63 100%);
  color: #fff;
}
.band-glow {
  position: absolute; inset: -30% -10%;
  background:
    radial-gradient(36rem 24rem at 18% 12%, rgba(51,196,179,.22), transparent 62%),
    radial-gradient(30rem 22rem at 88% 78%, rgba(51,196,179,.14), transparent 60%),
    radial-gradient(26rem 20rem at 62% 8%,  rgba(120,180,255,.10), transparent 62%);
  filter: blur(8px);
  animation: bandDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bandDrift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(2%, -2.5%, 0) scale(1.07); }
}
.band::after {                       /* faint engineering grid */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,.05) 0 1px, transparent 1px 76px);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 76%);
}
.band .section-title { color: #fff; }
.band .section-intro { color: var(--on-dark-soft); max-width: 52ch; }
.band .eyebrow { color: var(--teal); background: rgba(51,196,179,0.14); }

.book-inner, .pay-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

/* ── Ticks ───────────────────────────────────────────────── */
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink); font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.ticks-dark { margin-top: 26px; }
.ticks-dark li { color: var(--on-dark-soft); }
.book-credit {
  margin-top: 26px; display: inline-block; font-weight: 600; color: #fff;
  background: rgba(51,196,179,0.16); border: 1px solid rgba(51,196,179,0.45);
  padding: 10px 18px; border-radius: 999px; font-size: 0.95rem;
}

.assurance { list-style: none; margin: 26px 0 0; display: grid; gap: 12px; }
.assurance li { display: flex; align-items: center; gap: 12px; color: #d5e3f1; font-size: 15px; }
.assurance .tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(51,196,179,.16); border: 1px solid rgba(51,196,179,.5);
  position: relative;
}
.assurance .tick::after {
  content: ""; position: absolute; left: 7px; top: 4px;
  width: 5px; height: 9px; border: solid var(--teal);
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.pay-aside { margin-top: 24px; color: var(--on-dark-dim); font-size: 0.95rem; }
.pay-aside a { color: var(--teal); font-weight: 700; text-decoration: underline; }
.pay-aside a:hover { color: #fff; }

/* ── Forms on dark (glass) ───────────────────────────────── */
.glass-form {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.65);
  display: grid; gap: 16px;
}
.glass-sheen {
  position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.10), transparent);
  animation: sheen 7s ease-in-out infinite; pointer-events: none;
}
@keyframes sheen {
  0%, 65% { left: -60%; }
  100%    { left: 120%; }
}
.price-tag {
  position: relative; z-index: 1; text-align: center;
  padding: 18px 16px; border-radius: 14px;
  background: rgba(51,196,179,.12); border: 1px solid rgba(51,196,179,.4);
}
.price-figure { display: block; font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.price-meta { display: block; margin-top: 4px; font-size: 13px; color: var(--on-dark-dim); }

.field { display: grid; gap: 7px; position: relative; z-index: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 1; }
.field-label { font-size: 13px; font-weight: 600; color: #cfe0f0; letter-spacing: .01em; }
.field-label .opt { color: #a8bed3; font-weight: 400; }
.field-hint { font-size: 12.5px; color: var(--on-dark-dim); }
.glass-form input, .glass-form select, .glass-form textarea {
  width: 100%; padding: 13px 15px; font-size: 15px; font-family: inherit; color: #fff;
  background: rgba(8,26,48,.55);
  border: 1px solid rgba(255,255,255,.18); border-radius: 11px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.glass-form textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.glass-form input::placeholder, .glass-form textarea::placeholder { color: #93a9bf; }
.glass-form input:focus, .glass-form select:focus, .glass-form textarea:focus {
  outline: none; border-color: var(--teal); background: rgba(8,26,48,.75);
  box-shadow: 0 0 0 4px rgba(51,196,179,.18);
}
.amount-row { display: grid; grid-template-columns: 104px 1fr; gap: 10px; }
.amount-row input { font-size: 26px; font-weight: 700; letter-spacing: -.02em; padding: 10px 15px; }
.amount-row select { cursor: pointer; }
.glass-form select option { background: var(--navy); color: #fff; }

/* Tabs inside the payment card */
.tabs {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: rgba(8,26,48,.45); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 5px;
}
.tab {
  padding: 10px 8px; border: none; border-radius: 9px; cursor: pointer;
  font: inherit; font-size: 13.5px; font-weight: 700;
  background: transparent; color: var(--on-dark-dim);
  transition: background .2s, color .2s;
}
.tab:hover { color: #fff; }
.tab.is-active { background: var(--teal); color: #04231f; }
.pane { display: grid; gap: 16px; position: relative; z-index: 1; }
.pane[hidden] { display: none; }

.invoice-found {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 15px; border-radius: 11px;
  background: rgba(51,196,179,.13); border: 1px solid rgba(51,196,179,.45);
  animation: rise .3s var(--ease);
}
.invoice-desc { color: var(--on-dark-soft); font-size: 14px; }
.invoice-amount { color: #fff; font-weight: 800; font-size: 17px; white-space: nowrap; }

.form-error {
  margin: 0; padding: 11px 14px; border-radius: 10px; font-size: 14px;
  background: rgba(209,73,91,.16); border: 1px solid rgba(209,73,91,.5); color: #ffd9de;
  position: relative; z-index: 1;
}
.form-ok {
  margin: 0; padding: 11px 14px; border-radius: 10px; font-size: 14px;
  background: rgba(51,196,179,.14); border: 1px solid rgba(51,196,179,.5); color: var(--teal-text);
}
.form-submit {
  position: relative; z-index: 1; width: 100%; justify-content: center;
  display: inline-flex; align-items: center; gap: 10px; margin-top: 4px;
}
.form-submit .spinner { display: none; }
.form-submit.is-busy .form-submit-label { opacity: .55; }
.form-submit.is-busy .spinner { display: inline-block; }
.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.spinner-dark { border-color: rgba(4,35,31,.3); border-top-color: #04231f; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-secure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 2px 0 0; font-size: 12.5px; color: var(--on-dark-dim); position: relative; z-index: 1;
}
.lock { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Payment form disabled until the payment service is reachable. */
.glass-form.is-unavailable { opacity: .78; }
.glass-form.is-unavailable input,
.glass-form.is-unavailable select { cursor: not-allowed; }
.glass-form.is-unavailable .form-submit { cursor: not-allowed; filter: grayscale(.5); }

/* ── How we work ─────────────────────────────────────────── */
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px; position: relative;
}
.steps::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(51,196,179,.25));
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--teal);
  color: var(--teal-text); font-weight: 800; font-size: 1.05rem;
  margin-bottom: 18px; box-shadow: 0 6px 18px rgba(51,196,179,.22);
}
.section-alt .step-num { background: #fff; }
.step h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 0.95rem; }

/* ── Pricing ─────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tier h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 12px; }
.tier-figure { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); line-height: 1.1; }
.tier-per { font-size: 0.95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.tier-note { color: var(--slate); font-size: 0.95rem; margin-top: 12px; flex: 1; }
.tier-cta { margin-top: 22px; align-self: flex-start; }

.tier-feature {
  position: relative;
  background: linear-gradient(165deg, var(--navy), #123a63);
  border-color: transparent; color: #fff;
  box-shadow: 0 26px 60px -26px rgba(11,37,69,.6);
}
.tier-feature::before {
  content: ""; position: absolute; inset: -1px; border-radius: 20px; pointer-events: none;
  background: radial-gradient(20rem 12rem at 80% 0%, rgba(51,196,179,.28), transparent 65%);
}
.tier-feature > * { position: relative; z-index: 1; }
.tier-feature h3, .tier-feature .tier-figure { color: #fff; }
.tier-feature .tier-note { color: var(--on-dark-soft); }
.tier-flag {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em;
  text-transform: uppercase; color: #04231f; background: var(--teal);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}

/* ── Case studies ────────────────────────────────────────── */
.case-grid {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px;
  align-items: center; margin-top: 40px;
}
.case-grid.reverse .shots { order: -1; }
.case-kicker { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal-text); margin-bottom: 10px; }
.case-copy h3 { font-size: 1.7rem; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
.case-lede { color: var(--slate); font-size: 1.02rem; }
.case-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.case-tags li {
  font-size: 0.83rem; font-weight: 600; color: var(--navy);
  background: rgba(51,196,179,0.14); border: 1px solid rgba(13,115,104,0.18);
  padding: 5px 13px; border-radius: 999px;
}
.case-line { margin-top: 20px; color: var(--muted); font-size: 0.95rem; }
.case-line a { color: var(--teal-text); font-weight: 700; }
.case-line a:hover { color: var(--navy); }

.also { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.also-head { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.also-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 26px; }
.also-list li { display: grid; gap: 3px; padding-left: 16px; border-left: 2px solid var(--teal); }
.also-list strong { color: var(--navy); font-size: 0.98rem; }
.also-list span { color: var(--muted); font-size: 0.89rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 860px; }
.faq { margin-top: 40px; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-weight: 700; color: var(--navy); font-size: 1.03rem;
  transition: color 0.2s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--teal-text); }
.qa summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--teal-text); border-bottom: 2.5px solid var(--teal-text);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.qa[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.qa p { color: var(--slate); padding: 0 20px 22px 0; max-width: 70ch; animation: rise 0.3s var(--ease); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 32px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 15px 18px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
a.contact-card:hover { transform: translateX(3px); box-shadow: var(--shadow-md); border-color: rgba(51,196,179,0.5); }
.contact-card svg { width: 22px; height: 22px; color: var(--teal-text); flex: none; fill: none; }
.contact-card .wa-icon { fill: currentColor; }
.contact-card span { display: grid; gap: 1px; font-size: 0.94rem; color: var(--slate); }
.contact-card strong { color: var(--navy); font-size: 0.85rem; }

/* Form on a light background */
.panel-form {
  display: grid; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 30px; box-shadow: var(--shadow-md);
}
.panel-form .field-label { color: var(--navy); }
.panel-form .field-label .opt { color: var(--muted); }
.panel-form input, .panel-form select, .panel-form textarea {
  width: 100%; padding: 13px 15px; font-size: 15px; font-family: inherit; color: var(--ink);
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 11px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.panel-form textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.panel-form input::placeholder, .panel-form textarea::placeholder { color: var(--muted); }
.panel-form input:focus, .panel-form select:focus, .panel-form textarea:focus {
  outline: none; border-color: var(--teal-text); background: #fff;
  box-shadow: 0 0 0 4px rgba(51,196,179,.18);
}
.panel-form .form-error { background: #fdecef; border-color: #e5a3ad; color: #8c1c2e; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@keyframes rise { from { opacity: 0; transform: translateY(8px); } }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 56px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
}
.footer-brand { max-width: 300px; }
.brand-footer { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-blurb { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 4px;
}
.footer-col a { color: rgba(255,255,255,0.78); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-addr { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.6; }
.copyright {
  grid-column: 1 / -1; font-size: 0.85rem; color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════
   Product screenshots — real app screens in a staggered stack
   ══════════════════════════════════════════════════════════ */
.shots {
  position: relative;
  display: grid; place-items: center;
  min-height: 440px;
  perspective: 1400px;
}
.shots-glow {
  position: absolute; width: 78%; height: 62%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(51,196,179,.34), transparent 72%);
  filter: blur(46px);
  animation: shotsPulse 9s ease-in-out infinite alternate;
}
.shots-np .shots-glow {
  background: radial-gradient(closest-side, rgba(244,162,58,.30), transparent 72%);
}
@keyframes shotsPulse {
  from { transform: scale(.94); opacity: .8; }
  to   { transform: scale(1.08); opacity: 1; }
}

.shot {
  position: absolute; margin: 0;
  width: 158px; border-radius: 22px; overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11,37,69,.10);
  box-shadow: 0 26px 60px -22px rgba(11,37,69,.45), 0 2px 6px rgba(11,37,69,.10);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  will-change: transform;
}
.shot img { display: block; width: 100%; height: auto; }

/* Fan the two rear screens out behind a larger hero screen. */
.shot-b1     { transform: translateX(-104px) translateY(-12px) rotate(-8deg); z-index: 1; }
.shot-b2     { transform: translateX(104px)  translateY(-12px) rotate(8deg);  z-index: 1; }
.shot-front  { width: 190px; z-index: 3; transform: translateY(18px);
               box-shadow: 0 40px 80px -26px rgba(11,37,69,.55), 0 3px 8px rgba(11,37,69,.14); }

/* Gentle idle drift, offset per screen so the stack never moves as one block. */
.shot-b1    { animation: floatA 11s ease-in-out infinite; }
.shot-front { animation: floatB 9s  ease-in-out infinite; }
.shot-b2    { animation: floatC 13s ease-in-out infinite; }
@keyframes floatA {
  0%,100% { transform: translateX(-104px) translateY(-12px) rotate(-8deg); }
  50%     { transform: translateX(-104px) translateY(-24px) rotate(-9deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(18px); }
  50%     { transform: translateY(4px); }
}
@keyframes floatC {
  0%,100% { transform: translateX(104px) translateY(-12px) rotate(8deg); }
  50%     { transform: translateX(104px) translateY(0) rotate(9deg); }
}

/* Hovering the group spreads the fan and brings the hero forward. */
.shots:hover .shot-b1    { transform: translateX(-134px) translateY(-20px) rotate(-11deg); animation-play-state: paused; }
.shots:hover .shot-b2    { transform: translateX(134px)  translateY(-20px) rotate(11deg);  animation-play-state: paused; }
.shots:hover .shot-front { transform: translateY(4px) scale(1.035); animation-play-state: paused; }

/* ── Result modal ────────────────────────────────────────── */
.pay-result { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; }
.pay-result[hidden] { display: none; }
.pay-modal-backdrop {
  position: absolute; inset: 0; background: rgba(6,18,34,.72);
  backdrop-filter: blur(5px); animation: fade .25s var(--ease);
}
@keyframes fade { from { opacity: 0; } }
@keyframes panelRise { from { opacity: 0; transform: translateY(18px) scale(.985); } }

.pay-result-panel {
  position: relative; width: min(430px, 92vw); background: #fff;
  border-radius: 18px; padding: 38px 32px; text-align: center;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.55);
  animation: panelRise .35s var(--ease);
}
.pay-result-icon {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 30px; font-weight: 700; color: #fff;
}
.pay-result-icon.ok   { background: linear-gradient(135deg, var(--teal), var(--teal-dk)); }
.pay-result-icon.warn { background: linear-gradient(135deg, #f0b429, #b87900); }
.pay-result-icon.bad  { background: linear-gradient(135deg, #e05c6e, #c23a4d); }
.pay-result-panel h3 { margin: 0 0 8px; font-size: 21px; color: var(--ink); }
.pay-result-panel p  { margin: 0 0 6px; color: var(--slate); font-size: 15px; line-height: 1.55; }
.pay-result-ref {
  font-family: ui-monospace, Menlo, monospace; font-size: 12px !important;
  color: var(--muted) !important; margin: 12px 0 20px !important;
}
body.pay-locked { overflow: hidden; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .also-list { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { max-width: none; grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .hero-grid, .case-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; min-height: 0; }
  .book-inner, .pay-inner { grid-template-columns: 1fr; gap: 34px; }
  .case-grid.reverse .shots { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .steps::before { display: none; }
  .tiers { grid-template-columns: 1fr; }
  .tier-cta { align-self: stretch; }
  .shots { min-height: 400px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform 0.35s var(--ease);
    /* visibility, not just pointer-events: a closed menu must be out of the
       tab order too, or a keyboard user lands in an invisible list of links. */
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { text-align: center; margin-top: 12px; border-bottom: none; }
  .nav-toggle { display: flex; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .services, .also-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .glass-form, .panel-form { padding: 22px; }
  .shots { min-height: 340px; }
  .shot { width: 122px; }
  .shot-front { width: 146px; }
  .shot-b1, .shots:hover .shot-b1 { transform: translateX(-70px) translateY(-10px) rotate(-8deg); }
  .shot-b2, .shots:hover .shot-b2 { transform: translateX(70px)  translateY(-10px) rotate(8deg); }
  .shot-b1, .shot-b2, .shot-front { animation: none; }
  .shots:hover .shot-front { transform: translateY(14px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .orb, .band-glow, .glass-sheen, .spinner, .shot, .shots-glow,
  .pay-result-panel, .pay-modal-backdrop, .invoice-found, .qa p {
    animation: none !important;
  }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
  .shots:hover .shot-b1, .shots:hover .shot-b2, .shots:hover .shot-front { transition: none; }
}
