/* ============================================================
   ENGEL & VÖLKERS — Sell Page
   Brand-aligned design system
   ============================================================ */

/* ── BRAND FONTS ──────────────────────────────────────────── */
@font-face {
  font-family: 'EVHead';
  src: url('fonts/EngelVoelkersHead_Bd.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'EVHead';
  src: url('fonts/EngelVoelkersHead_Rg.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'EVText';
  src: url('fonts/EngelVoelkersText_Bd.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'EVText';
  src: url('fonts/EngelVoelkersText_Rg.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'EVText';
  src: url('fonts/EngelVoelkersText_Lt.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* E&V Brand Colors */
  --bg:        #FFFFFF;
  --bg-2:      #F4F4F4;
  --bg-dark:   #1A1A1A;
  --text:      #1A1A1A;
  --text-light: #6B6B6B;
  --red:       #E2001A;
  --border:    rgba(26, 26, 26, 0.12);
  --border-strong: rgba(26, 26, 26, 0.25);

  /* Fonts */
  --font-head: 'EVHead', 'Georgia', serif;
  --font-body: 'EVText', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --pad-x: 30px;
  --radius: 2px;
  --radius-md: 4px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-header { margin-bottom: 4rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-spring);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: #fff;
  margin-top: 2rem;
}
.btn--primary:hover { background: #c4001a; }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn--outline:hover { background: var(--text); color: #fff; }

.btn--light {
  background: #fff;
  color: var(--text);
}
.btn--light:hover { background: var(--bg-2); }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(26,26,26,0.08);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav__links a:hover { opacity: 1; color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 1rem var(--pad-x);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--red); padding-left: calc(var(--pad-x) + 6px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}
.hero.visible-bg::before { transform: scale(1); }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 8, 0.82) 0%,
    rgba(10, 10, 8, 0.58) 50%,
    rgba(10, 10, 8, 0.28) 100%
  );
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(68px + 4.5rem) var(--pad-x) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  background: rgba(226,0,26,0.12);
  border: 1px solid rgba(226,0,26,0.3);
  padding: 5px 14px;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__script {
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
}
.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero__stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  margin: 0 1.5rem;
}

/* ── HERO FORM CARD ───────────────────────────────────────── */
.hero__right { position: relative; }

.hero__form-card {
  background: #fff;
  padding: 2.25rem 2rem 2rem;
  border-top: 3px solid var(--red);
}

.hero__form-logo {
  height: 22px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}

.hero__form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.hero__form-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}

.hero__form-sub {
  font-size: 13px;
  color: var(--text-light);
}

/* ── FORM ─────────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.form__row--3 { grid-template-columns: 1fr 1fr 1fr; }

.form__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form__group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form__group input,
.form__group textarea,
.form__group select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.form__group input::placeholder,
.form__group textarea::placeholder { opacity: 0.35; }

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(226,0,26,0.08);
  background: #fff;
}

/* ── ROLLING TEXT BUTTON ──────────────────────────────────── */
.btn-rolling {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 0 16px 0 20px;
  height: 50px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease;
  margin-top: 0.5rem;
  font-family: var(--font-body);
}
.btn-rolling:hover { background: var(--red); }

.btn-rolling__track {
  display: flex;
  flex-direction: column;
  height: 1.2em;
  overflow: hidden;
  flex: 1;
}

.btn-rolling__word {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2em;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  color: #fff;
}

.btn-rolling:hover .btn-rolling__word--top  { transform: translateY(-100%); }
.btn-rolling:hover .btn-rolling__word--bot  { transform: translateY(-100%); }

.btn-rolling__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), background 0.2s;
}
.btn-rolling:hover .btn-rolling__arrow {
  transform: translateX(3px);
  background: rgba(255,255,255,0.2);
}

/* ── WHY ──────────────────────────────────────────────────── */
.why {
  padding: 7rem 0;
  background: var(--bg-2);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why__card {
  background: var(--bg-2);
  padding: 2.5rem;
  transition: background 0.25s ease;
}
.why__card:hover { background: var(--bg); }

.why__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226,0,26,0.08);
  margin-bottom: 1.5rem;
  color: var(--red);
}

.why__card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.why__card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
}

.why__card--accent {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.why__card--accent:hover { background: #111; }
.why__card--accent blockquote {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: #fff;
}
.why__card--accent cite {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
}

/* ── HOW ──────────────────────────────────────────────────── */
.how {
  padding: 7rem 0;
  background: var(--bg);
}

.how__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.how__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
  padding: 2.75rem;
  transition: background 0.25s ease;
}
.how__step:hover { background: var(--bg-2); }

.how__step-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  opacity: 0.06;
  line-height: 1;
}

.how__step-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.how__step-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services {
  padding: 7rem 0;
  background: var(--bg-2);
}

.services__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.services__left p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  margin-top: 1.25rem;
  max-width: 380px;
}

.services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 0.25rem;
}
.services__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  transition: padding-left 0.2s var(--ease-out), color 0.2s;
}
.services__list li:first-child { border-top: 1px solid var(--border); }
.services__list li:hover { padding-left: 6px; color: var(--red); }

.services__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--red);
  color: #fff;
  flex-shrink: 0;
}

/* ── IMAGE BREAK ──────────────────────────────────────────── */
.img-break {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 6s ease;
}
.img-break:hover img { transform: scale(1.03); }
.img-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.6) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem var(--pad-x);
}
.img-break__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.img-break__pill svg { stroke: var(--red); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
  padding: 7rem 0;
  background: var(--bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: stretch;
}

.testimonial-card {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.25s ease;
}
.testimonial-card:hover { background: var(--bg-2); }

.testimonial-card--large {
  background: var(--bg-dark);
}
.testimonial-card--large:hover { background: #111; }
.testimonial-card--large p { color: rgba(255,255,255,0.65); opacity: 1; }
.testimonial-card--large .testimonial-card__stars { color: var(--red); }
.testimonial-card--large strong { color: #fff; }
.testimonial-card--large span { color: rgba(255,255,255,0.35); }

.testimonial-card__stars {
  color: var(--red);
  font-size: 13px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26,26,26,0.1);
}
.testimonial-card--large .testimonial-card__author { border-color: rgba(255,255,255,0.1); }
.testimonial-card__author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.testimonial-card__author span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.6;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: 7rem 0;
  background: var(--bg-2);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  letter-spacing: -0.01em;
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), background 0.2s, border-color 0.2s;
  color: var(--text);
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.faq__a.open { grid-template-rows: 1fr; }
.faq__a > p {
  overflow: hidden;
  padding-bottom: 1.5rem;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  padding: 6rem 0;
  background: var(--bg-dark);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-banner__text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--large { grid-column: span 2; }
  .services__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__grid { padding-top: calc(68px + 2.5rem); padding-bottom: 3rem; }
  .hero__headline { font-size: 2.4rem; }
  .hero__stat-divider { display: none; }
  .hero__stat { flex: 0 0 calc(50% - 0.5rem); }
  .hero__stats { flex-wrap: wrap; gap: 1rem; }

  .why__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--large { grid-column: auto; }
  .faq__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .img-break { height: 280px; }
}

@media (max-width: 480px) {
  .form__row { grid-template-columns: 1fr; }
  .form__row--3 { grid-template-columns: 1fr 1fr; }
  .hero__form-card { padding: 1.5rem 1.25rem; }
}

/* ── SPLIT STRIP ──────────────────────────────────────────── */
.split-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-strip__img {
  overflow: hidden;
  position: relative;
}
.split-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s ease;
}
.split-strip:hover .split-strip__img img { transform: scale(1.04); }

.split-strip__text {
  background: var(--bg-dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.split-strip__text .section-tag { color: var(--red); }
.split-strip__text .section-title { color: #fff; }
.split-strip__text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
}

/* ── HOW VISUAL ───────────────────────────────────────────── */
.how__visual {
  margin-bottom: 2.5rem;
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--border);
}
.how__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 6s ease;
}
.how__visual:hover img { transform: scale(1.03); }

/* ── SERVICES IMAGE ───────────────────────────────────────── */
.services__img {
  margin-top: 2.5rem;
  overflow: hidden;
  height: 280px;
}
.services__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 6s ease;
}
.services__img:hover img { transform: scale(1.03); }

/* ── FAQ LAYOUT ───────────────────────────────────────────── */
.faq__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}
.faq__sidebar {
  position: sticky;
  top: 100px;
  overflow: hidden;
  height: 480px;
}
.faq__sidebar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.faq__content .section-header { margin-bottom: 0; }

/* ── CTA BANNER (with image BG) ───────────────────────────── */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.72);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE (new sections) ────────────────────────────── */
@media (max-width: 1024px) {
  .split-strip { grid-template-columns: 1fr; }
  .split-strip__img { height: 320px; }
  .faq__layout { grid-template-columns: 1fr; }
  .faq__sidebar { display: none; }
}
@media (max-width: 768px) {
  .how__visual { height: 240px; }
  .services__img { height: 200px; }
  .split-strip__text { padding: 3rem 2rem; }
}
