/* ==========================================================================
   Voltera — עמוד נחיתה
   עיצוב: נקי, בטוח, תעשייתי ומדויק. השראה: לוח מפרט של מוסך / כרטיס ניפוק.
   ========================================================================== */

/* TODO (פונט מקומי): טעינת Heebo מקומית לא הושלמה כי בסביבת הבנייה אין
   גישה לאינטרנט להורדת קובצי ה-WOFF2 האמיתיים (ראו assets/fonts/README.txt
   להוראות מלאות). לאחר שתוסיפו את חמשת קובצי ה-WOFF2 לתיקיית assets/fonts,
   מחקו את שני תגי ההערה של CSS שעוטפים את בלוק ה-at-font-face הבא (רק
   אותם, לא את הטקסט הזה) כדי להפעיל אותו, ומחקו את שלושת תגי ה-Google
   Fonts (link rel=preconnect פעמיים ו-link rel=stylesheet) מכל אחד
   מחמשת קובצי ה-HTML. */
/*
@font-face{
  font-family:"Heebo";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("assets/fonts/Heebo-Regular.woff2") format("woff2");
}
@font-face{
  font-family:"Heebo";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("assets/fonts/Heebo-Medium.woff2") format("woff2");
}
@font-face{
  font-family:"Heebo";
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url("assets/fonts/Heebo-SemiBold.woff2") format("woff2");
}
@font-face{
  font-family:"Heebo";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url("assets/fonts/Heebo-Bold.woff2") format("woff2");
}
@font-face{
  font-family:"Heebo";
  font-style:normal;
  font-weight:800;
  font-display:swap;
  src:url("assets/fonts/Heebo-ExtraBold.woff2") format("woff2");
}
*/

/* ---- Design tokens ---- */
:root{
  --brand: #30D7C7;
  --brand-dim: #22B0A3;
  --brand-text: #157870;   /* גרסה כהה יותר של הטורקיז, לשימוש בטקסט/אייקונים על רקע בהיר בלבד — עומדת ביחס ניגודיות 4.5:1 לפי WCAG AA. אין להשתמש בה לרקעים (למשל hover של כפתור), רק לצבע טקסט/קו. */
  --brand-ink: #063B36;      /* טקסט כהה על רקע טורקיז לקריאות */
  --black: #0B0D0E;
  --charcoal: #1A1E1F;
  --bg: #F4F6F5;
  --white: #FFFFFF;
  --line: rgba(11,13,14,0.10);
  --line-strong: rgba(11,13,14,0.16);
  --line-on-dark: rgba(244,246,245,0.14);
  --muted: #565D5C;
  --muted-on-dark: rgba(244,246,245,0.66);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(11,13,14,0.06), 0 1px 1px rgba(11,13,14,0.04);
  --shadow-md: 0 12px 32px rgba(11,13,14,0.10);
  --shadow-lg: 0 24px 60px rgba(11,13,14,0.16);

  --container: 1180px;
  --gutter: 20px;

  --ff: "Heebo", "Segoe UI", Tahoma, Arial, sans-serif;

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

/* ---- Reset ---- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html, body{ margin:0; padding:0; }
body{
  font-family: var(--ff);
  background: var(--bg);
  color: var(--black);
  direction: rtl;
  text-align: right;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input, textarea, select{ font-family: inherit; }
h1,h2,h3,h4,p,figure{ margin:0; }
:focus-visible{
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link{
  position:absolute;
  right:12px; top:-60px;
  background: var(--black);
  color:#fff;
  padding:12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top:12px; }

/* ---- Layout helpers ---- */
.container{
  width:100%;
  max-width: var(--container);
  margin-inline:auto;
  padding-inline: var(--gutter);
}
.section{
  padding: 64px 0;
}
.section--tight{ padding: 44px 0; }
@media (min-width:800px){
  .section{ padding: 96px 0; }
  .section--tight{ padding: 64px 0; }
}
.prose{
  max-width: 650px;
}
.center{ text-align:center; margin-inline:auto; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-text);
  font-variant-numeric: tabular-nums;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background: var(--brand);
  display:inline-block;
  border-radius: 2px;
}

h1{
  font-size: clamp(2.1rem, 6.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h2{
  font-size: clamp(1.65rem, 4.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.008em;
}
h3{
  font-size: clamp(1.15rem, 2.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}
.section-head{
  margin-bottom: 34px;
}
.section-head h2{ margin-top:10px; }
.section-head .lead{
  margin-top:14px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

/* gauge-tick divider — האלמנט החוזר של העיצוב, בהשראת סרגל מדידה בסדנה */
.tick-rule{
  --n: 24;
  height: 14px;
  width: 100%;
  max-width: 220px;
  background-image: repeating-linear-gradient(
    to left,
    var(--line-strong) 0, var(--line-strong) 1px,
    transparent 1px, transparent calc(100% / var(--n))
  );
  background-position: bottom left;
  background-size: 100% 100%;
  position: relative;
  margin: 18px 0 0;
}
.tick-rule::after{
  content:"";
  position:absolute; inset-inline-start:0; bottom:0;
  width:100%; height:2px;
  background: var(--brand);
}
.tick-rule--center{ margin-inline:auto; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{
  background: var(--brand-dim);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-dark{
  background: var(--black);
  color: #fff;
}
.btn-dark:hover{
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline{
  background: transparent;
  border-color: var(--line-strong);
  color: var(--black);
}
.btn-outline:hover{ border-color: var(--black); }
.btn-ghost-dark{
  background: transparent;
  border-color: var(--line-on-dark);
  color: #fff;
}
.btn-ghost-dark:hover{ border-color: var(--brand); color: var(--brand); }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; transform:none !important; }

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  border-bottom: 2px solid var(--line-strong);
  padding-bottom: 3px;
  transition: border-color .18s var(--ease), gap .18s var(--ease);
}
.link-arrow svg{ width:16px; height:16px; transition: transform .18s var(--ease); }
.link-arrow:hover{ border-color: var(--brand); gap:12px; }
.link-arrow:hover svg{ transform: translateX(-3px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: rgba(244,246,245,0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-scrolled{
  border-color: var(--line);
  box-shadow: 0 4px 24px rgba(11,13,14,0.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  height: var(--header-h);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{ height: 26px; width:auto; }
@media (min-width:600px){ .brand img{ height:30px; } }

.main-nav{
  display:none;
}
.main-nav ul{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-weight:600;
  font-size: .96rem;
  color: var(--charcoal);
  position:relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; right:0; bottom:0;
  width:0; height:2px;
  background: var(--brand);
  transition: width .2s var(--ease);
}
.main-nav a:hover::after{ width:100%; }

.header-cta{ display:flex; align-items:center; gap:10px; }
.header-cta .btn{ padding: 11px 18px; font-size:.92rem; }

.nav-toggle{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:42px; height:42px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong);
  background: var(--white);
}
.nav-toggle svg{ width:20px; height:20px; }
.nav-toggle .icon-close{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-open{ display:none; }
.nav-toggle[aria-expanded="true"] .icon-close{ display:block; }

@media (min-width:960px){
  .main-nav{ display:block; }
  .nav-toggle{ display:none; }
  .header-cta .btn-outline{ display:inline-flex; }
}
@media (max-width:959px){
  .header-cta .btn-outline{ display:none; }
}

.mobile-nav{
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 490;
  padding: 26px var(--gutter) 30px;
  transform: translateY(-8px);
  opacity:0;
  pointer-events:none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  overflow-y:auto;
}
.mobile-nav.is-open{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.mobile-nav ul{ display:flex; flex-direction:column; gap:2px; }
.mobile-nav a{
  display:block;
  padding: 16px 4px;
  font-size:1.15rem;
  font-weight:700;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn{ margin-top:22px; }
@media (min-width:960px){ .mobile-nav{ display:none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  padding: 40px 0 60px;
  position:relative;
}
@media (min-width:800px){ .hero{ padding: 68px 0 90px; } }

.hero-grid{
  display:grid;
  gap: 36px;
  align-items:center;
}
@media (min-width:960px){
  .hero-grid{
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.hero-copy h1{ margin-top:16px; }
.hero-copy .lead{
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 560px;
}
.hero-actions{
  margin-top: 30px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 18px;
}
.hero-actions .btn-primary{ font-size:1.02rem; padding:17px 30px; }
.hero-microcopy{
  margin-top: 14px;
  font-size: .88rem;
  color: var(--muted);
}

.hero-media{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--black);
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  opacity: .96;
}
.hero-media .media-frame{
  position:absolute; inset:0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: inherit;
  pointer-events:none;
}
.hero-media-caption{
  position:absolute;
  inset-inline-start:16px; bottom:16px;
  display:flex; align-items:center; gap:8px;
  background: rgba(11,13,14,0.55);
  backdrop-filter: blur(6px);
  color:#fff;
  font-size:.78rem;
  font-weight:600;
  padding: 8px 12px;
  border-radius: 999px;
}
.hero-media-caption .dot{
  width:7px; height:7px; border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(48,215,199,0.25);
}

/* ==========================================================================
   Proof strip
   ========================================================================== */
.proof{
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid{
  display:grid;
  gap: 18px;
}
@media (min-width:800px){
  .proof-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin-inline:auto; }
}
.proof-card{
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  height:100%;
}
.proof-card .proof-kicker{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--brand-text);
}
.proof-card p{
  margin-top: 10px;
  font-size:.98rem;
  color: var(--charcoal);
}
.proof-card.quote p{ font-style: italic; }
.proof-card cite{
  display:block;
  margin-top:10px;
  font-style:normal;
  font-size:.82rem;
  color: var(--muted);
}

/* ==========================================================================
   Problem
   ========================================================================== */
.problem-grid{
  display:grid;
  gap: 30px;
}
@media (min-width:900px){
  .problem-grid{ grid-template-columns: 1fr 1fr; gap:60px; align-items:start; }
}
.problem-list{
  display:flex; flex-direction:column; gap:16px;
  margin-top: 22px;
}
.problem-list li{
  display:flex; gap:14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--charcoal);
}
.problem-list li:last-child{ border-bottom: 1px solid var(--line); }
.problem-list .num{
  flex:none;
  font-weight:800;
  font-variant-numeric: tabular-nums;
  color: var(--brand-text);
  font-size:.85rem;
  padding-top:3px;
}
.callout{
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--black);
  color:#fff;
  border-radius: var(--radius-md);
  font-size: 1.08rem;
  font-weight: 700;
  line-height:1.5;
  position:relative;
}
.callout::before{
  content:"";
  position:absolute; inset-inline-start:0; top:0; bottom:0;
  width:4px;
  background: var(--brand);
  border-radius: 4px 0 0 4px;
}
.problem-visual{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 3/4;
}
.problem-visual img{ width:100%; height:100%; object-fit:cover; }

/* ==========================================================================
   Visual moment banner
   ========================================================================== */
.moment{
  position:relative;
  min-height: 340px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
}
.moment img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  z-index:-2;
  filter: saturate(1.02);
}
.moment::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,13,14,0.72), rgba(11,13,14,0.55) 45%, rgba(11,13,14,0.8));
  z-index:-1;
}
.moment-inner{
  text-align:center;
  color:#fff;
  padding: 70px var(--gutter);
  max-width: 780px;
}
.moment-inner p.eyebrow{ color: var(--brand); justify-content:center; }
.moment-inner h2{
  margin-top:14px;
  font-size: clamp(1.5rem, 4.6vw, 2.35rem);
}

/* ==========================================================================
   Differentiation table
   ========================================================================== */
.diff-table-wrap{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
table.diff-table{
  width:100%;
  border-collapse: collapse;
  background: var(--white);
}
.diff-table caption{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }
.diff-table th, .diff-table td{
  padding: 16px 18px;
  text-align: start;
  vertical-align: top;
  font-size: .96rem;
}
.diff-table thead th{
  background: var(--black);
  color:#fff;
  font-weight:700;
  font-size:.86rem;
  letter-spacing:.02em;
}
.diff-table thead th:first-child{ color: rgba(255,255,255,0.55); font-weight:600; }
.diff-table thead th:last-child{ color: var(--brand); }
.diff-table tbody tr:not(:last-child) td{ border-bottom: 1px solid var(--line); }
.diff-table tbody td:first-child{ color: var(--muted); }
.diff-table tbody td:last-child{ font-weight:600; }
.diff-table tbody tr td:first-child{ border-inline-end: 1px solid var(--line); }

.diff-cta{
  margin-top: 30px;
  display:flex;
  justify-content:center;
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps{
  display:grid;
  gap: 18px;
  counter-reset: step;
  margin-top: 10px;
  list-style: none;
}
@media (min-width:760px){
  .steps{ grid-template-columns: repeat(2, 1fr); gap:22px; }
}
@media (min-width:1100px){
  .steps{ grid-template-columns: repeat(4, 1fr); }
}
.step-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position:relative;
  list-style: none;
}
.step-card .step-index{
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--bg);
  -webkit-text-stroke: 1.5px var(--line-strong);
  line-height:1;
  font-variant-numeric: tabular-nums;
}
.step-card h3{ margin-top: 14px; }
.step-card p{ margin-top:10px; color: var(--muted); font-size: .95rem; }
.step-card::after{
  content:"";
  position:absolute; top:22px; inset-inline-start:22px;
  width: 30px; height:2px;
  background: var(--brand);
}
.step-card .step-index{ margin-top: 18px; }

.section-cta{
  margin-top: 40px;
  display:flex;
  justify-content:center;
}

/* ==========================================================================
   Offer
   ========================================================================== */
.offer-wrap{
  display:grid;
  gap: 30px;
}
@media (min-width:960px){
  .offer-wrap{ grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items:start; }
}
.offer-list{
  margin-top: 24px;
  display:flex; flex-direction:column; gap:0;
}
.offer-list li{
  display:flex; gap:12px; align-items:flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: .98rem;
}
.offer-list li svg{ flex:none; margin-top:3px; color: var(--brand-text); }

.budget-card{
  background: var(--charcoal);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position:sticky;
  top: calc(var(--header-h) + 20px);
}
.budget-card .eyebrow{ color: var(--brand); }
.budget-card h3{ color:#fff; margin-top:12px; font-size:1.2rem; }
.budget-card p{
  margin-top:12px;
  color: var(--muted-on-dark);
  font-size:.95rem;
}
.budget-figure{
  margin-top:20px;
  display:flex; align-items:baseline; gap:8px;
  font-weight:800;
  color: var(--brand);
}
.budget-figure .amount{ font-size:2.1rem; font-variant-numeric: tabular-nums; }
.budget-figure .unit{ font-size:1rem; color: var(--muted-on-dark); font-weight:600; }
.budget-card .fine{
  margin-top: 16px;
  font-size:.82rem;
  color: var(--muted-on-dark);
  border-top: 1px solid var(--line-on-dark);
  padding-top: 14px;
}

/* ==========================================================================
   Case study
   ========================================================================== */
.case-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
}
.case-gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
}
.case-gallery img{
  width:100%; height:100%;
  aspect-ratio: 3/4;
  object-fit:cover;
}
.case-gallery figure{ margin:0; overflow:hidden; }
.case-body{
  padding: 28px 24px 32px;
}
@media (min-width:700px){ .case-body{ padding: 36px 40px 42px; } }
.case-body h3{ font-size:1.3rem; }
.case-meta{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:12px;
}
.case-meta span{
  font-size:.78rem;
  font-weight:700;
  padding:5px 11px;
  border-radius:999px;
  background: var(--bg);
  border:1px solid var(--line);
  color: var(--muted);
}
.case-template{
  margin-top: 22px;
  padding: 20px 20px 22px;
  font-size: .98rem;
  line-height:1.75;
}
.case-quote{
  margin-top: 20px;
  padding-inline-start: 18px;
  border-inline-start: 3px solid var(--brand);
  font-style: italic;
  color: var(--charcoal);
}
.case-note{
  margin-top: 24px;
  font-size: .84rem;
}

/* ==========================================================================
   Who it's for
   ========================================================================== */
.fit-grid{
  display:grid;
  gap: 20px;
}
@media (min-width:800px){
  .fit-grid{ grid-template-columns: 1fr 1fr; gap: 24px; }
}
.fit-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  border: 1.5px solid var(--line);
}
.fit-card.fit-yes{ border-color: rgba(48,215,199,0.5); }
.fit-card.fit-no{ background: var(--charcoal); color:#fff; border-color: var(--charcoal); }
.fit-card h3{ display:flex; align-items:center; gap:10px; }
.fit-card.fit-no h3{ color:#fff; }
.fit-card ul{ margin-top:18px; display:flex; flex-direction:column; gap:14px; }
.fit-card li{ display:flex; gap:12px; align-items:flex-start; font-size:.96rem; }
.fit-card.fit-no li{ color: var(--muted-on-dark); }
.fit-card:not(.fit-no) li{ color: var(--charcoal); }
.fit-icon{ flex:none; margin-top:2px; }
.fit-yes .fit-icon{ color: var(--brand-text); }
.fit-no .fit-icon{ color: #8b8f8f; }

/* ==========================================================================
   About (compact)
   ========================================================================== */
.about-grid{
  display:grid;
  gap: 30px;
  align-items:center;
}
@media (min-width:900px){
  .about-grid{ grid-template-columns: 1fr 1fr; gap:56px; }
}
.about-photos{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}
.about-photos > picture{ min-width: 0; }
.about-photos img{
  border-radius: var(--radius-md);
  width:100%; height:100%; object-fit:cover;
}
.about-photos .ph-a{ aspect-ratio: 3/4; }
.about-photos .ph-b{ aspect-ratio: 3/4; margin-top: 26px; }
.about-copy p{ color: var(--charcoal); }
.about-copy p + p{ margin-top: 14px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{
  border-top: 1px solid var(--line);
  max-width: 820px;
}
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 20px 2px;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{
  flex:none;
  width:26px; height:26px;
  border-radius:50%;
  border: 1.5px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after{
  content:"";
  position:absolute;
  background: var(--charcoal);
  transition: opacity .2s var(--ease);
}
.faq-item summary .plus::before{ width:10px; height:2px; }
.faq-item summary .plus::after{ width:2px; height:10px; }
.faq-item[open] summary .plus{ transform: rotate(45deg); border-color: var(--brand); }
.faq-item p.answer{
  padding: 0 2px 22px;
  color: var(--muted);
  max-width: 680px;
  font-size: .98rem;
}

/* ==========================================================================
   Final CTA + Form
   ========================================================================== */
.final-cta{
  background: var(--black);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:"";
  position:absolute;
  inset-inline-start:-10%; top:-30%;
  width:60%; height:160%;
  background: radial-gradient(closest-side, rgba(48,215,199,0.16), transparent 70%);
  pointer-events:none;
}
.final-head{ position:relative; max-width: 640px; }
.final-head .eyebrow{ color: var(--brand); }
.final-head h2{ color:#fff; margin-top:14px; }
.final-head p{ margin-top:14px; color: var(--muted-on-dark); font-size:1.02rem; }

.form-shell{
  position:relative;
  margin-top: 42px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 20px 30px;
  max-width: 780px;
}
@media (min-width:700px){ .form-shell{ padding: 40px 44px 44px; } }

fieldset{ border:0; margin:0; padding:0; }

.field{ margin-bottom: 20px; }
.field label{
  display:block;
  font-weight:700;
  font-size:.95rem;
  margin-bottom: 8px;
}
.field .hint{
  display:block;
  font-weight:400;
  color: var(--muted);
  font-size:.82rem;
  margin-top:2px;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea{
  width:100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--white);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea{ min-height:96px; resize:vertical; }
.field input:focus, .field textarea:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(48,215,199,0.18);
  outline:none;
}
.field.has-error input, .field.has-error textarea{ border-color:#C64545; }
.field .error-msg{
  display:none;
  color:#C64545;
  font-size:.82rem;
  margin-top:6px;
  font-weight:600;
}
.field.has-error .error-msg{ display:block; }

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

.field-consent{
  margin-top: 6px;
  margin-bottom: 26px;
}
.consent-row{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  cursor:pointer;
}
.consent-row input[type="checkbox"]{
  flex:none;
  width:20px; height:20px;
  margin-top:2px;
  accent-color: var(--brand-dim);
  cursor:pointer;
}
.consent-row span{
  font-size:.86rem;
  color: var(--muted);
  line-height:1.55;
  font-weight:400;
}

.form-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-top: 8px;
}
.form-nav .btn{ flex:1; }
.form-nav .btn-back{ flex: 0 0 auto; }

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

.trust-line{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 8px;
  font-size:.84rem;
  color: var(--muted);
}
.trust-line svg{ flex:none; color: var(--brand-text); }

.form-error-banner{
  display:none;
  background:#FCEDED;
  border:1px solid #E7B4B4;
  color:#8B2C2C;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size:.9rem;
  margin-bottom: 18px;
}
.form-error-banner.is-visible{ display:block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--charcoal);
  color: var(--muted-on-dark);
  padding: 56px 0 26px;
}
.footer-top{
  display:grid;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-on-dark);
}
@media (min-width:800px){
  .footer-top{ grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 40px; }
}
.footer-brand img{ height:26px; }
.footer-brand p{ margin-top:14px; font-size:.92rem; max-width:340px; }
.footer-col h4{
  color:#fff;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:.92rem; transition: color .15s; }
.footer-col a:hover{ color: var(--brand); }
.footer-bottom{
  padding-top: 22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap: 12px;
  font-size:.8rem;
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-cta{
  position: fixed;
  inset-inline:0; bottom:0;
  z-index: 450;
  background: rgba(244,246,245,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px var(--gutter);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform .28s var(--ease);
}
.sticky-cta.is-visible{ transform: translateY(0); }
.sticky-cta .btn{ width:100%; padding:15px; }
@media (min-width:960px){ .sticky-cta{ display:none; } }

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

/* ==========================================================================
   Utilities
   ========================================================================== */
.visually-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
