/* ============================================================
   Presetvant Studio — design tokens
   ============================================================ */
:root {
  --ink:        #0b1220;
  --ink-2:      #1a2334;
  --body:       #4a5568;
  --muted:      #6b7688;
  --line:       #e6eaf1;
  --line-soft:  #eef1f6;
  --surface:    #ffffff;
  --tint:       #f6f8fc;

  --green:      #00a37a;
  --green-dark: #007f5f;
  --green-soft: #e6f7f1;
  --indigo:     #5b6cff;
  --indigo-soft:#ecefff;
  --amber:      #f5a524;
  --amber-soft: #fef4e2;
  --pink:       #f2597a;
  --pink-soft:  #fdecf0;
  --danger:     #d92d20;
  --danger-soft:#fef3f2;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(11, 18, 32, .06), 0 1px 3px rgba(11, 18, 32, .04);
  --shadow:    0 4px 12px rgba(11, 18, 32, .06), 0 12px 28px rgba(11, 18, 32, .05);
  --shadow-lg: 0 18px 40px rgba(11, 18, 32, .10), 0 4px 12px rgba(11, 18, 32, .05);
  --shadow-xl: 0 40px 80px rgba(11, 18, 32, .16), 0 12px 28px rgba(11, 18, 32, .08);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Plus Jakarta Sans', var(--sans);

  --container: 1440px;
  --header-h: 72px;
  --ease: cubic-bezier(.22, .68, 0, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.3rem, 4.7vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 2.7rem); }
h3 { font-size: 1.175rem; font-weight: 700; letter-spacing: -.014em; }
h4 { font-size: .95rem; font-weight: 700; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-dark); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--green); }

img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { color: var(--ink); font-weight: 650; }

:focus-visible {
  outline: 3px solid rgba(0, 163, 122, .45);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-size: .9rem;
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.grad {
  white-space: nowrap; /* keep gradient phrases from splitting across lines */
  background: linear-gradient(100deg, var(--green) 0%, #12b886 45%, var(--indigo) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: .775rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--sans);
  font-size: .925rem;
  font-weight: 600;
  letter-spacing: -.005em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn[disabled] { cursor: not-allowed; }

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 6px 18px rgba(0, 127, 95, .26);
}
.btn--primary:hover { box-shadow: 0 12px 28px rgba(0, 127, 95, .34); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: #cfd6e2; background: var(--tint); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--body);
  font-weight: 500;
  padding-inline: 12px;
}
.btn--ghost:hover { --btn-fg: var(--ink); background: var(--tint); }

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}

.btn--lg { padding: 14px 26px; font-size: 1rem; }
.btn--block { width: 100%; }

/* loading state */
.btn__spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2.2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.is-loading { pointer-events: none; opacity: .82; }
.btn.is-loading .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Announcement + header
   ============================================================ */
.announce {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  font-size: .825rem;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.announce p { margin: 0; }
.announce a { color: #fff; font-weight: 600; }
.announce a:hover { color: #6ee7b7; }
.announce__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .7);
  animation: pulse 2.4s infinite;
  flex: none;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(11, 18, 32, .05);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.03em;
  margin-right: auto;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 127, 95, .3);
}
.brand__mark svg { width: 21px; height: 21px; }
.brand--light, .brand--light:hover { color: #fff; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 8px 13px;
  border-radius: 9px;
  color: var(--body);
  font-size: .925rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: var(--tint); }
.nav a.is-active { color: var(--ink); font-weight: 600; }
.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}

.header__actions { display: flex; align-items: center; gap: 8px; }
.header__phone { font-size: .875rem; }

/* Stand-in for the header CTA once that whole group is dropped on small screens. */
.nav__cta { display: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}
.burger span {
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s ease;
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 86px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 62%);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -280px; right: -180px;
  width: 780px; height: 780px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 163, 122, .16), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(91, 108, 255, .14), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 18, 32, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 18, 32, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 22% 32%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 22% 32%, #000 0%, transparent 68%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 500;
  color: var(--body);
  margin-bottom: 22px;
}
.pill__badge {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.hero__lede {
  font-size: clamp(1.03rem, 1.5vw, 1.15rem);
  max-width: 33em;
  margin-bottom: 30px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: .89rem;
  color: var(--muted);
}
.hero__ticks li { display: flex; align-items: center; gap: 8px; }
.hero__ticks li::before {
  content: '';
  width: 16px; height: 16px;
  flex: none;
  border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3.8 8.3 2.6 2.6 5.8-6' stroke='%23007f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* --- browser mockup --- */
.hero__visual { position: relative; }

.mock {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2.5deg);
  transition: transform .7s var(--ease);
}
.hero__visual:hover .mock { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }

.mock__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--tint);
  border-bottom: 1px solid var(--line-soft);
}
.mock__dots { display: flex; gap: 5px; }
.mock__dots i { width: 9px; height: 9px; border-radius: 50%; background: #d7dde8; }
.mock__dots i:first-child { background: #ffbdad; }
.mock__dots i:nth-child(2) { background: #ffe0a3; }
.mock__url {
  flex: 1;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-soft);
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
}

.mock__body { padding: 16px; }
.mock__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.mock__logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--ink);
}
.mock__links { display: flex; gap: 10px; margin-left: auto; }
.mock__links i { width: 30px; height: 6px; border-radius: 3px; background: #e9edf4; }
.mock__cart { color: var(--ink); }
.mock__cart svg { width: 17px; height: 17px; }

.mock__hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 16px;
  padding: 18px 0;
}
.mock__img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: linear-gradient(150deg, #dff3ec 0%, #e8ecff 55%, #f4f0ff 100%);
  overflow: hidden;
}
.mock__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .75) 50%, transparent 62%);
  transform: translateX(-100%);
  animation: sweep 4.2s ease-in-out infinite;
}
@keyframes sweep { 0%, 55% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.mock__info { display: flex; flex-direction: column; gap: 9px; padding-top: 4px; }
.mock__tag {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mock__title { height: 11px; border-radius: 4px; background: #dfe4ee; }
.mock__title--short { width: 62%; }
.mock__btn {
  margin-top: 4px;
  padding: 9px 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  text-align: center;
}
.mock__meta { height: 7px; width: 74%; border-radius: 4px; background: #eaeef5; }

.mock__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock__card {
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f2f5fa 0%, #eaf0f8 100%);
}

/* floating badges */
.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  animation: bob 5.5s ease-in-out infinite;
}
.float strong {
  display: block;
  font-family: var(--display);
  font-size: .875rem;
  line-height: 1.25;
}
.float small { font-size: .715rem; color: var(--muted); }
.float--score { left: -26px; bottom: 60px; }
.float--conv { right: -14px; top: 34px; animation-delay: -2.6s; }
.float--conv svg { width: 26px; height: 26px; color: var(--green); }
.float--conv strong { font-size: 1.05rem; color: var(--green-dark); }

.float__ring {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 96%, #e8edf4 96% 100%);
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 800;
  color: var(--ink);
}
.float__ring span {
  display: grid;
  place-items: center;
  width: 33px; height: 33px;
  border-radius: 50%;
  background: #fff;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* --- stats strip --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: clamp(48px, 7vw, 76px);
  padding: 26px 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__item { text-align: center; }
.stats__item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.1;
}
.stats__item span {
  font-size: .835rem;
  color: var(--muted);
}
/* ============================================================
   Inner page header (contact page)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(38px, 5vw, 62px) 0 clamp(30px, 4vw, 46px);
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  top: -320px; right: -160px;
  width: 700px; height: 700px;
  background:
    radial-gradient(circle at 35% 40%, rgba(0, 163, 122, .14), transparent 62%),
    radial-gradient(circle at 70% 60%, rgba(91, 108, 255, .12), transparent 64%);
  filter: blur(18px);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 1100px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin-bottom: .35em; }
.page-hero__lede { font-size: clamp(1.02rem, 1.4vw, 1.13rem); max-width: 40em; margin-bottom: 32px; }

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .84rem;
  color: var(--muted);
}
.crumbs a { color: var(--muted); font-weight: 500; }
.crumbs a:hover { color: var(--green-dark); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 600; }

.quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quick__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.quick__item strong { display: block; font-size: .88rem; margin-bottom: 2px; }
.quick__item small { display: block; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.quick__item a { font-size: .845rem; font-weight: 600; overflow-wrap: break-word; }
.quick__ico {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  flex: none;
  border-radius: 11px;
  background: var(--green-soft);
  color: var(--green-dark);
}
.quick__ico svg { width: 19px; height: 19px; }

/* Numbered "what to include" list on the contact page */
.checklist {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
  counter-reset: item;
}
.checklist li {
  position: relative;
  padding-left: 34px;
  counter-increment: item;
}
.checklist li::before {
  content: counter(item);
  position: absolute;
  left: 0; top: 1px;
  display: grid;
  place-items: center;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 800;
}
.checklist strong { display: block; font-size: .91rem; }
.checklist small { display: block; font-size: .855rem; color: var(--muted); line-height: 1.55; }

/* Inline pointer between the two forms */
.notice {
  display: flex;
  gap: 11px;
  padding: 14px 16px;
  margin-bottom: 26px;
  border: 1px solid #dfe4ff;
  border-radius: var(--radius-sm);
  background: var(--indigo-soft);
}
.notice__ico { flex: none; color: var(--indigo); }
.notice__ico svg { width: 19px; height: 19px; display: block; }
.notice p { margin: 0; font-size: .865rem; line-height: 1.6; color: var(--ink-2); }
.notice a { color: var(--indigo); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   Support policy
   ============================================================ */
.policy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.policy__card {
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.policy__card h3 { font-size: 1.06rem; margin-bottom: 16px; }
.policy__card ul { list-style: none; display: grid; gap: 11px; }
.policy__card li {
  position: relative;
  padding-left: 27px;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--body);
}
.policy__card li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
}
.policy__card--yes li::before {
  background-color: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3.6 8.4 2.7 2.7 6.1-6.4' stroke='%23007f5f' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.policy__card--no li::before {
  background-color: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 3.8v8.4M3.8 8h8.4' stroke='%23b7791f' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E");
}
.policy__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: .835rem;
  line-height: 1.6;
  color: var(--muted);
}
.policy__sla {
  margin-top: 22px;
  padding: 17px 22px;
  border: 1px solid #b6e3d3;
  border-radius: var(--radius);
  background: var(--green-soft);
  font-size: .93rem;
  line-height: 1.6;
  color: var(--green-dark);
  text-align: center;
}
.policy__sla strong { color: var(--green-dark); }

@media (max-width: 780px) {
  .policy { grid-template-columns: 1fr; }
  .policy__card { padding: 24px 22px 26px; }
}

/* ============================================================
   404
   ============================================================ */
.notfound { padding: clamp(60px, 10vw, 130px) 0; text-align: center; }
.notfound__inner { max-width: 560px; margin-inline: auto; }
.notfound__code {
  display: block;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(120deg, var(--green) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.notfound p { font-size: 1.03rem; margin-bottom: 28px; }
.notfound__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Section shells
   ============================================================ */
.section { padding: clamp(60px, 8.5vw, 108px) 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--ink); }

.section__head {
  max-width: 660px;
  margin: 0 auto clamp(38px, 5vw, 56px);
  text-align: center;
}
.section__head p { font-size: 1.045rem; }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: rgba(255, 255, 255, .68); }
.section__head--light .eyebrow { color: #5ee9b5; }

/* ============================================================
   Theme feature grid
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #d9e0ea;
}
.card--wide { grid-column: span 2; }
.card p { font-size: .945rem; }

.card__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.card__icon svg { width: 23px; height: 23px; }
.card__icon--green  { background: var(--green-soft);  color: var(--green-dark); }
.card__icon--indigo { background: var(--indigo-soft); color: #3d4ce0; }
.card__icon--amber  { background: var(--amber-soft);  color: #b06f00; }
.card__icon--pink   { background: var(--pink-soft);   color: #d13a5e; }

.bars { margin-top: 20px; display: grid; gap: 12px; }
.bars__row {
  display: grid;
  grid-template-columns: 92px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
}
.bars__row b { font-family: var(--display); color: var(--ink); text-align: right; }
.bars__row--muted, .bars__row--muted b { color: var(--muted); }
.bars__track {
  height: 8px;
  border-radius: 999px;
  background: var(--line-soft);
  overflow: hidden;
}
.bars__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0%, #16c79a 100%);
  transition: width 1.3s var(--ease);
}
.bars__fill--fast { --w: 96%; }
.bars__fill--muted { --w: 44%; background: #cbd3e0; }
.is-visible .bars__fill { width: var(--w); }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tags li {
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--tint);
  border: 1px solid var(--line-soft);
  font-size: .78rem;
  font-weight: 500;
  color: var(--body);
}

/* ============================================================
   Services
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  position: relative;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service:hover::before { transform: scaleX(1); }

.service__num {
  display: block;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 14px;
}
.service p { font-size: .94rem; margin-bottom: 16px; }
.service ul { display: grid; gap: 7px; }
.service li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  color: var(--muted);
}
.service li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

/* ============================================================
   Process steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step { position: relative; padding-top: 8px; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px; left: 52px; right: -22px;
  height: 2px;
  background: linear-gradient(90deg, var(--line) 40%, transparent);
}
.step__dot {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-weight: 800;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}
.step p { font-size: .93rem; }

/* ============================================================
   Testimonials (dark)
   ============================================================ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease;
}
.quote:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .18);
}
.quote__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.quote__stars span {
  width: 15px; height: 15px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.quote blockquote {
  flex: 1; /* keeps the attributions aligned across cards of unequal length */
  margin: 0 0 22px;
  font-size: .975rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, .82);
}
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption strong { display: block; color: #fff; font-size: .9rem; }
.quote figcaption small { font-size: .795rem; color: rgba(255, 255, 255, .55); }
.avatar {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 163, 122, .9), rgba(91, 108, 255, .85));
  color: #fff;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 700;
}

/* ============================================================
   Support section
   ============================================================ */
.section--support {
  position: relative;
  background:
    radial-gradient(1000px 520px at 88% -8%, rgba(0, 163, 122, .09), transparent 60%),
    radial-gradient(900px 460px at 4% 105%, rgba(91, 108, 255, .08), transparent 62%),
    #fff;
}
.support {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: start;
}
.support__aside { position: sticky; top: calc(var(--header-h) + 28px); }
.support__aside h2 { font-size: clamp(1.75rem, 3.1vw, 2.35rem); }
.support__aside > p { font-size: 1.02rem; margin-bottom: 28px; }

.support__list { display: grid; gap: 18px; margin-bottom: 28px; }
.support__list li { display: flex; gap: 13px; }
.support__list strong { display: block; font-size: .93rem; }
.support__list small { font-size: .855rem; color: var(--muted); line-height: 1.55; display: block; }
.support__ico {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}
.support__ico svg { width: 20px; height: 20px; }

.support__direct {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--tint);
  border: 1px solid var(--line-soft);
}
.support__direct p { font-size: .84rem; color: var(--muted); margin-bottom: 3px; }
.support__direct a { font-family: var(--display); font-weight: 700; font-size: 1rem; }

.support__panel {
  position: relative;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-xl);
}
.support__panel::before {
  content: '';
  position: absolute;
  inset: -1px -1px auto;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg, var(--green), #16c79a 45%, var(--indigo));
}

/* ============================================================
   Form
   ============================================================ */
.form__head { margin-bottom: 24px; }
.form__head h3 { font-size: 1.32rem; margin-bottom: 4px; }
.form__head p { font-size: .875rem; color: var(--muted); }

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field label,
.field__label {
  font-size: .855rem;
  font-weight: 600;
  color: var(--ink-2);
}
.req { color: var(--danger); font-weight: 700; }
.opt { color: var(--muted); font-weight: 400; font-size: .95em; }

.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fdfefe;
  font-family: var(--sans);
  font-size: .94rem;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field ::placeholder { color: #a3adbe; }

.field input:hover, .field textarea:hover, .field select:hover { border-color: #ccd4e0; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 163, 122, .13);
}

.select { position: relative; }
.select svg {
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.select select { padding-right: 38px; cursor: pointer; }

/* error state */
.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: var(--danger);
  background: var(--danger-soft);
}
.field.has-error input:focus,
.field.has-error textarea:focus,
.field.has-error select:focus {
  box-shadow: 0 0 0 4px rgba(217, 45, 32, .12);
}
.field__error {
  display: none;
  margin: 0;
  font-size: .8rem;
  font-weight: 500;
  color: var(--danger);
}
.field.has-error .field__error { display: flex; align-items: center; gap: 6px; }
.field.has-error .field__error::before {
  content: '';
  width: 14px; height: 14px;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='6.6' stroke='%23d92d20' stroke-width='1.5'/%3E%3Cpath d='M8 5v4' stroke='%23d92d20' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='11.2' r='.85' fill='%23d92d20'/%3E%3C/svg%3E") center / contain no-repeat;
}
.field.is-valid input:not(:focus),
.field.is-valid textarea:not(:focus),
.field.is-valid select:not(:focus) {
  border-color: #b6e3d3;
}

.field__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-height: 18px;
}
.counter-text { font-size: .765rem; color: var(--muted); margin-left: auto; flex: none; }
.counter-text.is-near { color: var(--amber); font-weight: 600; }

/* chips (priority radios) */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; cursor: pointer; }
/* Kept in the accessibility tree and focusable, but painted by the sibling span. */
.chip input {
  position: absolute;
  width: 1px; height: 1px;
  margin: 0;
  opacity: 0;
}
.chip span {
  display: inline-block;
  padding: 9px 15px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fdfefe;
  font-size: .855rem;
  font-weight: 500;
  color: var(--body);
  transition: all .18s ease;
}
.chip:hover span { border-color: #c9d2df; background: var(--tint); }
.chip input:checked + span {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
}
.chip input:focus-visible + span {
  outline: 3px solid rgba(0, 163, 122, .4);
  outline-offset: 2px;
}

/* checkbox */
.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  font-weight: 400 !important;
}
.check input { position: absolute; width: 1px; height: 1px; margin: 0; opacity: 0; }
.check__box {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  flex: none;
  margin-top: 1px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #fff;
  transition: all .18s ease;
}
.check__box svg { width: 13px; height: 13px; opacity: 0; transform: scale(.6); transition: all .18s var(--ease); }
.check input:checked + .check__box {
  background: var(--green);
  border-color: var(--green);
}
.check input:checked + .check__box svg { opacity: 1; transform: scale(1); }
.check input:focus-visible + .check__box {
  outline: 3px solid rgba(0, 163, 122, .4);
  outline-offset: 2px;
}
.check__text { font-size: .875rem; color: var(--body); line-height: 1.55; }
.has-error .check__box { border-color: var(--danger); background: var(--danger-soft); }

/* helper text under a label */
.field__hint {
  margin: -1px 0 0;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--muted);
}
.field__hint code {
  padding: 1px 5px;
  border-radius: 5px;
  background: var(--tint);
  border: 1px solid var(--line-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
  color: var(--ink-2);
  white-space: nowrap;
}

/* screenshot upload */
.drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 24px 18px;
  border: 1.5px dashed #ccd4e0;
  border-radius: var(--radius-sm);
  background: #fdfefe;
  text-align: center;
  transition: border-color .18s ease, background .18s ease;
}
/* The input covers the whole zone so clicks and native drops both land on it. */
.drop__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.drop__ico {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
}
.drop__ico svg { width: 18px; height: 18px; }
.drop__text { font-size: .875rem; color: var(--muted); }
.drop__text strong { color: var(--green-dark); font-weight: 600; }

.drop:hover { border-color: var(--green); background: #fbfefd; }
.drop.is-dragging {
  border-color: var(--green);
  border-style: solid;
  background: var(--green-soft);
}
.drop:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 163, 122, .13);
}
.field.has-error .drop { border-color: var(--danger); background: var(--danger-soft); }

.files {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
}
.files__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.files__thumb {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 7px;
  object-fit: cover;
  background: var(--tint);
}
.files__meta { display: flex; flex-direction: column; min-width: 0; }
.files__meta strong {
  font-size: .84rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.files__meta small { font-size: .75rem; color: var(--muted); }
.files__remove {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: all .16s ease;
}
.files__remove svg { width: 13px; height: 13px; }
.files__remove:hover {
  border-color: #f5b5ae;
  background: var(--danger-soft);
  color: var(--danger);
}
.files__remove:focus-visible {
  outline: 3px solid rgba(0, 163, 122, .4);
  outline-offset: 2px;
}

/* honeypot — visually removed but not display:none (bots detect that) */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form__foot { margin-top: 26px; }
.form__note {
  margin-top: 12px;
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}

/* alert */
/* An author display value beats the UA rule for [hidden], so restate it. */
.alert[hidden] { display: none; }
.alert {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 15px 17px;
  border-radius: var(--radius);
  border: 1px solid var(--danger);
  background: var(--danger-soft);
  animation: slide-in .3s var(--ease);
}
.alert__icon {
  width: 20px; height: 20px;
  flex: none;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='8.4' stroke='%23d92d20' stroke-width='1.6'/%3E%3Cpath d='M10 6v5' stroke='%23d92d20' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='10' cy='13.9' r='1' fill='%23d92d20'/%3E%3C/svg%3E") center / contain no-repeat;
}
.alert__title { display: block; font-size: .91rem; color: #912018; margin-bottom: 2px; }
.alert__text { font-size: .855rem; color: #b42318; margin: 0; }
.alert--warn { border-color: var(--amber); background: var(--amber-soft); }
.alert--warn .alert__title { color: #8a5000; }
.alert--warn .alert__text { color: #a3620a; }
@keyframes slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* success panel */
.success {
  text-align: center;
  padding: 14px 4px 6px;
  animation: pop .45s var(--ease);
}
.success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.success__text { font-size: .975rem; margin-bottom: 24px; }
.success__badge {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  box-shadow: 0 0 0 10px rgba(0, 163, 122, .07);
}
.success__badge svg { width: 34px; height: 34px; }
.success__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 26px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--tint);
  border: 1px solid var(--line-soft);
  text-align: left;
}
.success__meta dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.success__meta dd {
  margin: 0;
  font-family: var(--display);
  font-size: .93rem;
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
}
@keyframes pop {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq__item[open] { box-shadow: var(--shadow); border-color: #d9e0ea; }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.005rem;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green-dark); }
.faq__plus {
  position: relative;
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--tint);
  transition: background .2s ease, transform .3s var(--ease);
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background .2s ease;
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__plus { background: var(--green-soft); transform: rotate(180deg); }
.faq__item[open] .faq__plus::before,
.faq__item[open] .faq__plus::after { background: var(--green-dark); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__body { padding: 0 22px 20px; }
.faq__body p { font-size: .945rem; max-width: 66ch; }

/* ============================================================
   Final CTA
   ============================================================ */
.cta {
  padding: clamp(40px, 5vw, 56px) 0;
  background: linear-gradient(115deg, var(--green-dark) 0%, #00a37a 55%, #4c5fe8 130%);
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta h2 { color: #fff; font-size: clamp(1.6rem, 2.9vw, 2.15rem); margin-bottom: 6px; }
.cta p { color: rgba(255, 255, 255, .85); margin: 0; max-width: 52ch; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255, 255, 255, .62); padding-top: clamp(48px, 6vw, 72px); }
.footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { font-size: .9rem; max-width: 34ch; line-height: 1.7; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a { color: rgba(255, 255, 255, .62); font-size: .9rem; }
.footer__col a:hover { color: #fff; }
.footer__small { font-size: .82rem; color: rgba(255, 255, 255, .42); margin: 4px 0 0; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .825rem;
  color: rgba(255, 255, 255, .45);
}
.footer__bottom p { margin: 0; }

/* ============================================================
   Reveal animation
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .mock { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
/* The brand, the six nav links and the support address only coexist once the
   container is at its full width. Below that the address is the first to go —
   the "Get support" button beside it covers the same intent. */
@media (max-width: 1180px) {
  .header__phone { display: none; }
}

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 620px; margin-inline: auto; width: 100%; }
  .mock { transform: none; }
  .float--score { left: 0; bottom: 26px; }
  .float--conv { right: 0; }
  .support { grid-template-columns: 1fr; }
  .support__aside { position: static; }
}

@media (max-width: 940px) {
  /* Anchored to the header itself so the announcement bar's height (which wraps
     on small screens) can never leave a gap between the two. */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 22px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .28s var(--ease), visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 12px 14px; font-size: 1rem; border-radius: 10px; }
  .nav a.is-active::after { display: none; }
  .burger { display: flex; }

  .feature-grid, .services, .quotes { grid-template-columns: repeat(2, 1fr); }
  .card--wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
  .step:nth-child(2)::after { display: none; }
  .footer__top { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

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

@media (max-width: 720px) {
  .announce__inner { font-size: .78rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px 4px; padding: 24px 4px; }
  .form__grid { grid-template-columns: 1fr; }
  .success__meta { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .cta .btn { width: 100%; }
}

@media (max-width: 620px) {
  /* The brand needs the full row here, so the CTA moves inside the menu. */
  .header__actions { display: none; }
  .nav a.nav__cta {
    display: block;
    margin-top: 10px;
    padding: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 127, 95, .26);
  }
  .nav a.nav__cta.is-active::after { display: none; }

  .hero__cta { display: grid; grid-template-columns: 1fr; }
  .feature-grid, .services, .quotes { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step::after { display: none !important; }
  .mock__hero { grid-template-columns: 1fr; }
  .mock__img { aspect-ratio: 16 / 10; }
  .float { padding: 10px 13px; }
  .float--score { left: -6px; }
  .float--conv { right: -6px; top: 16px; }
  .support__panel { padding: 22px 18px; border-radius: var(--radius-lg); }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 6px; }
}
