/* ==========================================================================
   FL Interiors — Design System
   Palette: near-black surfaces, blue brand accents, red reserved for actions
   ========================================================================== */

:root {
  /* Surfaces — light theme with black/blue accents */
  --bg: #f5f8fc;
  --bg-elevated: #eaf0f8;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border: rgba(15, 34, 64, 0.10);
  --border-strong: rgba(15, 34, 64, 0.20);

  /* Dark accent surfaces (topbar, footer, stats, hero/CTA scrims) */
  --ink: #0a1424;
  --ink-2: #0f1d33;

  /* Brand blues (accent — readable on white) */
  --blue: #1657b8;
  --blue-deep: #0f4694;
  --blue-soft: #2f7de0;
  --blue-glow: rgba(22, 87, 184, 0.28);
  --blue-on-dark: #6db1ff;

  /* Action red — used ONLY for calls to action */
  --red: #e5322d;
  --red-hover: #ff4540;
  --red-active: #c2221e;

  /* Text */
  --text: #0e1a2c;
  --text-muted: #46586f;
  --text-faint: #7286a0;

  /* Text on dark accent surfaces */
  --text-on-dark: #eaf1fb;
  --text-on-dark-muted: #a9bcd6;

  /* Type */
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 6px 22px rgba(15, 34, 64, 0.08);
  --shadow-glow: 0 0 0 1px var(--border-strong), 0 18px 44px rgba(15, 34, 64, 0.16);
}

/* ==========================================================================
   Dark theme — applied via <html data-theme="dark"> (toggle + OS preference).
   "Not too dark": a deep navy base, not pure black.
   ========================================================================== */
:root[data-theme="dark"] {
  --bg: #0d1524;
  --bg-elevated: #111d31;
  --bg-card: #16233a;
  --bg-card-hover: #1c2c47;
  --border: rgba(140, 175, 225, 0.16);
  --border-strong: rgba(140, 175, 225, 0.30);

  --ink: #070d18;
  --ink-2: #0b1424;

  --blue: #4da3ff;
  --blue-deep: #2f7de0;
  --blue-soft: #9cc8f5;
  --blue-glow: rgba(77, 163, 255, 0.35);
  --blue-on-dark: #6db1ff;

  --text: #e9eef6;
  --text-muted: #a6b6cc;
  --text-faint: #7688a0;
  --text-on-dark: #eaf1fb;
  --text-on-dark-muted: #a9bcd6;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 0 1px var(--border-strong), 0 16px 40px rgba(0, 0, 0, 0.55);
}

/* Sections that are hardcoded light in the default theme need dark equivalents */
:root[data-theme="dark"] .site-header {
  background: rgba(13, 21, 36, 0.85);
}
:root[data-theme="dark"] .trust-bar {
  background: var(--ink);
}
:root[data-theme="dark"] .mobile-actionbar {
  background: rgba(7, 13, 24, 0.94);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
}
:root[data-theme="dark"] .form-file { background: var(--bg-elevated); }

/* Smooth cross-fade when toggling (respects reduced-motion below) */
body { transition: background-color 0.3s ease, color 0.3s ease; }

/* ---------- Theme toggle button (lives in the dark top bar) ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-on-dark-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg { display: none; }
/* Light active → offer the moon (switch to dark); dark active → offer the sun */
:root:not([data-theme="dark"]) .theme-toggle__moon { display: block; }
:root[data-theme="dark"] .theme-toggle__sun { display: block; }

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-soft);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 200;
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
  outline: 3px solid var(--blue-soft);
  outline-offset: 2px;
}

/* Visible keyboard focus everywhere (mouse clicks stay clean via :focus-visible) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 3px;
}

/* ---------- Kicker / headings ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-lede {
  color: var(--text-muted);
  max-width: 680px;
  font-size: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

/* Red = action requested */
.btn--action {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 22px rgba(229, 50, 45, 0.35);
}

.btn--action:hover {
  background: var(--red-hover);
  color: #fff;
}

.btn--action-outline {
  background: transparent;
  color: #ff6f6b;
  border-color: rgba(229, 50, 45, 0.55);
}

.btn--action-outline:hover {
  background: rgba(229, 50, 45, 0.12);
  color: #ff8783;
  border-color: var(--red);
}

/* Blue = navigation / secondary */
.btn--blue {
  background: var(--blue-deep);
  color: #fff;
}

.btn--blue:hover {
  background: var(--blue);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  background: rgba(22, 87, 184, 0.06);
}

/* Ghost button placed on a dark/photo surface (hero, CTA band) */
.hero .btn--ghost,
.cta-band .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn--ghost:hover,
.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn--lg {
  padding: 17px 36px;
  font-size: 17px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  color: var(--text-on-dark-muted);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}

.topbar__note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__note svg {
  color: var(--blue-on-dark);
  flex: none;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__links a {
  color: var(--text-on-dark-muted);
}

.topbar__links a:hover {
  color: #fff;
}

.topbar__pay {
  color: #ff6f6b !important;
  font-weight: 600;
}

.topbar__pay:hover {
  color: var(--red-hover) !important;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand:hover { color: var(--text); }

.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand__name span {
  color: var(--blue);
}

.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15.5px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--blue-deep);
  background: rgba(22, 87, 184, 0.09);
}

.nav__link[aria-current="page"] {
  color: var(--blue);
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__caret {
  transition: transform 0.2s ease;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item--dropdown:hover .nav__caret,
.nav__item--dropdown.is-open .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown a {
  display: block;
  padding: 11px 14px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.nav__dropdown a:hover {
  background: rgba(22, 87, 184, 0.09);
  color: var(--blue-deep);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cta .btn {
  padding: 11px 20px;
  font-size: 14.5px;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  color: var(--text);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 8, 14, 0.96) 18%, rgba(6, 14, 26, 0.82) 46%, rgba(8, 18, 34, 0.35) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 30%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 110px 0;
  max-width: 660px;
  color: #fff;
}

/* Hero sits over a darkened photo — force light text/accents */
.hero .kicker { color: var(--blue-on-dark); }
.hero .kicker::before { background: var(--blue-on-dark); }
.hero .breadcrumbs a { color: rgba(255, 255, 255, 0.75); }

.hero__title {
  font-size: clamp(38px, 5.6vw, 62px);
  margin-bottom: 22px;
  color: #fff;
}

.hero__title em {
  font-style: normal;
  color: var(--blue-on-dark);
}

.hero__lede {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hero__badges strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
}

.hero__badges span em {
  color: var(--blue-on-dark);
  font-style: normal;
}

/* Page hero (interior pages) */
.page-hero {
  min-height: 420px;
}

.page-hero .hero__content {
  padding: 80px 0 64px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--blue); }

/* ---------- Tile grid ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tile:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.tile__media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: linear-gradient(140deg, #12213a, #0a111d);
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tile:hover .tile__media img {
  transform: scale(1.06);
}

.tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 18, 0.55), transparent 45%);
}

.tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 26px;
}

.tile__title {
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--text);
}

.tile__text {
  color: var(--text-muted);
  font-size: 15.5px;
  flex: 1;
}

.tile__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
}

.tile__link svg {
  transition: transform 0.2s ease;
}

.tile:hover .tile__link svg {
  transform: translateX(5px);
}

.tile > a.tile__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Wide 2-col variant */
.tile-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

/* ---------- Feature rows (alternating) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-of-type {
  border-bottom: none;
}

.feature-row--flip .feature-row__media {
  order: 2;
}

.feature-row__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.feature-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(7, 11, 18, 0.35), transparent 40%);
}

.feature-row h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

.feature-row p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.feature-row .btn {
  margin-top: 10px;
}

.checklist {
  list-style: none;
  margin: 20px 0 8px;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
}

.checklist svg {
  flex: none;
  margin-top: 4px;
  color: var(--blue);
}

.checklist strong {
  color: var(--text);
}

/* ---------- Stats band (blue accent) ---------- */
.stats {
  background: linear-gradient(120deg, var(--blue-deep), #123a7a 55%, var(--ink-2));
  border-block: 1px solid transparent;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  text-align: center;
}

.stats__num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
}

.stats__num em {
  font-style: normal;
  color: var(--blue-on-dark);
}

.stats__label {
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  counter-reset: step;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18.5px;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- CTA band (red action zone) ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(4, 8, 14, 0.94) 25%, rgba(10, 20, 38, 0.85) 60%, rgba(18, 34, 60, 0.6)),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.cta-band__media,
.cta-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 8, 14, 0.96) 30%, rgba(6, 14, 26, 0.78) 65%, rgba(8, 18, 34, 0.5));
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 76px 0;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  max-width: 560px;
  margin-bottom: 12px;
  color: #fff;
}

.cta-band .kicker { color: var(--blue-on-dark); }
.cta-band .kicker::before { background: var(--blue-on-dark); }

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Forms ---------- */
.form-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-field label .req {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239fb0c5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 157, 255, 0.18);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 50, 45, 0.15);
}

.form-field .field-error {
  display: none;
  font-size: 13px;
  color: #ff8783;
}

.form-field .field-error.is-visible {
  display: block;
}

.form-note {
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(59, 157, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  pointer-events: none;
}

/* Contact side panel */
.contact-aside h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 18px;
}

.contact-aside > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.contact-card__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(59, 157, 255, 0.14);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h3 {
  font-size: 16.5px;
  margin-bottom: 4px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 44px;
}

.contact-map {
  width: 100%;
  min-height: 440px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-map { min-height: 320px; }
}

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.gallery-strip figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  border: 1px solid var(--border);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip figure:hover img {
  transform: scale(1.05);
}

.gallery-strip figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(4, 8, 14, 0.92), transparent);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}

/* ---------- Footer (dark accent) ---------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--blue-deep);
  padding: 72px 0 0;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.site-footer .brand { color: #fff; }
.site-footer .brand__name span { color: var(--blue-on-dark); }
.site-footer .brand__tag { color: var(--text-on-dark-muted); }

.footer-brand p {
  color: var(--text-on-dark-muted);
  margin: 18px 0 20px;
  max-width: 320px;
}

.footer-nap {
  font-style: normal;
  display: grid;
  gap: 3px;
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}

.footer-nap a {
  color: var(--blue-on-dark);
  font-weight: 600;
}

.footer-nap a:hover { color: #fff; }

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-on-dark);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-col li {
  color: var(--text-on-dark-muted);
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .footer-pay {
  color: #ff8783;
  font-weight: 600;
}

.site-footer .page-updated { color: var(--text-on-dark-muted); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-on-dark-muted);
  font-size: 13.5px;
}

/* ---------- Trust bar (light credibility strip under hero) ---------- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding: 20px 0;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
}

.trust-bar__item svg {
  flex: none;
  color: var(--blue);
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
}

.testimonial__stars {
  display: inline-flex;
  gap: 3px;
  color: #f5b301;
  margin-bottom: 16px;
}

.testimonial__quote {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.testimonial__quote::before { content: "\201C"; }
.testimonial__quote::after { content: "\201D"; }

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-deep), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  font-size: 15.5px;
}

.testimonial__role {
  color: var(--text-faint);
  font-size: 13.5px;
}

/* ---------- Article prose ---------- */
.prose { font-size: 17px; }

.prose p { color: var(--text-muted); margin-bottom: 20px; }

.prose h2 {
  font-size: clamp(23px, 3vw, 30px);
  color: var(--text);
  margin: 44px 0 14px;
  scroll-margin-top: 100px;
}

.prose h3 { color: var(--text); }

.prose ul,
.prose ol {
  color: var(--text-muted);
  margin: 0 0 20px 2px;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.prose ul.checklist { padding-left: 0; }

.prose ol { gap: 12px; }

.prose li strong { color: var(--text); }

.prose .table-wrap { margin: 24px 0 8px; }

.prose .faq-grid { margin-top: 24px; }

.prose a { color: var(--blue); }
.prose a:hover { color: var(--blue-soft); }

/* ---------- Guides index cards ---------- */
.guide-card .tile__media { aspect-ratio: 16 / 9; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.faq-item h3 {
  font-size: 17.5px;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 15.5px;
}

.faq-item p strong {
  color: var(--text);
}

/* ---------- Comparison table ---------- */
.table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--bg-card);
}

.compare-table th,
.compare-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table thead th {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-soft);
  background: rgba(59, 157, 255, 0.08);
  border-bottom: 1px solid var(--border-strong);
}

.compare-table tbody th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.compare-table td {
  color: var(--text-muted);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- Page meta (updated date) ---------- */
.page-updated {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ---------- Phone slots ----------
   Click-to-call links, now published (1-855-450-EASY). */
.phone-slot { display: inline-flex; }
.phone-slot--flex { display: flex; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-actionbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -6px 24px rgba(15, 34, 64, 0.1);
}

.mobile-actionbar .btn {
  flex: 1;
  padding: 14px 12px;
  font-size: 15px;
}

.mobile-actionbar .btn svg { flex: none; }

@media (max-width: 720px) {
  .mobile-actionbar { display: flex; }
  /* keep the sticky bar from covering the footer's last content */
  body { padding-bottom: 72px; }
}

/* ---------- Form: budget + upload + next-steps ---------- */
.form-file {
  position: relative;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 16px 15px;
  background: var(--bg);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-file:hover { border-color: var(--blue); }

.form-file input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.form-file__label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14.5px;
  pointer-events: none;
}

.form-file__label svg { flex: none; color: var(--blue); }
.form-file__name { color: var(--text); font-weight: 600; }

.next-steps {
  list-style: none;
  display: grid;
  gap: 18px;
  margin: 26px 0 8px;
  counter-reset: ns;
}

.next-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  counter-increment: ns;
}

.next-steps li::before {
  content: counter(ns);
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(59, 157, 255, 0.14);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.next-steps h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  margin-bottom: 2px;
}

.next-steps p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1230px) and (min-width: 1021px) {
  .nav { gap: 14px; }
  .nav__list { gap: 0; }
  .nav__link { padding: 10px 10px; font-size: 15px; }
  .nav__cta .btn--action-outline { display: none; }
  .nav__cta .btn { padding: 11px 16px; font-size: 14px; }
  .brand__tag { display: none; }
}

@media (max-width: 1020px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-shell { grid-template-columns: 1fr; }
  .contact-aside { order: -1; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }

  .nav__toggle { display: inline-flex; }

  /* backdrop-filter creates a containing block that would trap the
     fixed-position drawer inside the header — disable it on mobile */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(7, 11, 18, 0.97);
  }

  .nav__menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-strong);
    padding: 88px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 55;
  }

  .nav__menu.is-open {
    transform: translateX(0);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.6);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    width: 100%;
    justify-content: space-between;
    font-size: 17px;
    padding: 13px 14px;
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 6px 16px;
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown {
    display: block;
  }

  .nav__cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    gap: 12px;
  }

  .nav__cta .btn { width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .tile-grid { grid-template-columns: 1fr; }
  .tile-grid--two { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row--flip .feature-row__media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .hero { min-height: 560px; }
  .hero__badges { gap: 18px; }
  .topbar__links span.hide-sm { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { padding: 60px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}
