/* =========================================================
   AURA SMART FILM — styles.css
   Palette derived from the supplied Aura logo:
   symbol bright #dee8f5 · symbol blue #b1c6e5 · wordmark #1c2b44
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --navy-950: #08131f;   /* deep midnight (logo ground, harmonized) */
  --navy-900: #0d2438;   /* primary action */
  --navy-800: #16334c;   /* hover / borders on dark */
  --blue-700: #40658a;   /* accessible accent on light */
  --blue-600: #5f7f9e;   /* slate steel */
  --blue-300: #b1c6e5;   /* sampled: symbol edge blue */
  --blue-200: #c9ddf0;   /* soft ice */
  --blue-100: #dee8f5;   /* sampled: symbol bright */
  --blue-50:  #eef5fb;   /* pale blue wash */
  --surface:  #fbfaf8;   /* warm off-white page ground */
  --sand-50:  #f6f4ef;   /* warm alt section */
  --white:    #ffffff;
  --text:     #0a1620;
  --muted:    #566675;
  --line:     #e4e9ee;
  --error:    #b0413c;

  --font: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 10px;

  --shadow-card: 0 1px 2px rgba(13, 36, 56, 0.05), 0 14px 34px -22px rgba(13, 36, 56, 0.28);
  --shadow-float: 0 24px 60px -28px rgba(13, 36, 56, 0.35);

  --container: 1220px;
  --gutter: clamp(1.25rem, 4.5vw, 2.5rem);
  --section: clamp(4.25rem, 9vw, 7rem);

  interpolate-size: allow-keywords;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}

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

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

::selection {
  background: var(--blue-200);
  color: var(--navy-950);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 14px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.text-ice {
  color: var(--blue-300);
}

.crop-43 {
  aspect-ratio: 4 / 3;
}

.section {
  padding-block: var(--section);
}

/* ---------- type ---------- */
h1 {
  font-size: clamp(2.15rem, 1.35rem + 3.1vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.7rem, 1.28rem + 1.7vw, 2.4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.008em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--blue-600));
}

.lead {
  font-size: 1.0625rem;
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-head.is-centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.is-centered .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-top: 1rem;
}

.accent-line {
  color: var(--blue-600);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 22px -12px rgba(13, 36, 56, 0.55);
}

.btn-primary:hover {
  background: var(--navy-950);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy-900);
}

.btn-ghost:hover {
  border-color: var(--blue-600);
  color: var(--navy-950);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.btn-light:hover {
  background: var(--blue-100);
}

.btn-lg {
  padding: 1rem 1.9rem;
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-700);
  text-decoration: none;
}

.text-link .arrow {
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--navy-900);
}

.text-link:hover .arrow {
  transform: translateX(3px);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px -22px rgba(13, 36, 56, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

/* the actual Aura logo art: symbol + wordmark cropped from the brand file */
.brand-logo {
  height: 48px;
  width: auto;
}

.brand-wordmark {
  height: 32px;
  width: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.site-nav a:not(.btn) {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--blue-700);
  border-bottom-color: var(--blue-300);
}

.site-nav .btn {
  padding: 0.62rem 1.15rem;
  font-size: 0.92rem;
}

.site-nav .header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy-900);
}

.site-nav .header-phone svg {
  color: var(--blue-700);
  flex: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
  position: relative;
}

.nav-toggle .bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.nav-toggle .bar:nth-child(1) { top: 15px; }
.nav-toggle .bar:nth-child(2) { top: 21px; }
.nav-toggle .bar:nth-child(3) { top: 27px; }

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-wordmark {
    height: 26px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 40px -30px rgba(13, 36, 56, 0.35);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--gutter) 1.25rem;
  }

  .site-nav a:not(.btn) {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav li:last-child {
    margin-top: 1rem;
  }

  .site-nav .header-phone {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 1.05rem;
  }

  .site-nav .btn {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 5.5vw, 4.5rem) clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(58rem 30rem at 86% -10%, rgba(201, 221, 240, 0.55), transparent 62%),
    radial-gradient(40rem 24rem at -12% 26%, rgba(222, 232, 245, 0.5), transparent 60%),
    linear-gradient(180deg, #f3f7fb 0%, var(--surface) 58%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  grid-template-areas:
    "copy form"
    "visual form";
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.hero-copy { grid-area: copy; }
.hero-form { grid-area: form; }
.hero-visual { grid-area: visual; }

.hero-copy .lead {
  max-width: 56ch;
}

.hero-sub {
  margin-top: 1.2rem;
  font-size: clamp(1.18rem, 1rem + 0.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero-sub .accent-line {
  display: block;
  color: var(--blue-600);
}

.hero-copy > .lead {
  margin-top: 1.1rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
  margin-top: 1.6rem;
  max-width: 460px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy-900);
}

.trust-list .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-list .tick svg {
  width: 11px;
  height: 11px;
}

.hero-visual {
  margin-top: clamp(0.2rem, 1vw, 0.8rem);
}

.hero-visual .compare-hint {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-visual .compare-hint svg {
  flex: none;
  color: var(--blue-600);
}

@media (max-width: 980px) {
  /* mobile priority: copy → form → interactive visual */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "form"
      "visual";
  }

  .hero-visual {
    margin-top: 0.5rem;
  }
}

/* ---------- compare slider ---------- */
.compare {
  --pos: 50%;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  isolation: isolate;
  background: var(--navy-950);
}

.compare picture,
.compare img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.compare-over {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos));
}

.compare-over img,
.compare-over picture {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(8, 19, 31, 0.18), 0 0 22px rgba(8, 19, 31, 0.35);
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px -6px rgba(8, 19, 31, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--navy-900);
  pointer-events: none;
}

.compare-handle svg {
  width: 9px;
  height: 12px;
}

.compare-label {
  position: absolute;
  top: 14px;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: rgba(7, 17, 28, 0.68);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.compare-label.is-clear { left: 14px; }
.compare-label.is-private { right: 14px; }

.compare.mostly-private .compare-label.is-clear,
.compare.mostly-clear .compare-label.is-private {
  opacity: 0.45;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  touch-action: pan-y;
}

.compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 46px;
  height: 46px;
}

.compare-range::-moz-range-thumb {
  width: 46px;
  height: 46px;
  border: 0;
}

.compare:has(.compare-range:focus-visible) {
  outline: 3px solid var(--blue-700);
  outline-offset: 3px;
}

/* ---------- form card ---------- */
.form-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-600) 45%, var(--blue-200));
}

.form-card h2,
.form-card .form-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.form-card .form-title-sm {
  font-size: 1.15rem;
}

.form-card .form-intro {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-body {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.field-row {
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label,
.field .label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.32rem;
}

.field .opt {
  font-weight: 600;
  color: var(--muted);
}

.field .req {
  color: var(--blue-700);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #d4dde5;
  border-radius: var(--r-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 88px;
}

.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2340658a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m1.5 1.75 4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a8894;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(95, 127, 158, 0.22);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
}

.field-error {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--error);
}

.file-drop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px dashed var(--blue-300);
  border-radius: var(--r-sm);
  background: var(--blue-50);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: var(--blue-600);
  background: var(--blue-100);
}

.file-drop svg {
  flex: none;
  color: var(--blue-700);
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  display: block;
}

.file-note {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.field .hint {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-card .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.form-reassure {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.form-status {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.is-success {
  background: #e8f4ec;
  border: 1px solid #bcdcc7;
  color: #1d5c34;
}

.form-status.is-error {
  background: #f9ecec;
  border: 1px solid #e5c5c3;
  color: #8f3430;
}

.form-status.is-pending {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  color: var(--navy-800);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}

.split .section-head,
.split-copy .section-head {
  margin-bottom: 1.4rem;
}

.split-copy p + p {
  margin-top: 1rem;
}

.split-copy .lead + .lead {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .split .split-media {
    order: -1;
  }
}

/* glass frame motif behind editorial imagery */
.glass-frame {
  position: relative;
}

.glass-frame img {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

.glass-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--blue-200);
  border-radius: var(--r-lg);
  transform: translate(16px, 16px);
  z-index: 0;
  pointer-events: none;
}

.glass-frame.frame-left::after {
  transform: translate(-16px, 16px);
}

.media-caption {
  position: relative;
  z-index: 2;
  margin-top: 0.75rem;
  font-size: 0.83rem;
  color: var(--muted);
}

.split-copy .callout,
.callout {
  margin-top: 1.4rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--blue-50);
  font-weight: 700;
  color: var(--navy-900);
}

/* ---------- applications ---------- */
.bg-sand { background: var(--sand-50); }
.bg-ice { background: var(--blue-50); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 720px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.app-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-float);
}

.app-card .card-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.app-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.app-card:hover .card-media img {
  transform: scale(1.045);
}

/* clear / private sliders inside application cards */
.app-card .card-media .compare {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.app-card .card-media .compare picture {
  height: 100%;
}
.app-card:hover .card-media .compare img {
  transform: none;
}
.app-card .compare-handle {
  width: 38px;
  height: 38px;
}
.app-card .compare-label {
  top: 10px;
  font-size: 0.62rem;
}
.app-card .compare-label.is-clear { left: 10px; }
.app-card .compare-label.is-private { right: 10px; }

.app-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1;
}

.app-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

/* ---------- before / after feature ---------- */
.ba-feature .compare {
  border-radius: var(--r-lg);
}

.ba-captions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.ba-captions > div {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.ba-captions .state {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--navy-900);
  padding: 0.22rem 0.6rem;
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  background: var(--white);
  white-space: nowrap;
}

.ba-captions > div:last-child {
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 560px) {
  .ba-captions {
    grid-template-columns: minmax(0, 1fr);
  }

  .ba-captions > div:last-child {
    justify-content: flex-start;
    text-align: left;
  }
}

/* ---------- how it works ---------- */
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

@media (max-width: 820px) {
  .steps-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step {
  border-top: 1px solid var(--blue-200);
  padding-top: 1.4rem;
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 3rem;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-600);
}

.step p.step-num {
  margin: 0;
  font-size: 3.1rem;
  font-weight: 200;
  line-height: 1;
  color: var(--blue-600);
  letter-spacing: -0.02em;
}

.step h3 {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- process ---------- */
.process-media img {
  aspect-ratio: 4 / 5;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 1.6rem;
  margin-top: 0.4rem;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 1.1rem;
}

.process-list li::before {
  counter-increment: process;
  content: "0" counter(process);
  width: 42px;
  height: 42px;
  border: 1px solid var(--blue-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: -1.35rem;
  width: 1px;
  background: var(--blue-200);
}

.process-list h3 {
  font-size: 1.05rem;
}

.process-list p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.process-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.process-cta p {
  font-weight: 700;
  color: var(--navy-900);
}

/* ---------- why aura (dark) ---------- */
.why {
  background:
    radial-gradient(46rem 26rem at 82% -18%, rgba(177, 198, 229, 0.16), transparent 60%),
    radial-gradient(30rem 20rem at 4% 110%, rgba(95, 127, 158, 0.14), transparent 55%),
    var(--navy-950);
  color: var(--white);
}

.why .eyebrow {
  color: var(--blue-300);
}

.why .eyebrow::before {
  background: linear-gradient(90deg, var(--blue-600), var(--blue-300));
}

.why .section-head p {
  color: #b9c8d6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.why-item {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(177, 198, 229, 0.22);
}

.why-item svg {
  width: 26px;
  height: 26px;
  color: var(--blue-300);
}

.why-item h3 {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
}

.why-item p {
  margin-top: 0.5rem;
  font-size: 0.94rem;
  color: #b9c8d6;
}

/* ---------- feature lists ---------- */
.feature-list-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  margin-top: 1.3rem;
  max-width: 430px;
}

.feature-list-cols li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
}

.feature-list-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.chip-list li {
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900);
}

.split-copy .feature-note {
  margin-top: 1.3rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--blue-300);
  font-size: 0.89rem;
  color: var(--muted);
}

.split-copy .btn,
.split-copy .text-link {
  margin-top: 1.6rem;
}

/* ---------- service area ---------- */
.service-area .section-head {
  max-width: 720px;
}

.region-line {
  margin-top: 1.4rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
}

.region-line .dot {
  color: var(--blue-600);
  padding-inline: 0.45rem;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--blue-200);
  max-width: 860px;
}

@media (max-width: 760px) {
  .city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.city-list li {
  font-size: 0.93rem;
  color: var(--muted);
  font-weight: 600;
}

.service-area .service-footnote {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 640px;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0.25rem;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--blue-700);
}

.faq-item summary .faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--blue-200);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item summary .faq-icon svg {
  width: 11px;
  height: 11px;
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: var(--blue-100);
}

.faq-item .faq-answer {
  padding: 0 2.6rem 1.25rem 0.25rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.faq-item::details-content {
  block-size: 0;
  overflow: clip;
  transition: block-size 0.3s ease, content-visibility 0.3s allow-discrete;
}

.faq-item[open]::details-content {
  block-size: auto;
}

/* ---------- final CTA / estimate ---------- */
.estimate {
  background: linear-gradient(180deg, var(--surface) 0%, var(--blue-50) 45%, #e6f0f8 100%);
}

.estimate .form-card {
  max-width: 660px;
  margin-inline: auto;
}

.estimate-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 0 0 2.4rem;
}

/* ---------- footer (light — hosts the actual brand file) ---------- */
.site-footer {
  background: var(--sand-50);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* the actual brand file, large, on its natural light ground */
.footer-logo {
  width: 290px;
  max-width: 100%;
  margin: -0.6rem 0 0.6rem -0.4rem;
}

.footer-tagline {
  max-width: 34ch;
  font-size: 0.94rem;
}

.footer-heading {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a {
  color: var(--navy-900);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--navy-950);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta p {
  font-size: 0.94rem;
}

.footer-meta .locality {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--navy-900);
}

.footer-meta .locality svg {
  color: var(--blue-700);
}

.footer-meta p + p {
  margin-top: 0.6rem;
}

.footer-meta a {
  color: var(--navy-900);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 1.4rem;
}

.footer-soon {
  color: #8b98a3;
  cursor: default;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* mobile: centre the whole footer */
@media (max-width: 820px) {
  .footer-grid {
    text-align: center;
    justify-items: center;
  }
  .footer-logo {
    margin-inline: auto;
  }
  .footer-tagline {
    margin-inline: auto;
  }
  .footer-nav ul {
    justify-items: center;
  }
  .footer-meta .locality {
    justify-content: center;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(251, 250, 248, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.mobile-cta .btn {
  width: 100%;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

@media (min-width: 861px) {
  .mobile-cta {
    display: none;
  }
}

/* ---------- reveal animations ---------- */
.js .reveal {
  opacity: 0;
  translate: 0 12px;
  transition: opacity 0.45s ease, translate 0.45s ease;
}

.js .reveal.in-view {
  opacity: 1;
  translate: 0 0;
}

.js [data-stagger] > .reveal:nth-child(2) { transition-delay: 0.07s; }
.js [data-stagger] > .reveal:nth-child(3) { transition-delay: 0.14s; }
.js [data-stagger] > .reveal:nth-child(4) { transition-delay: 0.21s; }
.js [data-stagger] > .reveal:nth-child(5) { transition-delay: 0.28s; }
.js [data-stagger] > .reveal:nth-child(6) { transition-delay: 0.35s; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    translate: 0 0;
  }

  .app-card:hover,
  .btn-primary:hover {
    transform: none;
  }
}
