/* =========================================================
   Ella'z Cleaning | Landing Page
   ========================================================= */

:root {
  --brand: #C3229A;
  --brand-dark: #A01B7E;
  --brand-50: #FDF4FA;
  --brand-100: #F8E4F2;
  --brand-200: #F0C8E4;

  --ink: #1E1A1D;
  --ink-2: #57505A;
  --ink-3: #8A838C;
  --line: #EDE7EB;
  --bg: #FFFFFF;
  --bg-soft: #FAF7F9;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(30, 26, 29, .05);
  --shadow: 0 1px 2px rgba(30, 26, 29, .04), 0 8px 24px rgba(30, 26, 29, .06);
  --shadow-lg: 0 2px 4px rgba(30, 26, 29, .03), 0 24px 60px -12px rgba(120, 20, 90, .18);

  --header-h: 76px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

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

.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;
}

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, box-shadow .2s, transform .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px -6px rgba(195, 34, 154, .55); }
.btn-primary:hover { background: var(--brand-dark); }

.btn-outline { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: var(--brand-50); }

.btn-sm { height: 42px; padding: 0 20px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 14px auto 0; padding: 4px 8px;
  background: none; border: 0; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.btn-link:hover { color: var(--brand); }
.btn-link svg { width: 16px; height: 16px; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }

.brand img { height: 60px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .2s; }
.nav a:hover { color: var(--brand); }
.nav .nav-cta-mobile { display: none; }

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

.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px;
}
.header-phone svg { width: 18px; height: 18px; color: var(--brand); }
.header-phone:hover { color: var(--brand); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, top .25s;
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 64px 0 96px;
  background:
    radial-gradient(900px 480px at 0% 0%, var(--brand-50), transparent 70%),
    linear-gradient(180deg, #FFFBFE 0%, #fff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: start;
}

.hero-copy { padding-top: 40px; }

.hero-title {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero-title em { font-size: 1.08em; }

.lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 32px;
}

.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; max-width: 540px; margin-bottom: 36px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  font-size: 15px;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C3229A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.hero-call { font-size: 15px; color: var(--ink-2); }
.hero-call a { font-weight: 700; color: var(--ink); border-bottom: 1.5px solid var(--brand-200); }
.hero-call a:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- Form card ---------- */
.form-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}

.form-head h2 { font-size: 24px; margin-bottom: 6px; }
.form-head > p { color: var(--ink-2); font-size: 14.5px; }

.steps { display: flex; gap: 6px; margin: 20px 0 8px; }
.step-dot { height: 4px; flex: 1; border-radius: 4px; background: var(--line); transition: background-color .3s; }
.step-dot.is-active { background: var(--brand); }
.step-label { font-size: 12.5px; font-weight: 600; color: var(--ink-3); margin-bottom: 20px; }

.form-step { border: 0; margin: 0; padding: 0; min-width: 0; display: none; }
.form-step.is-active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 16px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-address { grid-template-columns: 1.7fr 1fr; }

.label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.optional { color: var(--ink-3); font-weight: 500; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 64px; line-height: 1.5; }
input::placeholder, textarea::placeholder { color: #B3ACB4; }

select {
  padding-right: 40px;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2357505A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center / 16px no-repeat;
}
select:invalid { color: #B3ACB4; }
select option { color: var(--ink); }

input:hover, select:hover, textarea:hover { border-color: #DCD3D9; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(195, 34, 154, .12);
}
.is-invalid, .is-invalid:hover { border-color: #D93A4A !important; }
.is-invalid:focus { box-shadow: 0 0 0 4px rgba(217, 58, 74, .12) !important; }

.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: flex; align-items: center; justify-content: center;
  height: 46px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  transition: all .2s;
}
.chip:hover span { border-color: #DCD3D9; }
.chip input:checked + span { border-color: var(--brand); background: var(--brand-50); color: var(--brand); }
.chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(195, 34, 154, .15); }

.form-step .btn-block { margin-top: 8px; }
.form-step[data-step="2"] { text-align: center; }
.form-step[data-step="2"] .field { text-align: left; }

.form-error { margin-top: 12px; font-size: 14px; color: #C4283A; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-foot {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}
.form-foot svg { width: 15px; height: 15px; }

.form-success { text-align: center; padding: 32px 8px 8px; }
.form-success h3 { font-size: 24px; margin: 20px 0 10px; }
.form-success p { color: var(--ink-2); max-width: 340px; margin: 0 auto; }
.success-icon {
  width: 64px; height: 64px; margin: 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-100); color: var(--brand);
}
.success-icon svg { width: 30px; height: 30px; stroke-width: 2.4; }

.btn.is-loading { pointer-events: none; opacity: .75; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: 32px 24px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.trust-item span { font-size: 14px; color: var(--ink-2); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 112px 0; }
.section-soft { background: var(--bg-soft); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.03em; margin-bottom: 16px; }
.section-head p:not(.eyebrow) { color: var(--ink-2); font-size: 17px; }
.section-head p a { color: var(--brand); font-weight: 600; }
.section-head-left { text-align: left; margin: 0; }
.section-head-left .btn { margin-top: 28px; }

.icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand);
  flex-shrink: 0;
}
.icon svg { width: 24px; height: 24px; }

/* ---------- Spaces ---------- */
.spaces {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  background: #fff;
}
.space { display: flex; gap: 16px; padding: 28px; }
.space + .space { border-left: 1px solid var(--line); }
.space h3 { font-size: 18px; margin-bottom: 4px; }
.space p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service {
  display: flex; flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service:hover { border-color: var(--brand-200); box-shadow: var(--shadow); transform: translateY(-2px); }
.service .icon { margin-bottom: 24px; }
.service h3 { font-size: 20px; margin-bottom: 10px; }
.service p { color: var(--ink-2); font-size: 15px; margin-bottom: 24px; }

.service-link {
  margin-top: auto;
  display: inline-flex; gap: 6px; align-items: center;
  font-weight: 700; font-size: 14.5px; color: var(--brand);
}
.service-link span { transition: transform .2s; }
.service-link:hover span { transform: translateX(4px); }

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.plan::before {
  content: "";
  display: block; width: 32px; height: 3px; border-radius: 3px;
  background: var(--brand); margin-bottom: 20px;
}
.plan-freq { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.plan p { font-size: 15px; color: var(--ink-2); }
.plans-note { text-align: center; margin-top: 32px; color: var(--ink-2); font-size: 15px; }

/* ---------- Before & After ---------- */
.ba-grid { column-count: 2; column-gap: 28px; }
.ba { margin: 0 0 28px; break-inside: avoid; -webkit-column-break-inside: avoid; }
.ba-portrait { --ar: 3 / 4; }
.ba-landscape { --ar: 16 / 9; }

.ba-frame {
  --pos: 50%;
  position: relative;
  aspect-ratio: var(--ar, 4 / 3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #eee;
  user-select: none;
  touch-action: pan-y;
}

.ba-layer { position: absolute; inset: 0; }
.ba-layer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { background: linear-gradient(135deg, #FBF1F8, #F4E2EE); }
.ba-before {
  background: linear-gradient(135deg, #ECE8E6, #DCD6D3);
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba-ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(30, 26, 29, .35);
}
.ba-after .ba-ph { padding-left: 50%; }
.ba-before .ba-ph { padding-right: 50%; }

.ba-tag {
  position: absolute; top: 14px; z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  pointer-events: none;
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; background: var(--brand); color: #fff; }

.ba-handle {
  position: absolute; top: 0; bottom: 0; z-index: 2;
  left: var(--pos);
  width: 2px; margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, .15);
  pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}
.ba-handle span::before,
.ba-handle span::after {
  content: "";
  position: absolute; top: 50%;
  width: 7px; height: 7px;
  border: solid var(--brand);
  border-width: 0 2px 2px 0;
}
.ba-handle span::before { left: 11px; transform: translateY(-50%) rotate(135deg); }
.ba-handle span::after { right: 11px; transform: translateY(-50%) rotate(-45deg); }

.ba-frame input[type="range"] {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none;
}
.ba-frame:has(input:focus-visible) { outline: 2px solid var(--brand); outline-offset: 3px; }

.ba figcaption { margin-top: 14px; font-size: 15px; font-weight: 600; }

/* ---------- How it works ---------- */
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: how; position: relative; }
.how li { position: relative; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.how-num {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-weight: 800; font-size: 16px;
  margin-bottom: 24px;
}
.how h3 { font-size: 20px; margin-bottom: 8px; }
.how p { color: var(--ink-2); font-size: 15px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: center; }

.about-media { position: relative; }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand-50), var(--brand-100));
}
.about-photo img { position: absolute; }
.about-fallback { width: 62%; height: auto; left: 19%; top: 50%; transform: translateY(-50%); opacity: .9; }
.about-img { inset: 0; width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute; right: -24px; bottom: 40px;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.about-badge strong { font-size: 34px; font-weight: 800; color: var(--brand); letter-spacing: -0.03em; line-height: 1; }
.about-badge span { font-size: 13.5px; line-height: 1.35; color: var(--ink-2); font-weight: 500; }

.about-copy h2 { font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.03em; margin-bottom: 20px; }
.about-copy p { color: var(--ink-2); margin-bottom: 16px; font-size: 16.5px; }
.about-copy .about-hello { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--ink); margin-bottom: 12px; }

.values { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 32px; }
.values li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
}
.values svg { width: 18px; height: 18px; color: var(--brand); }

.signature { font-family: var(--font-serif); font-style: italic; font-size: 30px; line-height: 1.1; color: var(--ink); }
.signature span { display: block; margin-top: 6px; font-family: var(--font); font-style: normal; font-size: 14px; color: var(--ink-3); }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.areas li {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
}
.areas li::before {
  content: "";
  width: 16px; height: 16px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C3229A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-6.2-7-11.5a7 7 0 0 1 14 0C19 14.8 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.faq-grid .section-head { position: sticky; top: calc(var(--header-h) + 32px); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  font-size: 17px; font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after {
  content: "";
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C3229A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform .3s, background-color .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--brand-100); }
.faq details p { padding: 0 56px 24px 0; color: var(--ink-2); }

/* ---------- Final CTA ---------- */
.cta { padding: 0 0 112px; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 64px;
  border-radius: 28px;
  background: var(--brand);
  background-image: radial-gradient(600px 300px at 100% 0%, rgba(255, 255, 255, .14), transparent 70%);
  color: #fff;
}
.cta h2 { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.03em; margin-bottom: 10px; }
.cta p { color: rgba(255, 255, 255, .85); font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.cta-phone { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .9); }
.cta-phone:hover { color: #fff; text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand img { height: 88px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-2); font-size: 14.5px; max-width: 300px; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer li { font-size: 15px; color: var(--ink-2); }
.footer li a:hover { color: var(--brand); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-3);
}
.footer-bottom a:hover { color: var(--brand); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar { display: none; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .form-step.is-active { animation: none; }
  * { transition-duration: 0s !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .nav { gap: 22px; }
  .header-phone { display: none; }
  .hero-grid { gap: 48px; }
  .about-grid, .areas-grid, .faq-grid { gap: 56px; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }

  .brand img { height: 52px; }

  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav .nav-cta-mobile { display: flex; margin-top: 16px; border: 0; color: #fff; }
  .nav .nav-cta-mobile:hover { color: #fff; }
  .header-actions { margin-left: auto; }

  .hero { padding: 40px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { padding-top: 0; }
  .form-card { max-width: 560px; width: 100%; margin: 0 auto; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }

  .spaces { grid-template-columns: 1fr; }
  .space + .space { border-left: 0; border-top: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { column-gap: 20px; }
  .how { grid-template-columns: 1fr; }

  .about-grid, .areas-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .faq-grid .section-head { position: static; }

  .cta { padding-bottom: 80px; }
  .cta-inner { flex-direction: column; align-items: flex-start; padding: 48px 40px; }
  .cta-actions { align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }

  .hero-title { font-size: 40px; }
  .lead { font-size: 17px; }
  .checklist { grid-template-columns: 1fr; gap: 12px; }

  .form-card { padding: 24px 20px; border-radius: 18px; }
  .field-row, .field-row-address { grid-template-columns: 1fr; gap: 0; }

  .trust-item { padding: 24px 12px; }
  .trust-item strong { font-size: 20px; }
  .trust-item span { font-size: 13px; }

  .section { padding: 64px 0; }
  .services-grid, .plans { grid-template-columns: 1fr; }
  .ba-grid { column-count: 1; }
  .service { padding: 28px 24px; }

  .about-badge { right: 12px; bottom: 16px; }
  .areas { grid-template-columns: 1fr 1fr; }
  .areas li { padding: 12px 14px; font-size: 14px; }

  .faq summary { font-size: 16px; padding: 20px 0; }
  .faq details p { padding-right: 0; }

  .cta-inner { padding: 40px 24px; border-radius: 22px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .cta-actions { align-items: center; }
  .cta-actions .btn { white-space: normal; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer { padding-bottom: 80px; }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 2fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    transform: translateY(100%);
    transition: transform .3s ease;
  }
  .mobile-bar.is-visible { transform: none; }
}
