:root {
  --bg: #0d0e10;
  --surface: #17191d;
  --surface-soft: #242018;
  --ink: #f7f0e3;
  --muted: #b9ae99;
  --line: rgba(218, 172, 89, 0.2);
  --navy: #d7aa52;
  --navy-2: #0b0c0f;
  --graphite: #111216;
  --gold: #d7aa52;
  --gold-2: #f4d993;
  --orange: #a97832;
  --rose: #7b5a2b;
  --success: #1d7b63;
  --danger: #b42318;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.14);
  --shadow-soft: 0 14px 44px rgba(17, 24, 39, 0.09);
  --radius: 8px;
  --radius-sm: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  position: relative;
  isolation: isolate;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #0f1011;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 32%, rgba(215, 170, 82, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 62%, rgba(244, 217, 147, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 12%, rgba(215, 170, 82, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 17% 20%, transparent 0 290px, rgba(215, 170, 82, 0.13) 291px 293px, transparent 294px),
    radial-gradient(circle at 78% 30%, transparent 0 430px, rgba(244, 217, 147, 0.11) 431px 433px, transparent 434px),
    radial-gradient(circle at 43% 82%, transparent 0 520px, rgba(215, 170, 82, 0.08) 521px 523px, transparent 524px),
    radial-gradient(circle at 20% 8%, rgba(215, 170, 82, 0.1), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(244, 217, 147, 0.07), transparent 30%),
    radial-gradient(circle at 74% 76%, rgba(167, 120, 50, 0.07), transparent 30%),
    linear-gradient(180deg, #0f1011 0%, #111214 38%, #0f1011 72%, #11100d 100%);
  background-size:
    190px 230px,
    280px 260px,
    360px 320px,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%;
  background-position:
    0 0,
    72px 38px,
    118px 64px,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 50% 12%, rgba(255, 244, 219, 0.055), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(0, 0, 0, 0.18), transparent 42%);
  content: "";
  pointer-events: none;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p,
summary {
  overflow-wrap: break-word;
}

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

.section {
  position: relative;
  padding: clamp(74px, 9vw, 126px) 0;
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.9vw, 64px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

p {
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f4d993, var(--gold) 48%, #8e6428);
  box-shadow: 0 16px 42px rgba(215, 170, 82, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffe3a0, #d2a14c 48%, #765222);
}

.btn-light {
  color: var(--navy);
  background: #fff;
  border-color: rgba(16, 35, 63, 0.12);
}

.hero .btn-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.btn-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(16, 35, 63, 0.14);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  color: var(--gold);
  content: "→";
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(1280px, calc(100% - 28px));
  min-height: 68px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(244, 217, 147, 0.28);
  border-radius: 24px;
  background: rgba(17, 18, 22, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  min-height: 62px;
  background: rgba(13, 14, 16, 0.9);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  max-height: 54px;
  object-fit: contain;
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 1.45vw, 23px);
  color: rgba(247, 240, 227, 0.74);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav a,
.phone-link {
  transition: color 160ms ease;
}

.nav a:hover,
.phone-link:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.phone-link {
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.hero {
  margin-top: 0;
  padding-top: 150px;
  padding-bottom: clamp(70px, 8vw, 104px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.9) 0%, rgba(12, 10, 8, 0.72) 44%, rgba(13, 11, 8, 0.36) 100%),
    linear-gradient(180deg, rgba(9, 9, 8, 0.62), rgba(9, 9, 8, 0.6)),
    url("assets/photos/hero-apartment.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%),
    radial-gradient(circle at 18% 26%, rgba(215, 170, 82, 0.2), transparent 32%);
  content: "";
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  height: clamp(260px, 22vw, 380px);
  background:
    linear-gradient(
      180deg,
      rgba(15, 16, 17, 0) 0%,
      rgba(15, 16, 17, 0.48) 38%,
      rgba(15, 16, 17, 0.88) 72%,
      #0f1011 100%
    );
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.hero h1,
.hero .hero-lead {
  color: #fff;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

.hero-title-location {
  display: block;
}

.hero .eyebrow {
  color: var(--gold-2);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-proof {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(244, 217, 147, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(244, 217, 147, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.hero-proof strong {
  color: var(--gold-2);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

.hero-proof span {
  color: rgba(247, 240, 227, 0.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.badge-row span,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.hero .badge-row span {
  color: #fff;
  background: rgba(215, 170, 82, 0.12);
  border-color: rgba(244, 217, 147, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-copy,
.hero-panel,
.experience-photo,
.experience-copy,
.quiz-copy,
.quiz-card,
.marketing-grid > *,
.legal-grid > *,
.form-section-grid > *,
.contacts-grid > *,
.faq-grid > * {
  min-width: 0;
}

.lead-card,
.object-card,
.service-card,
.benefit-card,
.quiz-card,
.timeline-card,
.dashboard-card,
.case-card,
.review-card,
.media-card,
.docs-grid article,
.form-card,
.contact-panel,
.map-card,
.faq-list details,
.legal-timeline article {
  border: 1px solid rgba(244, 217, 147, 0.16);
  border-radius: var(--radius);
  background: rgba(23, 25, 29, 0.88);
  box-shadow: var(--shadow-soft);
}

.lead-card {
  padding: 24px;
}

.hero .lead-card {
  background: rgba(21, 20, 18, 0.88);
  border-color: rgba(244, 217, 147, 0.26);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.lead-card h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: #efe5d0;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(244, 217, 147, 0.22);
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 126px;
  padding-block: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(244, 217, 147, 0.82);
  box-shadow: 0 0 0 4px rgba(215, 170, 82, 0.16);
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 240, 227, 0.5);
}

.lead-card label + label,
.lead-card .check,
.form-card label + label,
.modal-dialog label + label {
  margin-top: 14px;
}

.option-grid-contact label + label,
.modal-dialog .option-grid-contact label + label {
  margin-top: 0;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.check a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

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

.contact-methods {
  margin-top: 14px;
}

.contact-methods-label {
  display: block;
  margin-bottom: 10px;
  color: #efe5d0;
  font-size: 14px;
  font-weight: 800;
}

.option-grid-contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lead-card .btn,
.form-card .btn,
.modal-dialog .btn {
  width: 100%;
  margin-top: 18px;
}

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

.form-success,
.form-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.form-success {
  color: var(--success);
  background: rgba(36, 114, 77, 0.1);
}

.form-error {
  color: var(--danger);
  background: rgba(180, 35, 24, 0.08);
}

.object-card {
  overflow: hidden;
}

.object-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 170, 82, 0.14), rgba(242, 162, 58, 0.18)),
    linear-gradient(135deg, #dcebf3 0 18%, #f6fbff 18% 38%, #97d9f7 38% 52%, #eaf7fd 52% 70%, #4c6d86 70% 100%);
}

.object-visual::after,
.case-photo::after,
.experience-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.object-visual::after {
  background: linear-gradient(180deg, transparent 42%, rgba(7, 20, 41, 0.46));
}

.object-visual img,
.case-photo img,
.experience-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 20, 41, 0.76);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.object-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.object-info div {
  padding: 18px;
  background: #fff;
}

.object-info span,
.stats-grid span,
.metric span,
.contact-panel span,
.case-type,
dt {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.object-info strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stats-grid div {
  min-height: 118px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #243f64);
  box-shadow: var(--shadow-soft);
}

.hero .stats-grid div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 20, 41, 0.56);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.stats-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 27px;
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.76);
  text-transform: none;
}

.experience {
  padding-top: clamp(42px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 247, 235, 0.58)),
    linear-gradient(90deg, rgba(242, 162, 58, 0.12), rgba(215, 170, 82, 0.08));
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.experience-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  background: #d9eaf3;
  box-shadow: 0 28px 82px rgba(17, 24, 39, 0.16);
}

.experience-photo::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 20, 41, 0.62)),
    radial-gradient(circle at 20% 16%, rgba(255, 212, 138, 0.3), transparent 28%);
}

.photo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  color: #fff;
  background: rgba(7, 20, 41, 0.58);
  box-shadow: 0 18px 48px rgba(7, 20, 41, 0.22);
  backdrop-filter: blur(16px);
}

.photo-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-note strong {
  display: block;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.12;
}

.experience-copy > p:not(.eyebrow) {
  max-width: 660px;
  font-size: 18px;
}

.experience-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.experience-points article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.experience-points span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  font-weight: 900;
}

.experience-points h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.experience-points p {
  margin-bottom: 0;
}

.service-grid,
.benefit-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 100%;
  padding: 24px;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.case-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 217, 147, 0.36);
  box-shadow: var(--shadow);
}

.service-card-accent {
  color: #fff;
  background:
    radial-gradient(circle at 22% 0, rgba(244, 217, 147, 0.22), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
}

.service-card-accent h3,
.service-card-accent p,
.service-card-accent li,
.service-card-accent .text-link {
  color: #fff;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff2db, #d7aa52);
  font-weight: 900;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 6px 0 24px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(247, 240, 227, 0.78);
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.service-card .text-link {
  margin-top: auto;
}

.benefits {
  overflow: hidden;
  padding: clamp(92px, 8vw, 132px) 0 clamp(82px, 7vw, 112px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.012)),
    #211f19;
}

.benefits .container {
  width: min(1776px, calc(100% - 96px));
}

.benefits .section-head {
  max-width: none;
  margin-bottom: clamp(68px, 6.5vw, 86px);
}

.benefits .eyebrow {
  margin-bottom: 26px;
  font-size: clamp(13px, 0.95vw, 18px);
  letter-spacing: 0.12em;
}

.benefits .section-head h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 4.7vw, 72px);
  line-height: 1;
}

.benefit-grid {
  column-gap: clamp(24px, 1.3vw, 28px);
  row-gap: clamp(30px, 3vw, 40px);
}

.benefit-card {
  display: grid;
  grid-template-columns: clamp(56px, 3.5vw, 72px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 2.1vw, 42px);
  min-height: 0;
  padding: 0 0 clamp(36px, 2.7vw, 48px);
  border: 0;
  border-bottom: 2px solid rgba(215, 170, 82, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: clamp(56px, 3.5vw, 72px);
  height: clamp(56px, 3.5vw, 72px);
  border: 2px solid rgba(244, 217, 147, 0.38);
  border-radius: 50%;
  color: #f4d993;
  background:
    radial-gradient(circle at 35% 28%, rgba(244, 217, 147, 0.36), rgba(215, 170, 82, 0.08) 68%),
    rgba(215, 170, 82, 0.12);
  box-shadow:
    inset 0 0 24px rgba(244, 217, 147, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.12);
  font-size: clamp(24px, 1.45vw, 31px);
  font-weight: 900;
  line-height: 1;
}

.benefit-card h3 {
  max-width: 320px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 1.47vw, 30px);
  font-weight: 900;
  line-height: 1.14;
}

.quiz-layout,
.marketing-grid,
.legal-grid,
.form-section-grid,
.contacts-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.quiz-copy,
.form-section-grid > div:first-child,
.faq-grid > div:first-child {
  position: sticky;
  top: 120px;
}

.callout {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #2a2114, #6e4c20);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
}

.callout span {
  color: rgba(255, 255, 255, 0.78);
}

.quiz-card,
.form-card {
  padding: clamp(22px, 4vw, 34px);
}

.quiz-top {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.quiz-top > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 217, 147, 0.14);
}

.progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 240ms ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: grid;
  gap: 18px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-grid label {
  cursor: pointer;
}

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(244, 217, 147, 0.18);
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.option-grid input:checked + span {
  border-color: rgba(244, 217, 147, 0.78);
  background: rgba(215, 170, 82, 0.16);
  box-shadow: 0 0 0 4px rgba(215, 170, 82, 0.13);
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.quiz-actions .btn {
  min-width: 150px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card {
  min-height: 250px;
  padding: 24px;
}

.timeline-card span,
.legal-timeline span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.timeline-card h3 {
  font-size: 20px;
}

.marketing {
  color: #fff;
  background:
    radial-gradient(circle at 22% 20%, rgba(244, 217, 147, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-2), #322414);
}

.marketing h2,
.marketing h3 {
  color: #fff;
}

.marketing p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.feature-list article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-list h3 {
  font-size: 17px;
}

.dashboard-card {
  padding: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.dashboard-head span {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-head strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: #18331f;
  background: #dff6cc;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric:last-child {
  border-bottom: 0;
}

.metric span {
  color: rgba(255, 255, 255, 0.7);
}

.metric strong {
  font-size: 30px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

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

.legal-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.legal-timeline {
  display: grid;
  gap: 14px;
}

.legal-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding: 24px;
}

.legal-timeline span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  font-size: 14px;
  line-height: 1;
}

.legal-timeline article > div {
  min-width: 0;
}

.legal-timeline h3 {
  margin-bottom: 6px;
  font-size: 22px;
  overflow-wrap: normal;
}

.legal-timeline p {
  max-width: 560px;
  margin-bottom: 0;
  overflow-wrap: normal;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 190px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 170, 82, 0.16), rgba(242, 162, 58, 0.22)),
    linear-gradient(135deg, #a7b9c8 0 18%, #eef8fc 18% 42%, #82d7f7 42% 58%, #f7fcff 58% 76%, #194966 76% 100%);
}

.case-photo::after {
  background: linear-gradient(180deg, transparent 46%, rgba(7, 20, 41, 0.22));
}

.case-card:hover .case-photo img {
  transform: scale(1.045);
}

.case-photo img {
  transition: transform 480ms ease;
}

.case-photo-overlay::after {
  background:
    linear-gradient(180deg, rgba(7, 20, 41, 0.1), rgba(7, 20, 41, 0.46)),
    linear-gradient(135deg, rgba(242, 162, 58, 0.2), transparent 48%);
}

.case-photo-alt {
  background:
    linear-gradient(135deg, rgba(215, 170, 82, 0.1), rgba(242, 162, 58, 0.22)),
    linear-gradient(135deg, #2b251b 0 22%, #6f552b 22% 48%, #fff2db 48% 70%, #d7aa52 70% 100%);
}

.case-photo-warm {
  background:
    linear-gradient(135deg, rgba(244, 217, 147, 0.18), rgba(37, 37, 37, 0.12)),
    linear-gradient(135deg, #a8c9dc 0 24%, #e9f7fd 24% 50%, #315873 50% 68%, #f4fbff 68% 100%);
}

.case-photo-dark {
  background:
    linear-gradient(135deg, rgba(37, 37, 37, 0.46), rgba(244, 217, 147, 0.16)),
    linear-gradient(135deg, #252525 0 30%, #4b3a20 30% 54%, #fff2db 54% 72%, #d7aa52 72% 100%);
}

.case-photo-green {
  background:
    linear-gradient(135deg, rgba(215, 170, 82, 0.2), rgba(244, 217, 147, 0.14)),
    linear-gradient(135deg, #2b251b 0 26%, #7a5726 26% 52%, #fff2db 52% 72%, #5a3e1b 72% 100%);
}

.case-body {
  padding: 24px;
}

.case-body h3 {
  font-size: 21px;
}

.case-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.case-body dl div {
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 217, 147, 0.12), rgba(255, 244, 225, 0.06));
}

dd {
  margin: 2px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  font-weight: 900;
}

.review-top strong,
.review-top span {
  display: block;
}

.review-top span {
  color: var(--muted);
  font-size: 13px;
}

.stars {
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.media-block {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  margin-bottom: clamp(42px, 7vw, 76px);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.media-card {
  padding: 22px;
}

.media-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.media-card h3 {
  font-size: 19px;
}

.documents-block {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(244, 217, 147, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(35, 30, 20, 0.92), rgba(18, 19, 22, 0.86));
  box-shadow: var(--shadow-soft);
}

.documents-block .section-head {
  margin-bottom: 32px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.docs-grid article {
  overflow: hidden;
  border: 1px solid rgba(244, 217, 147, 0.16);
  border-radius: 22px;
  background: rgba(20, 20, 22, 0.96);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.docs-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 217, 147, 0.38);
  box-shadow: var(--shadow);
}

.docs-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--surface-soft);
}

.docs-grid img[data-doc-preview] {
  cursor: zoom-in;
  transition: transform 180ms ease, filter 180ms ease;
}

.docs-grid article:hover img[data-doc-preview] {
  transform: scale(1.012);
  filter: brightness(1.03);
}

.docs-grid h3 {
  min-height: 86px;
  margin: 0;
  padding: 16px;
  color: rgba(247, 240, 227, 0.76);
  font-size: 17px;
  line-height: 1.25;
}

.docs-grid p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(247, 240, 227, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  margin: 0 16px 18px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.doc-link:hover {
  color: #fff;
}

.form-section-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.form-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 22px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contacts-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.contact-panel article {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-panel article:last-of-type {
  border-bottom: 0;
}

.contact-panel a,
.contact-panel p {
  display: block;
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contact-actions .btn {
  display: inline-flex;
  margin-top: 0;
}

.contact-actions .btn-primary {
  color: #fff;
}

.map-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 217, 147, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(244, 217, 147, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #191713, #262017);
  background-size: 58px 58px, 58px 58px, auto;
}

.map-card::before,
.map-card::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(215, 170, 82, 0.28);
  content: "";
}

.map-card::before {
  width: 72%;
  height: 18px;
  left: -12%;
  top: 34%;
  transform: rotate(18deg);
}

.map-card::after {
  width: 20px;
  height: 84%;
  right: 28%;
  top: 8%;
  transform: rotate(-14deg);
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 42%;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 8px solid #16130d;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.28);
}

.map-office {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  padding: 22px;
  border-radius: 22px;
  background: rgba(16, 17, 20, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.map-office span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-office strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 24px;
}

.footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-2);
}

.footer h3 {
  color: #fff;
}

.footer .brand-logo {
  width: 196px;
  height: auto;
  max-height: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.footer-brand {
  width: fit-content;
  margin-bottom: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  gap: 36px;
}

.footer-award {
  width: min(230px, 100%);
  margin-top: 14px;
}

.footer-award-image {
  display: block;
  width: 100%;
  height: auto;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer nav,
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-trust {
  padding-top: 14px;
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 0 18px rgba(215, 170, 82, 0.16);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer-socials button,
.footer-bottom button:not(.footer-policy-button) {
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.footer-socials button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.footer-socials button:hover,
.footer-bottom button:hover {
  color: #fff;
}

.floating-call {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--orange));
  box-shadow: 0 18px 44px rgba(215, 170, 82, 0.26);
  cursor: pointer;
  font-weight: 900;
}

.mobile-actions {
  display: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 41, 0.56);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(7, 20, 41, 0.34);
}

.modal-dialog .option-grid span {
  justify-content: center;
  min-height: 52px;
  color: rgba(247, 240, 227, 0.86);
  background: rgba(255, 255, 255, 0.05);
}

.modal-dialog .option-grid input:checked + span {
  color: #1e1a12;
  border-color: rgba(255, 225, 163, 0.96);
  background: linear-gradient(135deg, #f6d681, #d9a647);
  box-shadow:
    0 0 0 4px rgba(215, 170, 82, 0.18),
    0 14px 28px rgba(215, 170, 82, 0.2);
  font-weight: 900;
}

.modal-success {
  display: grid;
  gap: 14px;
  text-align: center;
}

.modal-success p {
  margin: 0;
  color: rgba(247, 240, 227, 0.8);
  font-size: 17px;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 26px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(244, 217, 147, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(30, 27, 23, 0.96), rgba(13, 14, 16, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.cookie-banner-copy {
  display: grid;
  gap: 8px;
}

.cookie-banner-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(247, 240, 227, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-copy a {
  color: var(--gold-2);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-lightbox-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-height: calc(100vh - 48px);
  padding: 18px;
  border: 1px solid rgba(244, 217, 147, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(28, 25, 22, 0.96), rgba(13, 14, 16, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.image-lightbox-figure {
  margin: 0;
}

.image-lightbox-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.image-lightbox-caption {
  margin-top: 14px;
  color: rgba(247, 240, 227, 0.88);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: rgba(247, 240, 227, 0.92);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 28px;
  backdrop-filter: blur(8px);
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.valuation .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 10px;
    width: min(1040px, calc(100% - 24px));
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: center;
    order: 3;
    gap: clamp(10px, 1.6vw, 18px);
    font-size: 12px;
  }

  .header-actions {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .experience-grid,
  .quiz-layout,
  .marketing-grid,
  .legal-grid,
  .form-section-grid,
  .contacts-grid,
  .faq-grid,
  .media-block {
    grid-template-columns: 1fr;
  }

  .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-copy,
  .form-section-grid > div:first-child,
  .faq-grid > div:first-child {
    position: static;
  }

  .hero-grid {
    padding-top: 24px;
  }

  .benefit-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-table {
    min-width: 760px;
  }
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 92px;
  }

  body {
    padding-bottom: 84px;
    font-size: 15px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(27px, 8.8vw, 36px);
    line-height: 1.1;
  }

  h3 {
    font-size: 20px;
  }

  .section-head,
  .section-head.align-left {
    margin-bottom: 28px;
    text-align: left;
  }

  .eyebrow,
  .mini-label {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    width: auto;
    min-height: 60px;
    padding: 7px;
    gap: 8px;
    border-radius: 18px;
    transform: none;
  }

  .brand-logo {
    width: auto;
    height: 48px;
    max-height: 48px;
  }

  .menu-toggle {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav,
  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .site-header.menu-open .nav,
  .site-header.menu-open .header-actions {
    max-height: 540px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .site-header.menu-open ~ .mobile-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .nav {
    grid-row: 2;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-top: 1px solid transparent;
    flex-direction: column;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open .nav {
    margin-top: 8px;
    padding-top: 10px;
    border-top-color: var(--line);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding-inline: 2px;
  }

  .site-header.menu-open .header-actions {
    grid-column: 1 / -1;
    grid-row: 3;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding-top: 10px;
    flex-direction: column;
  }

  .phone-link {
    display: flex;
    align-items: center;
    min-height: 42px;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid rgba(244, 217, 147, 0.2);
    border-radius: 14px;
    background: rgba(244, 217, 147, 0.08);
    font-size: 13px;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions .btn {
    width: 100%;
    display: none;
    min-height: 46px;
    padding-inline: 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .site-header.menu-open .header-actions .btn {
    display: inline-flex;
  }

  .hero {
    margin-top: 0;
    padding-top: 112px;
  }

  .hero-grid {
    gap: 24px;
    padding-top: 0;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 342px;
  }

  .hero-panel {
    max-width: 342px;
  }

  .hero-cta-row,
  .contact-actions,
  .quiz-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    display: none;
  }

  .btn,
  .quiz-actions .btn {
    width: 100%;
  }

  .badge-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .badge-row span,
  .pill-grid span {
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .badge-row span {
    width: auto;
    font-size: 12px;
  }

  .pill-grid span {
    width: 100%;
  }

  .lead-card,
  .quiz-card,
  .form-card,
  .contact-panel,
  .modal-dialog {
    padding: 18px;
    border-radius: 22px;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    border-radius: 14px;
  }

  .lead-card h2 {
    font-size: 25px;
  }

  .object-visual {
    min-height: 190px;
  }

  .experience {
    padding-top: 56px;
  }

  .experience-photo {
    min-height: 340px;
    border-radius: 24px;
  }

  .photo-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .experience-points article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .object-info div,
  .stats-grid div {
    padding: 16px;
  }

  .stats-grid div {
    min-height: auto;
  }

  .stats-grid strong {
    font-size: 24px;
  }

  .service-card,
  .timeline-card,
  .review-card,
  .case-body,
  .media-card {
    padding: 18px;
  }

  .service-card {
    border-radius: 22px;
  }

  .object-info,
  .stats-grid,
  .service-grid,
  .benefit-grid,
  .review-grid,
  .feature-list,
  .media-grid,
  .docs-grid,
  .form-two,
  .option-grid,
  .option-grid-compact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-timeline article {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 360px;
  }

  .documents-block {
    padding: 16px;
    border-radius: 24px;
  }

  .docs-grid h3 {
    min-height: auto;
    padding: 14px;
    font-size: 16px;
  }

  .faq-list summary {
    min-height: 62px;
    padding: 0 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .footer {
    padding-bottom: 30px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-call {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: calc(100vw - 24px);
    max-width: 366px;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.18);
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 0;
    padding: 0 8px;
    border-radius: 16px;
    color: #fff;
    background: var(--navy);
    font-weight: 900;
    font-size: 13px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-actions a:last-child {
    color: var(--navy);
    background: rgba(244, 217, 147, 0.1);
  }
}

@media (max-width: 380px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .site-header {
    left: 8px;
    right: 8px;
    width: auto;
    padding: 8px;
    gap: 0 6px;
  }

  .brand-logo {
    height: 44px;
    max-height: 44px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 26px;
  }

  .lead-card,
  .quiz-card,
  .form-card,
  .contact-panel,
  .modal-dialog,
  .service-card,
  .timeline-card,
  .review-card,
  .case-body,
  .media-card {
    padding: 16px;
  }

  .documents-block {
    padding: 12px;
  }

  .mobile-actions {
    left: 10px;
    width: calc(100vw - 20px);
    max-width: 340px;
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
  }

  .mobile-actions a {
    min-height: 48px;
    border-radius: 13px;
    font-size: 13px;
  }
}

/* Dark premium gold theme */
.site-header,
.site-header.scrolled {
  border-color: rgba(244, 217, 147, 0.28);
  background: rgba(15, 15, 14, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
}

.menu-toggle {
  border-color: rgba(244, 217, 147, 0.24);
  background: rgba(244, 217, 147, 0.08);
}

.menu-toggle span {
  background: var(--gold-2);
}

.btn-light,
.btn-ghost {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(244, 217, 147, 0.28);
}

.hero {
  background-blend-mode: normal, normal, luminosity;
}

.lead-card,
.quiz-card,
.form-card,
.service-card,
.timeline-card,
.case-card,
.media-card,
.contact-panel,
.map-card,
.faq-list details,
.modal-dialog {
  color: var(--ink);
  border-color: rgba(244, 217, 147, 0.16);
  background: rgba(21, 22, 25, 0.92);
}

.hero .lead-card {
  background: rgba(21, 20, 18, 0.9);
}

.lead-card h2,
.quiz-copy h2,
.section-head h2,
.form-section-grid h2,
.faq-grid h2,
.contacts h2,
.quiz-card h3,
.form-card h3,
.service-card h3,
.benefit-card h3,
.timeline-card h3,
.case-card h3,
.media-card h3,
.docs-grid h3,
.contact-panel a,
.contact-panel p,
.modal-dialog h2 {
  color: #fff;
}

.stats-grid div {
  background: linear-gradient(135deg, #2a2114, #7a5726);
}

.hero .stats-grid div {
  border-color: rgba(244, 217, 147, 0.22);
  background: rgba(12, 12, 12, 0.62);
}

.service-card:hover,
.case-card:hover,
.review-card:hover,
.docs-grid article:hover {
  border-color: rgba(244, 217, 147, 0.42);
}

.service-card-accent {
  background:
    radial-gradient(circle at 22% 0, rgba(244, 217, 147, 0.18), transparent 34%),
    linear-gradient(145deg, #2d2417, #101114);
}

.card-icon,
.avatar {
  color: #16130d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.case-body dl div,
.object-info div {
  background: rgba(244, 217, 147, 0.08);
}

.case-photo img,
.experience-photo img,
.docs-grid img {
  filter: saturate(0.72) sepia(0.18);
}

.documents-block {
  border-color: rgba(244, 217, 147, 0.18);
  background: linear-gradient(180deg, rgba(35, 30, 20, 0.92), rgba(18, 19, 22, 0.86));
}

.docs-grid article {
  border-color: rgba(244, 217, 147, 0.16);
  background: rgba(20, 20, 22, 0.96);
}

.map-card::before,
.map-card::after {
  background: rgba(215, 170, 82, 0.28);
}

.map-office {
  background: rgba(16, 17, 20, 0.9);
}

.modal-close {
  color: var(--gold-2);
  background: rgba(244, 217, 147, 0.1);
}

.mobile-actions {
  border-color: rgba(244, 217, 147, 0.28);
  background: rgba(16, 17, 20, 0.92);
}

.mobile-actions a {
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--orange));
}

.mobile-actions a:last-child {
  color: var(--gold-2);
  background: rgba(244, 217, 147, 0.1);
}

.benefit-card:hover {
  border-color: rgba(244, 217, 147, 0.28);
  box-shadow: none;
  transform: none;
}

@media (max-width: 1200px) {
  .benefits .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .benefit-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 24px;
  }

  .benefit-icon {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 760px) {
  .benefits {
    padding: 64px 0;
  }

  .benefits .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .benefits .section-head {
    margin-bottom: 42px;
  }

  .benefits .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .benefits .section-head h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .benefit-grid {
    row-gap: 26px;
  }

  .benefit-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 0 0 26px;
    border-bottom-width: 1px;
  }

  .benefit-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .benefit-card h3 {
    max-width: none;
    font-size: 22px;
  }
}

/* Benefits card layout */
.benefits {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 5.8vw, 112px) 0 clamp(76px, 6vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at 50% 23%, rgba(244, 217, 147, 0.16), transparent 17%),
    radial-gradient(circle at 15% 36%, rgba(255, 255, 255, 0.06), transparent 24%),
    radial-gradient(circle at 85% 42%, rgba(215, 170, 82, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(18, 17, 14, 0.96)),
    #0e0e0c;
}

.benefits::before,
.benefits::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(244, 217, 147, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.benefits::before {
  left: -210px;
  top: 240px;
  width: 430px;
  height: 430px;
}

.benefits::after {
  right: -170px;
  top: -190px;
  width: 410px;
  height: 410px;
  box-shadow: 0 0 0 34px rgba(244, 217, 147, 0.025), 0 0 0 68px rgba(244, 217, 147, 0.018);
}

.benefits .container {
  position: relative;
  width: min(1824px, calc(100% - 108px));
}

.benefits .container::after {
  display: none;
}

.benefits .container::before {
  display: none;
}

.benefits .section-head {
  max-width: none;
  margin: 0 auto clamp(46px, 4vw, 68px);
  text-align: center;
}

.benefits .eyebrow {
  position: relative;
  margin: 0 0 54px;
  color: var(--gold);
  font-size: clamp(15px, 1.05vw, 22px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow: 0 0 16px rgba(215, 170, 82, 0.54);
}

.benefits .eyebrow::before {
  position: absolute;
  left: 50%;
  top: calc(100% + 28px);
  width: min(620px, 72vw);
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(215, 170, 82, 0.28) 36%, transparent 36% 64%, rgba(215, 170, 82, 0.28) 64%, transparent);
  content: "";
  transform: translateX(-50%);
}

.benefits .eyebrow::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 20px);
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  box-shadow: -38px 7px 0 -6px var(--gold), 38px 7px 0 -6px var(--gold), 0 0 16px rgba(215, 170, 82, 0.7);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.benefits .section-head h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(46px, 5.2vw, 92px);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 4px 18px rgba(255, 255, 255, 0.18), 0 18px 38px rgba(0, 0, 0, 0.82);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 1.6vw, 34px);
}

.benefit-card {
  position: relative;
  display: flex;
  gap: 0;
  min-height: clamp(292px, 16.4vw, 342px);
  padding: clamp(32px, 2vw, 40px) clamp(24px, 1.7vw, 34px) clamp(24px, 1.45vw, 30px);
  overflow: visible;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.benefit-card::before {
  display: none;
}

.benefit-card::after {
  display: none;
}

.benefit-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(106px, 6.1vw, 124px);
  height: clamp(106px, 6.1vw, 124px);
  margin: 0 0 clamp(18px, 1.25vw, 26px);
  border: 2px solid rgba(244, 217, 147, 0.72);
  border-radius: 50%;
  color: #d7aa52;
  background: radial-gradient(circle at 48% 44%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.52));
  box-shadow:
    inset 0 0 32px rgba(215, 170, 82, 0.11),
    0 0 0 1px rgba(215, 170, 82, 0.16),
    0 0 30px rgba(215, 170, 82, 0.18);
}

.benefit-icon::after {
  display: none;
}

.benefit-icon svg {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 5px rgba(244, 217, 147, 0.5));
}

.benefit-divider {
  position: relative;
  z-index: 1;
  display: block;
  width: 88px;
  height: 14px;
  margin: 0 auto clamp(12px, 0.85vw, 16px);
}

.benefit-divider::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(215, 170, 82, 0.55), transparent 42%, transparent 58%, rgba(215, 170, 82, 0.55));
  content: "";
}

.benefit-divider::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(23px, 1.45vw, 30px);
  font-weight: 400;
  line-height: 1.16;
  text-align: center;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

.benefit-card:hover {
  box-shadow: none;
  transform: none;
}

@media (max-width: 1200px) {
  .benefits .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .benefits {
    padding: 70px 0;
  }

  .benefits .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .benefits .section-head {
    margin-bottom: 42px;
  }

  .benefits .eyebrow {
    margin-bottom: 42px;
    font-size: 12px;
  }

  .benefits .eyebrow::before {
    width: min(260px, 82vw);
  }

  .benefits .section-head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card {
    min-height: 290px;
    padding: 34px 24px 30px;
    border-radius: 20px;
  }

  .benefit-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 22px;
  }

  .benefit-card h3 {
    max-width: 320px;
    font-size: clamp(26px, 8vw, 32px);
  }
}

/* Services premium layout */
.services {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 7.2vw, 132px) 0 clamp(84px, 7vw, 124px);
  color: #fff;
  background:
    radial-gradient(circle at 49% 28%, rgba(215, 170, 82, 0.18), transparent 25%),
    radial-gradient(circle at 12% 17%, rgba(215, 170, 82, 0.08) 0 1px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(13, 14, 16, 0.86), rgba(13, 14, 16, 0.96)),
    #0d0e10;
}

.services::before,
.services::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(215, 170, 82, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.services::before {
  left: 15%;
  top: -120px;
  width: min(880px, 70vw);
  height: min(880px, 70vw);
  box-shadow: 0 0 0 96px rgba(215, 170, 82, 0.025);
}

.services::after {
  right: 8%;
  top: 20px;
  width: min(660px, 52vw);
  height: min(660px, 52vw);
  opacity: 0.55;
}

.services .container {
  width: min(1820px, calc(100% - 96px));
}

.services .section-head {
  max-width: 1180px;
  margin: 0 auto clamp(36px, 3vw, 52px);
  text-align: center;
}

.services .eyebrow {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: clamp(13px, 0.9vw, 18px);
  letter-spacing: 0.34em;
  text-shadow: 0 0 16px rgba(215, 170, 82, 0.5);
}

.services .section-head h2 {
  max-width: 1180px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 4px 18px rgba(255, 255, 255, 0.14), 0 16px 38px rgba(0, 0, 0, 0.72);
}

.services .section-head p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(247, 240, 227, 0.66);
  font-size: clamp(19px, 1.25vw, 25px);
  line-height: 1.42;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 1.7vw, 36px);
}

.services .service-card {
  position: relative;
  display: flex;
  min-height: clamp(540px, 31vw, 650px);
  padding: clamp(30px, 2vw, 38px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(215, 170, 82, 0.25);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0, rgba(244, 217, 147, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 58%, rgba(215, 170, 82, 0.06)),
    rgba(22, 23, 24, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 62px rgba(0, 0, 0, 0.35);
}

.services .service-card::before {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 180px;
  height: 3px;
  background: radial-gradient(ellipse at center, rgba(255, 225, 157, 0.9), rgba(215, 170, 82, 0.45) 40%, transparent 74%);
  box-shadow: 0 0 22px rgba(244, 217, 147, 0.62);
  content: "";
  transform: translateX(-50%);
}

.services .service-card::after {
  display: none;
}

.service-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(28px, 2.4vw, 44px);
}

.services .card-icon {
  display: grid;
  place-items: center;
  width: clamp(82px, 4.8vw, 98px);
  height: clamp(82px, 4.8vw, 98px);
  margin: 0;
  border: 1px solid rgba(215, 170, 82, 0.4);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(12, 13, 14, 0.28);
  box-shadow: inset 0 0 28px rgba(215, 170, 82, 0.05);
}

.services .card-icon svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 5px rgba(244, 217, 147, 0.34));
}

.services .service-card h3,
.services .service-card p,
.services .service-card ul,
.services .service-card .text-link {
  position: relative;
  z-index: 1;
}

.services .service-card h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(26px, 1.55vw, 31px);
  font-weight: 900;
  line-height: 1.08;
}

.services .service-card p {
  margin-bottom: 24px;
  color: rgba(247, 240, 227, 0.64);
  font-size: clamp(17px, 1.02vw, 20px);
  line-height: 1.45;
}

.services .service-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.services .service-card li {
  position: relative;
  padding-left: 30px;
  color: rgba(247, 240, 227, 0.68);
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.25;
}

.services .service-card li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 9px rgba(215, 170, 82, 0.55);
  content: "";
}

.services .service-card .text-link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(215, 170, 82, 0.5);
  color: var(--gold);
  background: transparent;
  font-size: clamp(18px, 1.05vw, 21px);
  font-weight: 900;
  line-height: 1.15;
}

.services .service-card .text-link::after {
  margin-left: 14px;
  color: var(--gold);
}

.services .service-card:hover {
  border-color: rgba(215, 170, 82, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 68px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(215, 170, 82, 0.08);
  transform: translateY(-4px);
}

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

  .services .service-card {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .services {
    padding: 70px 0;
  }

  .services .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .services .section-head {
    margin-bottom: 34px;
    text-align: center;
  }

  .services .eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .services .section-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .services .section-head p:not(.eyebrow) {
    font-size: 17px;
  }

  .services .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services .service-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .service-card-top {
    justify-content: center;
    margin-bottom: 24px;
  }

  .services .card-icon {
    width: 74px;
    height: 74px;
  }

  .services .service-card h3 {
    font-size: 27px;
  }

  .services .service-card p,
  .services .service-card li,
  .services .service-card .text-link {
    font-size: 17px;
  }
}

/* Valuation reference layout */
.valuation {
  isolation: isolate;
  overflow: hidden;
  min-height: 1072px;
  padding: 164px 0 214px;
  background:
    radial-gradient(ellipse at 50% 92%, rgba(215, 170, 82, 0.12), transparent 42%),
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.035), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 8, 9, 0.96), rgba(18, 17, 14, 0.97)),
    #0b0c0d;
  background-size: auto, auto, 8px 8px, 8px 8px, auto, auto;
}

.valuation::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 34%, rgba(0, 0, 0, 0.4));
  content: "";
  pointer-events: none;
}

.valuation .container {
  width: min(1600px, calc(100% - 96px));
}

.valuation .quiz-layout {
  grid-template-columns: 596px 856px;
  gap: 90px;
  align-items: start;
}

.valuation .quiz-copy {
  position: relative;
  top: auto;
  max-width: 600px;
}

.valuation .eyebrow {
  margin-bottom: 22px;
  color: #e0b456;
  font-size: 16px;
  letter-spacing: 0.13em;
  text-shadow: 0 0 12px rgba(215, 170, 82, 0.28);
}

.valuation .quiz-copy h2 {
  max-width: 590px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(46px, 4.3vw, 68px);
  font-weight: 900;
  line-height: 1.08;
}

.valuation .quiz-copy > p {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(247, 240, 227, 0.72);
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.45;
}

.valuation .callout {
  max-width: 596px;
  margin-top: 36px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(244, 217, 147, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(42, 27, 9, 0.98), rgba(127, 88, 31, 0.94)),
    #5a3d18;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.valuation .callout strong {
  margin-bottom: 12px;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.valuation .callout span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.55;
}

.valuation .quiz-card {
  width: 856px;
  min-height: 694px;
  padding: 48px 44px 44px;
  border: 1px solid rgba(215, 170, 82, 0.28);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 100%, rgba(215, 170, 82, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.98), rgba(17, 17, 19, 0.96)),
    #121214;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 34px 90px rgba(0, 0, 0, 0.32);
}

.valuation .quiz-top {
  gap: 18px;
  margin-bottom: 28px;
}

.valuation .quiz-top > span {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.valuation .progress {
  height: 12px;
  background: rgba(111, 88, 51, 0.46);
}

.valuation .progress span {
  background: linear-gradient(90deg, var(--gold-2), #bb8438);
}

.valuation .quiz-step.active {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.valuation .quiz-step h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 1.7vw, 31px);
  font-weight: 900;
  line-height: 1.18;
}

.valuation .option-grid {
  gap: 16px;
}

.valuation .option-grid span {
  min-height: 74px;
  padding: 0 22px;
  border-color: rgba(244, 217, 147, 0.26);
  border-radius: 22px;
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(31, 31, 34, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 18px;
  font-weight: 900;
}

.valuation .option-grid label:hover span,
.valuation .option-grid input:checked + span {
  border-color: rgba(244, 217, 147, 0.58);
  background:
    linear-gradient(180deg, rgba(215, 170, 82, 0.15), rgba(255, 255, 255, 0.035)),
    rgba(35, 34, 34, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(215, 170, 82, 0.08);
}

.valuation .quiz-step > label,
.valuation .form-two label {
  color: rgba(247, 240, 227, 0.9);
  font-size: 15px;
}

.valuation input,
.valuation select,
.valuation textarea {
  border-color: rgba(244, 217, 147, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.valuation .quiz-actions {
  display: grid;
  grid-template-columns: 194px 194px 244px;
  justify-content: space-between;
  gap: 0;
  align-items: center;
  margin-top: 33px;
}

.valuation .quiz-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 68px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
}

.valuation .quiz-actions .btn-light {
  color: #f4d993;
  border-color: rgba(244, 217, 147, 0.38);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.valuation .quiz-actions .btn-light:disabled {
  opacity: 1;
  cursor: default;
}

.valuation .quiz-actions .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ffe39b, #d5a64b 52%, #9d6f2c);
  box-shadow: 0 24px 56px rgba(215, 170, 82, 0.22);
}

.valuation .form-error,
.valuation .form-success {
  margin-top: 22px;
}

@media (max-width: 1200px) {
  .valuation {
    min-height: auto;
  }

  .valuation .container {
    width: min(var(--container), calc(100% - 56px));
  }

  .valuation .quiz-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
    gap: 42px;
  }

  .valuation .quiz-copy h2 {
    font-size: clamp(40px, 4.6vw, 56px);
  }

  .valuation .quiz-actions {
    gap: 18px;
  }
}

@media (max-width: 960px) {
  .valuation {
    padding: 76px 0;
  }

  .valuation .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .valuation .quiz-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .valuation .quiz-card {
    width: 100%;
  }

  .valuation .quiz-copy,
  .valuation .quiz-copy h2,
  .valuation .quiz-copy > p,
  .valuation .callout {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .valuation {
    padding: 62px 0;
  }

  .valuation .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .valuation .quiz-copy h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  .valuation .quiz-copy > p,
  .valuation .callout span {
    font-size: 17px;
  }

  .valuation .callout {
    margin-top: 26px;
    padding: 22px;
  }

  .valuation .quiz-card {
    min-height: auto;
    padding: 22px;
    border-radius: 14px;
  }

  .valuation .option-grid,
  .valuation .option-grid-compact,
  .valuation .form-two {
    grid-template-columns: 1fr;
  }

  .valuation .option-grid {
    gap: 12px;
  }

  .valuation .option-grid span {
    min-height: 58px;
    border-radius: 16px;
    font-size: 16px;
  }

  .valuation .quiz-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .valuation .quiz-actions .btn {
    min-height: 58px;
    font-size: 18px;
  }
}

/* Valuation premium reference */
.valuation {
  contain: paint;
  min-height: 1153px;
  padding: 104px 0 120px;
  background:
    radial-gradient(circle at 0 65%, rgba(215, 170, 82, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 0 65%, transparent 0 96px, rgba(215, 170, 82, 0.34) 97px 99px, transparent 100px 141px, rgba(215, 170, 82, 0.16) 142px 144px, transparent 145px 184px, rgba(215, 170, 82, 0.09) 185px 187px, transparent 188px),
    radial-gradient(circle at 73% 48%, rgba(255, 255, 255, 0.05), transparent 31%),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #111214 0%, #101113 47%, #151411 100%);
  background-size: auto, auto, auto, 7px 7px, 7px 7px, auto;
}

.valuation::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 28%, transparent 74%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 66% 12%, rgba(255, 255, 255, 0.035), transparent 21%),
    rgba(0, 0, 0, 0.1);
}

.valuation .container {
  position: relative;
  z-index: 1;
  width: min(1540px, calc(100% - 120px));
}

.valuation .quiz-layout {
  display: grid;
  grid-template-columns: 600px 900px;
  gap: 74px;
  align-items: start;
}

.valuation .quiz-copy {
  max-width: 600px;
  padding-top: 52px;
}

.valuation .eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 0 32px;
  color: #d3a74d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-shadow: 0 0 16px rgba(215, 170, 82, 0.45);
}

.valuation .eyebrow::after {
  position: absolute;
  left: calc(100% + 30px);
  top: 50%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(215, 170, 82, 0.55), transparent);
  content: "";
  transform: translateY(-50%);
}

.valuation .quiz-copy h2 {
  max-width: 590px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.54);
}

.valuation .quiz-copy h2 > span {
  display: block;
}

.valuation .quiz-copy h2 .nowrap-line {
  white-space: nowrap;
}

.valuation .quiz-copy h2 .accent-line {
  color: #d7aa52;
  text-shadow: 0 8px 16px rgba(215, 170, 82, 0.22);
}

.valuation .quiz-copy > p {
  max-width: 570px;
  color: rgba(247, 240, 227, 0.72);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.valuation .callout {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 600px;
  min-height: 185px;
  margin-top: 58px;
  padding: 30px 32px;
  border: 1px solid rgba(215, 170, 82, 0.36);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(22, 23, 23, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.valuation .callout-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(215, 170, 82, 0.52);
  border-radius: 50%;
  color: #d7aa52;
  box-shadow: none;
}

.valuation .callout .callout-icon {
  display: grid;
  color: #d7aa52;
}

.valuation .callout-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.valuation .callout-copy strong {
  margin: 0 0 16px;
  color: #d7aa52;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.1;
}

.valuation .callout-copy > span {
  color: rgba(247, 240, 227, 0.78);
  font-size: 21px;
  line-height: 1.45;
}

.valuation .quiz-card {
  position: relative;
  contain: layout paint;
  width: 900px;
  min-height: 782px;
  padding: 58px 58px 48px;
  border: 1px solid rgba(215, 170, 82, 0.34);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.08), transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(215, 170, 82, 0.08), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 40%, rgba(0, 0, 0, 0.12)),
    rgba(18, 19, 20, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 10px rgba(215, 170, 82, 0.09),
    0 22px 54px rgba(0, 0, 0, 0.36);
}

.valuation .quiz-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(215, 170, 82, 0.23);
  border-radius: 30px;
  content: "";
  pointer-events: none;
}

.valuation .quiz-card > * {
  position: relative;
  z-index: 1;
}

.valuation .quiz-top {
  gap: 20px;
  margin-bottom: 34px;
}

.valuation .quiz-top > span {
  color: rgba(247, 240, 227, 0.78);
  font-size: 21px;
  font-weight: 600;
}

.valuation .quiz-top > span::first-letter {
  color: #d7aa52;
}

.valuation .progress {
  height: 14px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.42);
}

.valuation .progress span {
  width: 27%;
  background: linear-gradient(90deg, #f2d077, #c9963f);
  box-shadow: none;
}

.valuation .quiz-step.active {
  gap: 28px;
}

.valuation .quiz-step h3 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
}

.valuation .option-grid {
  gap: 18px 38px;
}

.valuation .option-grid span {
  gap: 18px;
  min-height: 84px;
  padding: 0 30px;
  border-color: rgba(215, 170, 82, 0.24);
  border-radius: 23px;
  color: rgba(247, 240, 227, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(28, 29, 30, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 23px;
  font-weight: 500;
  white-space: normal;
  overflow-wrap: anywhere;
}

.valuation .quiz-option-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #d7aa52;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  filter: none;
}

.valuation .quiz-actions {
  position: relative;
  grid-template-columns: 198px 218px 276px;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 28px;
}

.valuation .quiz-actions::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(215, 170, 82, 0.18) 10%, rgba(255, 255, 255, 0.08) 50%, rgba(215, 170, 82, 0.18) 90%, transparent);
  content: "";
}

.valuation .quiz-actions .btn {
  min-height: 68px;
  padding: 0 24px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 600;
}

.valuation .quiz-actions .btn-light,
.valuation .quiz-actions .btn-light:disabled {
  color: rgba(247, 240, 227, 0.42);
  border-color: rgba(215, 170, 82, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.valuation .quiz-actions .btn-primary {
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 235, 168, 0.18), transparent 45%),
    linear-gradient(135deg, #f4d27a, #c9963f 58%, #9d6827);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 28px rgba(215, 170, 82, 0.12);
}

.valuation .btn,
.valuation .option-grid span {
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.valuation .btn:hover {
  transform: none;
  box-shadow: inherit;
}

@media (max-width: 1680px) {
  .valuation .container {
    width: min(1540px, calc(100% - 80px));
  }

  .valuation .quiz-layout {
    grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
    gap: 42px;
  }

  .valuation .quiz-copy {
    max-width: 520px;
    padding-top: 26px;
  }

  .valuation .quiz-copy h2 {
    font-size: clamp(46px, 4.5vw, 56px);
    line-height: 1.1;
  }

  .valuation .quiz-copy > p {
    font-size: clamp(17px, 1.45vw, 21px);
  }

  .valuation .callout {
    min-height: 0;
    padding: 24px;
  }

  .valuation .quiz-card {
    width: 100%;
    min-height: 0;
    padding: 42px 40px 38px;
    border-radius: 34px;
  }

  .valuation .quiz-card::before {
    inset: 10px;
    border-radius: 26px;
  }

  .valuation .quiz-top {
    margin-bottom: 28px;
  }

  .valuation .quiz-step h3 {
    font-size: clamp(28px, 2vw, 31px);
  }

  .valuation .option-grid {
    gap: 16px 18px;
  }

  .valuation .option-grid span {
    min-height: 72px;
    padding: 0 22px;
    font-size: clamp(18px, 1.55vw, 21px);
  }

  .valuation .quiz-option-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .valuation .quiz-actions {
    grid-template-columns: minmax(148px, 0.9fr) minmax(172px, 1fr) minmax(0, 1.15fr);
    justify-content: stretch;
    gap: 14px;
  }

  .valuation .quiz-actions .btn {
    min-width: 0;
    min-height: 62px;
    padding: 0 18px;
    font-size: clamp(18px, 1.45vw, 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1200px) {
  .valuation {
    min-height: auto;
    padding: 76px 0;
  }

  .valuation .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .valuation .quiz-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .valuation .quiz-copy,
  .valuation .quiz-card,
  .valuation .callout {
    width: 100%;
    max-width: none;
  }

  .valuation .quiz-copy {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .valuation {
    padding: 58px 0;
  }

  .valuation .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .valuation .eyebrow {
    font-size: 15px;
  }

  .valuation .eyebrow::after {
    width: 90px;
  }

  .valuation .quiz-copy h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .valuation .quiz-copy > p,
  .valuation .callout-copy > span {
    font-size: 18px;
  }

  .valuation .callout {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .valuation .callout-icon {
    width: 64px;
    height: 64px;
  }

  .valuation .callout-icon svg {
    width: 36px;
    height: 36px;
  }

  .valuation .quiz-card {
    min-height: auto;
    padding: 28px 18px;
    border-radius: 28px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 0 8px rgba(215, 170, 82, 0.08),
      0 24px 54px rgba(0, 0, 0, 0.36);
  }

  .valuation .quiz-card::before {
    inset: 8px;
    border-radius: 22px;
  }

  .valuation .quiz-step h3 {
    font-size: 27px;
  }

  .valuation .option-grid,
  .valuation .option-grid-compact {
    grid-template-columns: 1fr;
  }

  .valuation .option-grid span {
    min-height: 70px;
    padding: 0 20px;
    border-radius: 20px;
    font-size: 18px;
  }

  .valuation .quiz-option-icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .valuation .quiz-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .valuation .quiz-actions .btn {
    min-height: 58px;
    font-size: 18px;
  }
}

/* Process premium layout */
.process {
  isolation: isolate;
  overflow: hidden;
  min-height: 990px;
  padding: 48px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 18%, rgba(215, 170, 82, 0.08), transparent 33%),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #111214 0%, #101113 54%, #14130f 100%);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.process::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(215, 170, 82, 0.07), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.2));
  content: "";
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
  width: min(1520px, calc(100% - 96px));
}

.process .section-head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.process .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 22px;
  color: #d7aa52;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
}

.process .eyebrow::before,
.process .eyebrow::after {
  width: 112px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(215, 170, 82, 0.7));
  content: "";
}

.process .eyebrow::after {
  background: linear-gradient(90deg, rgba(215, 170, 82, 0.7), transparent);
}

.process .section-head h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 66px;
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.56);
}

.process .timeline {
  position: relative;
  display: grid;
  width: max-content;
  margin-inline: auto;
  grid-template-columns: repeat(4, 304px);
  grid-template-rows: repeat(2, 284px);
  justify-content: center;
  gap: 124px 32px;
}

.process .timeline::before {
  display: none;
}

.process .timeline::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 1368px;
  height: 692px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1368 692'%3E%3Cpath d='M1312 142 H1340 Q1366 142 1366 168 V300 Q1366 326 1340 326 H108 Q80 326 80 354 V552 Q80 580 108 580 H168' fill='none' stroke='rgba(215,170,82,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.process .timeline-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: 304px;
  min-height: 0;
  padding: 72px 26px 22px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(215, 170, 82, 0.48);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 100%, rgba(215, 170, 82, 0.055), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
    rgba(19, 20, 20, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.process .timeline-card:nth-child(5) {
  grid-column: 1;
  transform: translateX(168px);
}

.process .timeline-card:nth-child(6) {
  grid-column: 2;
  transform: translateX(168px);
}

.process .timeline-card:nth-child(7) {
  grid-column: 3;
  transform: translateX(168px);
}

.process .timeline-card::before,
.process .timeline-card::after {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(215, 170, 82, 0.48), rgba(215, 170, 82, 0.68));
  content: "";
  pointer-events: none;
}

.process .timeline-card::before {
  right: -36px;
}

.process .timeline-card::after {
  display: none;
}

.process .timeline-card:nth-child(4)::after,
.process .timeline-card:nth-child(7)::before,
.process .timeline-card:nth-child(7)::after {
  display: none;
}

.process .timeline-card:nth-child(n + 5)::before {
  right: -36px;
}

.process .timeline-card:nth-child(n + 5)::after {
  display: none;
}

.process .timeline-card:nth-child(5)::before,
.process .timeline-card:nth-child(6)::before {
  display: block;
}

.process .timeline-card > .step-number {
  position: absolute;
  left: 50%;
  top: -34px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0;
  border: 2px solid rgba(215, 170, 82, 0.68);
  border-radius: 50%;
  color: #f1c45c;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 35%),
    #101112;
  box-shadow:
    0 0 0 8px #101112,
    inset 0 0 0 5px rgba(0, 0, 0, 0.36),
    0 0 0 4px rgba(215, 170, 82, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.34);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(215, 170, 82, 0.46);
  transform: translateX(-50%);
}

.process .step-icon {
  width: 38px;
  height: 38px;
  margin: 0 0 16px;
  overflow: visible;
  color: #d7aa52;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.process .step-icon path {
  vector-effect: non-scaling-stroke;
}

.process .timeline-card h3 {
  max-width: 270px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.16;
}

.process .timeline-card p {
  max-width: 260px;
  margin: 0;
  color: rgba(247, 240, 227, 0.68);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.36;
}

@media (max-width: 1200px) {
  .process {
    min-height: auto;
    padding: 76px 0;
  }

  .process .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .process .section-head h2 {
    font-size: clamp(42px, 7vw, 72px);
  }

  .process .container > .timeline,
  .process .timeline {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 72px 28px;
  }

  .process .timeline::before,
  .process .timeline::after,
  .process .timeline-card::before,
  .process .timeline-card::after,
  .process .timeline-card:nth-child(5)::after {
    display: none;
  }

  .process .container > .timeline .timeline-card:nth-child(n),
  .process .timeline-card:nth-child(n) {
    grid-column: auto;
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  .process {
    padding: 58px 0;
  }

  .process .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .process .section-head {
    margin-bottom: 64px;
  }

  .process .eyebrow {
    gap: 16px;
    font-size: 13px;
  }

  .process .eyebrow::before,
  .process .eyebrow::after {
    width: 58px;
  }

  .process .section-head h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .process .timeline {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .process .timeline-card {
    padding: 74px 22px 26px;
    border-radius: 24px;
  }

  .process .timeline-card > .step-number {
    top: -32px;
    width: 72px;
    height: 72px;
    font-size: 38px;
  }

  .process .step-icon {
    width: 36px;
    height: 36px;
  }

  .process .timeline-card h3 {
    font-size: 22px;
  }

  .process .timeline-card p {
    font-size: 16px;
  }
}

/* Cases reference layout */
.cases {
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 44px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 8%, rgba(215, 170, 82, 0.3) 0 1px, transparent 2px) 0 0 / 21px 21px,
    radial-gradient(circle at 97% 88%, transparent 0 210px, rgba(215, 170, 82, 0.36) 211px 213px, transparent 214px 284px, rgba(215, 170, 82, 0.17) 285px 287px, transparent 288px),
    radial-gradient(circle at -4% -18%, transparent 0 300px, rgba(215, 170, 82, 0.44) 301px 303px, transparent 304px 390px, rgba(215, 170, 82, 0.17) 391px 393px, transparent 394px),
    linear-gradient(90deg, rgba(7, 7, 7, 0.98), rgba(18, 18, 18, 0.96) 47%, rgba(11, 12, 13, 0.98)),
    #0f1011;
  background-blend-mode: soft-light, normal, normal, normal, normal;
}

.cases::before,
.cases::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.cases::before {
  left: -255px;
  top: -442px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(215, 170, 82, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(215, 170, 82, 0.02),
    inset 0 0 80px rgba(215, 170, 82, 0.035);
}

.cases::after {
  left: 76px;
  top: 0;
  width: 410px;
  height: 260px;
  background: radial-gradient(circle, rgba(215, 170, 82, 0.26) 0 1px, transparent 1.5px) 0 0 / 9px 9px;
  opacity: 0.22;
  transform: rotate(-22deg);
}

.cases .container {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 96px));
}

.cases .container::before,
.cases .container::after {
  display: none;
}

.cases .container::before {
  left: 0;
}

.cases .container::after {
  right: 0;
}

.cases .section-head {
  max-width: 1160px;
  margin: 0 auto 20px;
  text-align: center;
}

.cases .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin: 0 0 18px;
  color: #d8a84f;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0 0 14px rgba(215, 170, 82, 0.68);
}

.cases .eyebrow::before,
.cases .eyebrow::after {
  width: 174px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 217, 147, 0.78));
  box-shadow: 0 0 10px rgba(244, 217, 147, 0.72);
  content: "";
}

.cases .eyebrow::after {
  background: linear-gradient(90deg, rgba(244, 217, 147, 0.78), transparent);
}

.cases .section-head h2 {
  max-width: 1160px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 4.25vw, 78px);
  font-weight: 700;
  line-height: 0.96;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.09),
    0 9px 20px rgba(0, 0, 0, 0.76),
    0 0 11px rgba(255, 255, 255, 0.2);
}

.cases .case-grid {
  --case-width: 430px;
  --case-center-scale: 1.16;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 58px max(4px, calc((100% - var(--case-width)) / 2)) 72px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: max(4px, calc((100% - var(--case-width)) / 2));
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%);
  scrollbar-color: rgba(215, 170, 82, 0.58) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.cases .case-grid::-webkit-scrollbar {
  height: 8px;
}

.cases .case-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.cases .case-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 217, 147, 0.86), rgba(166, 111, 38, 0.84));
}

.cases .case-card {
  position: relative;
  flex: 0 0 var(--case-width);
  contain: layout;
  overflow: hidden;
  padding: 14px 16px 18px;
  border: 1px solid rgba(215, 170, 82, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(244, 217, 147, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 46%, rgba(215, 170, 82, 0.032)),
    rgba(17, 18, 20, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 22px 62px rgba(0, 0, 0, 0.34);
  opacity: var(--case-opacity, 0.18);
  scroll-snap-align: center;
  filter: brightness(var(--case-brightness, 0.64)) saturate(var(--case-saturation, 0.78));
  transform: translate3d(0, 18px, 0) scale(0.94);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  transition: transform 220ms ease, opacity 120ms linear, filter 120ms linear, border-color 180ms ease, box-shadow 180ms ease;
}

.cases .case-card.is-center {
  z-index: 2;
  border-color: rgba(244, 217, 147, 0.64);
  filter: none;
  opacity: var(--case-opacity, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 30px 74px rgba(0, 0, 0, 0.46),
    0 0 26px rgba(215, 170, 82, 0.12);
  transform: translate3d(0, 0, 0) scale(var(--case-center-scale));
}

.cases .case-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(244, 217, 147, 0.075), transparent 22%, transparent);
  content: "";
  pointer-events: none;
}

.cases .case-card:hover {
  border-color: rgba(244, 217, 147, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 26px 70px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(215, 170, 82, 0.08);
}

.cases .case-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.82 / 1;
  overflow: hidden;
  border: 1px solid rgba(215, 170, 82, 0.26);
  border-radius: 15px;
  background: #161719;
  box-shadow:
    inset 0 0 18px rgba(215, 170, 82, 0.14),
    0 0 18px rgba(244, 217, 147, 0.08);
}

.cases .case-photo::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 56%, rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 50% 0, rgba(255, 224, 147, 0.18), transparent 30%);
}

.cases .case-photo img {
  filter: saturate(0.72) sepia(0.16) contrast(1.02);
  transition: transform 480ms ease;
}

.cases .case-card:hover .case-photo img {
  transform: scale(1.025);
}

.case-check {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(215, 170, 82, 0.48);
  border-radius: 50%;
  color: #d7aa52;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.08), transparent 30%),
    rgba(18, 19, 20, 0.88);
  box-shadow:
    inset 0 0 14px rgba(215, 170, 82, 0.12),
    0 0 16px rgba(0, 0, 0, 0.38);
}

.case-check svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  filter: drop-shadow(0 0 5px rgba(244, 217, 147, 0.46));
}

.cases .case-body {
  position: relative;
  z-index: 1;
  padding: 16px 12px 0;
}

.cases .case-type {
  margin: 0 0 8px;
  color: #d7aa52;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.cases .case-body h3 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.68);
}

.cases .case-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(215, 170, 82, 0.19);
}

.cases .case-body dl div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 11px 12px;
  border: 1px solid rgba(215, 170, 82, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 13% 50%, rgba(215, 170, 82, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.01)),
    rgba(24, 25, 25, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 22px rgba(0, 0, 0, 0.18);
}

.cases dt {
  display: contents;
}

.cases dt span {
  grid-column: 2;
  color: rgba(247, 240, 227, 0.66);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.case-stat-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  align-self: center;
  justify-self: start;
  overflow: visible;
  color: #c99a45;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 7px rgba(215, 170, 82, 0.42));
}

.cases dd {
  grid-column: 2;
  margin: 5px 0 0;
  color: #d7aa52;
  font-size: clamp(19px, 1.12vw, 23px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 12px rgba(215, 170, 82, 0.28);
}

.cases .case-body p {
  max-width: 610px;
  margin: 0;
  color: rgba(247, 240, 227, 0.72);
  font-size: clamp(14px, 0.86vw, 16px);
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 1200px) {
  .cases {
    padding: 76px 0;
  }

  .cases .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .cases .case-grid {
    --case-width: min(390px, calc(100vw - 92px));
    --case-center-scale: 1.12;
    gap: 18px;
  }

  .cases .case-card {
    padding: 18px;
  }

  .cases .case-body {
    padding: 20px 8px 0;
  }
}

@media (max-width: 960px) {
  .cases .case-grid {
    width: 100%;
    margin-inline: auto;
  }

  .cases .case-body dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cases {
    padding: 58px 0;
    background:
      radial-gradient(circle at 92% 4%, rgba(215, 170, 82, 0.24) 0 1px, transparent 2px) 0 0 / 18px 18px,
      radial-gradient(circle at 108% 88%, transparent 0 120px, rgba(215, 170, 82, 0.26) 121px 123px, transparent 124px),
      linear-gradient(180deg, #111214, #0f1011);
  }

  .cases .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .cases .container::before,
  .cases .container::after {
    display: none;
  }

  .cases .container::before {
    left: -12px;
  }

  .cases .container::after {
    right: -12px;
  }

  .cases .section-head {
    margin-bottom: 30px;
  }

  .cases .eyebrow {
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .cases .eyebrow::before,
  .cases .eyebrow::after {
    width: 58px;
  }

  .cases .section-head h2 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.02;
  }

  .cases .case-grid {
    --case-width: calc(100vw - 86px);
    --case-center-scale: 1.06;
    gap: 14px;
    padding-block: 42px 58px;
  }

  .cases .case-card {
    padding: 14px;
    border-radius: 18px;
  }

  .cases .case-photo {
    aspect-ratio: 1.45 / 1;
    border-radius: 14px;
  }

  .case-check {
    left: 12px;
    top: 12px;
    width: 42px;
    height: 42px;
  }

  .case-check svg {
    width: 24px;
    height: 24px;
  }

  .cases .case-body {
    padding: 20px 2px 2px;
  }

  .cases .case-type {
    font-size: 13px;
  }

  .cases .case-body h3 {
    margin-bottom: 18px;
    font-size: clamp(24px, 7.2vw, 31px);
  }

  .cases .case-body dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .cases .case-body dl div {
    min-height: 82px;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 12px;
  }

  .case-stat-icon {
    width: 30px;
    height: 30px;
  }

  .cases dt span {
    font-size: 13px;
  }

  .cases dd {
    font-size: 20px;
  }

  .cases .case-body p {
    font-size: 17px;
  }
}

/* Site-wide premium texture and section headings */
.section:not(.hero) {
  isolation: isolate;
  overflow: hidden;
  background: transparent !important;
}

.section:not(.hero)::before {
  display: none !important;
}

.section:not(.hero)::after {
  display: none !important;
}

.section:not(.hero) > .container,
.section:not(.hero) .container {
  position: relative;
  z-index: 1;
}

.section:not(.hero) .section-head h2,
.valuation .quiz-copy h2,
.legal-grid > div:first-child h2,
.form-section-grid > div:first-child h2,
.faq-grid > div:first-child h2,
.contacts .section-head h2 {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow:
    0 4px 18px rgba(255, 255, 255, 0.12),
    0 15px 34px rgba(0, 0, 0, 0.72);
}

.section:not(.hero) .section-head p:not(.eyebrow),
.services .section-head p:not(.eyebrow),
.media-docs .section-head p:not(.eyebrow) {
  color: rgba(247, 240, 227, 0.68);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.62);
}

.section:not(.hero) .eyebrow {
  color: #d7aa52;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 0 14px rgba(215, 170, 82, 0.5);
}

.documents-block {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.documents-block .section-head {
  max-width: 940px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 34px);
  text-align: center;
}

.documents-block .docs-grid {
  --case-width: 320px;
  --case-center-scale: 1.13;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 42px max(4px, calc((100% - var(--case-width)) / 2)) 58px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: max(4px, calc((100% - var(--case-width)) / 2));
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%);
  scrollbar-color: rgba(215, 170, 82, 0.58) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.documents-block .docs-grid::-webkit-scrollbar {
  height: 8px;
}

.documents-block .docs-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.documents-block .docs-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 217, 147, 0.86), rgba(166, 111, 38, 0.84));
}

.documents-block .docs-grid article {
  flex: 0 0 var(--case-width);
  opacity: var(--case-opacity, 0.18);
  scroll-snap-align: center;
  filter: brightness(var(--case-brightness, 0.64)) saturate(var(--case-saturation, 0.78));
  transform: translate3d(0, 18px, 0) scale(0.94);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  transition: transform 220ms ease, opacity 120ms linear, filter 120ms linear, border-color 180ms ease, box-shadow 180ms ease;
}

.documents-block .docs-grid article.is-center {
  z-index: 2;
  border-color: rgba(244, 217, 147, 0.64);
  filter: none;
  opacity: var(--case-opacity, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 30px 74px rgba(0, 0, 0, 0.46),
    0 0 26px rgba(215, 170, 82, 0.12);
  transform: translate3d(0, 0, 0) scale(var(--case-center-scale));
}

.documents-block .docs-grid img {
  aspect-ratio: 4 / 5.35;
}

.documents-block .docs-grid h3 {
  min-height: 78px;
  font-size: 16px;
}

@media (max-width: 760px) {
  .documents-block .docs-grid {
    --case-width: min(280px, calc(100vw - 86px));
    --case-center-scale: 1.06;
    gap: 14px;
    padding-block: 32px 46px;
  }

  .documents-block .docs-grid h3 {
    min-height: auto;
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .section:not(.hero) {
    background: transparent !important;
  }

  .section:not(.hero) .section-head h2,
  .valuation .quiz-copy h2,
  .legal-grid > div:first-child h2,
  .form-section-grid > div:first-child h2,
  .faq-grid > div:first-child h2,
  .contacts .section-head h2 {
    font-size: clamp(34px, 10.6vw, 48px);
  }
}

/* Contacts reference block */
.contacts {
  padding: clamp(28px, 3vw, 50px) 0 clamp(58px, 5vw, 96px);
}

.contacts .container {
  width: min(1320px, calc(100% - 72px));
}

.contacts .section-head {
  max-width: 760px;
  margin: 0 auto 28px;
}

.contacts .eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
  color: #d7aa52;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.contacts .eyebrow::after {
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 217, 147, 0.9), transparent);
  box-shadow: 0 0 12px rgba(215, 170, 82, 0.6);
  content: "";
}

.contacts .section-head h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(44px, 4vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(0, 0, 0, 0.82),
    0 0 14px rgba(255, 255, 255, 0.16);
}

.contacts .section-head > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(247, 240, 227, 0.72);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 600;
  line-height: 1.35;
}

.contacts .contacts-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(500px, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.contacts .contact-panel,
.contacts .map-card {
  min-height: 620px;
  border: 1px solid rgba(244, 217, 147, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(244, 217, 147, 0.055), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.01) 44%, rgba(0, 0, 0, 0.12)),
    rgba(22, 23, 25, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 28px 70px rgba(0, 0, 0, 0.34);
}

.contacts .contact-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(24px, 1.7vw, 30px);
}

.contacts .contact-panel article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 0;
  border-bottom: 1px solid rgba(244, 217, 147, 0.12);
}

.contacts .contact-panel article:last-of-type {
  border-bottom: 0;
}

.contacts .contact-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #f1c45c;
  background:
    radial-gradient(circle at 50% 44%, rgba(244, 217, 147, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.contacts .contact-icon-active {
  background:
    radial-gradient(circle at 48% 50%, rgba(244, 217, 147, 0.2), transparent 54%),
    rgba(215, 170, 82, 0.12);
}

.contacts .contact-copy,
.contacts .map-office-copy {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
}

.contacts svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.contacts .contact-copy > span,
.contacts .map-office-copy > span {
  display: block;
  margin: 0 0 8px;
  color: #d7aa52;
  font-size: clamp(12px, 0.82vw, 16px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(215, 170, 82, 0.28);
}

.contacts .contact-panel a,
.contacts .contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(17px, 1vw, 22px);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 7px 18px rgba(0, 0, 0, 0.68);
}

.contacts .contact-actions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.contacts .contact-actions .btn {
  min-height: 66px;
  gap: 10px;
  margin: 0;
  border-radius: 16px;
  color: rgba(244, 217, 147, 0.96);
  border-color: rgba(244, 217, 147, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(25, 26, 27, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 14px 28px rgba(0, 0, 0, 0.18);
  font-size: clamp(15px, 0.92vw, 18px);
  font-weight: 900;
}

.contacts .contact-actions .btn svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.contacts .contact-actions .btn-primary {
  grid-column: 1 / 3;
  color: #1a1307;
  border-color: rgba(244, 217, 147, 0.72);
  background: linear-gradient(135deg, #ffe79e, #d7aa52 52%, #a06e28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 34px rgba(215, 170, 82, 0.24);
}

.contacts .contact-actions .btn:nth-child(2) {
  grid-column: 3 / 5;
}

.contacts .contact-actions .btn:nth-child(3) {
  grid-column: 5 / 7;
}

.contacts .contact-actions .btn:nth-child(4) {
  grid-column: 1 / 4;
}

.contacts .contact-actions .btn:nth-child(5) {
  grid-column: 4 / 7;
}

.contacts .map-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 16px 16px;
}

.contacts .map-card::before,
.contacts .map-card::after {
  display: none;
}

.contacts .map-visual {
  position: relative;
  min-height: 390px;
  margin: 0 -16px;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 217, 147, 0.1);
  background: #182027;
}

.contacts .map-visual::before {
  display: none;
}

.contacts .map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.map-consent-placeholder {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 390px;
  padding: 28px;
  text-align: center;
}

.map-consent-placeholder strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 24px;
  line-height: 1.15;
}

.map-consent-placeholder p {
  max-width: 420px;
  margin: 0;
  color: rgba(247, 240, 227, 0.74);
}

.contacts .map-road {
  position: absolute;
  z-index: 1;
  display: block;
  height: 44px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(116, 126, 136, 0.58), rgba(55, 65, 75, 0.68)),
    rgba(89, 99, 108, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.025);
}

.contacts .map-road-main {
  left: -7%;
  top: 54%;
  width: 118%;
  transform: rotate(-23deg);
}

.contacts .map-road-top {
  left: 24%;
  top: -8%;
  width: 68%;
  transform: rotate(72deg);
}

.contacts .map-road-left {
  left: 29%;
  top: 18%;
  width: 58%;
  transform: rotate(68deg);
}

.contacts .map-road-right {
  right: 0;
  top: 23%;
  width: 62%;
  transform: rotate(67deg);
}

.contacts .map-label {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

.contacts .map-label-main {
  left: 12%;
  top: 67%;
  transform: rotate(-23deg);
}

.contacts .map-label-side {
  right: 14%;
  top: 29%;
  transform: rotate(-23deg);
}

.contacts .map-label-alt {
  left: 30%;
  top: 25%;
  transform: rotate(68deg);
}

.contacts .map-pin {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 14px solid #f0bf62;
  border-radius: 50% 50% 50% 0;
  background: #101419;
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.38),
    0 0 26px rgba(215, 170, 82, 0.24);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contacts .map-pin::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #101419;
  content: "";
  transform: translate(-50%, -50%);
}

.contacts .map-office {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 176px;
  margin: 16px 0 0;
  padding: 30px 34px;
  border: 1px solid rgba(244, 217, 147, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 50%, rgba(215, 170, 82, 0.1), transparent 34%),
    rgba(16, 17, 18, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.contacts .map-office-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #f0bf62;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 217, 147, 0.18), transparent 58%),
    rgba(215, 170, 82, 0.1);
}

.contacts .map-office-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 3.2;
}

.contacts .map-office strong {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(22px, 1.35vw, 29px);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.68);
}

.contacts .map-office p {
  margin: 0;
  color: rgba(247, 240, 227, 0.68);
  font-size: clamp(16px, 0.95vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 1280px) {
  .contacts .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .contacts .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts .contact-panel,
  .contacts .map-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .contacts {
    padding: 42px 0 54px;
  }

  .contacts .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .contacts .section-head {
    margin-bottom: 22px;
  }

  .contacts .eyebrow {
    gap: 14px;
    font-size: 13px;
  }

  .contacts .section-head h2 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .contacts .section-head > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 15px;
  }

  .contacts .contacts-grid {
    gap: 16px;
  }

  .contacts .contact-panel,
  .contacts .map-card {
    border-radius: 20px;
  }

  .contacts .contact-panel {
    padding: 18px;
  }

  .contacts .contact-panel article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 74px;
  }

  .contacts .contact-icon {
    width: 46px;
    height: 46px;
  }

  .contacts svg {
    width: 23px;
    height: 23px;
    stroke-width: 3;
  }

  .contacts .contact-copy > span,
  .contacts .map-office-copy > span {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .contacts .contact-panel a,
  .contacts .contact-panel p {
    font-size: 16px;
  }

  .contacts .contact-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px;
  }

  .contacts .contact-actions .btn,
  .contacts .contact-actions .btn:nth-child(n) {
    grid-column: auto;
    min-height: 54px;
    border-radius: 14px;
    font-size: 15px;
  }

  .contacts .contact-actions .btn svg {
    width: 22px;
    height: 22px;
  }

  .contacts .map-card {
    padding: 0 14px 14px;
  }

  .contacts .map-visual {
    min-height: 260px;
    margin: 0 -14px;
  }

  .contacts .map-pin {
    width: 46px;
    height: 46px;
    border-width: 11px;
  }

  .contacts .map-label {
    font-size: 12px;
  }

  .contacts .map-office {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .contacts .map-office-icon {
    width: 54px;
    height: 54px;
  }

  .contacts .map-office-icon svg {
    width: 32px;
    height: 32px;
  }

  .contacts .map-office strong {
    margin-bottom: 7px;
    font-size: 18px;
  }

  .contacts .map-office p {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  html {
    scroll-padding-top: 88px;
  }

  [id] {
    scroll-margin-top: 88px;
  }

  .section:not(.hero) .section-head h2,
  .services .section-head h2,
  .benefits .section-head h2,
  .valuation .quiz-copy h2,
  .process .section-head h2,
  .cases .section-head h2,
  .documents-block .section-head h2,
  .contacts .section-head h2 {
    font-size: clamp(28px, 8.6vw, 34px) !important;
    line-height: 1.08;
  }

  .section-head,
  .services .section-head,
  .benefits .section-head,
  .process .section-head,
  .cases .section-head,
  .documents-block .section-head,
  .contacts .section-head {
    margin-bottom: 24px;
  }

  .services {
    padding: 52px 0;
  }

  .services .service-grid {
    gap: 14px;
  }

  .services .service-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .service-card-top {
    margin-bottom: 16px;
  }

  .services .card-icon {
    width: 58px;
    height: 58px;
  }

  .services .service-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.14;
  }

  .services .service-card p {
    margin-bottom: 14px;
  }

  .services .service-card ul {
    gap: 8px;
    margin-bottom: 18px;
  }

  .services .service-card li {
    padding-left: 20px;
    line-height: 1.35;
  }

  .services .service-card p,
  .services .service-card li,
  .services .service-card .text-link {
    font-size: 15px;
  }

  .services .service-card li::before {
    width: 7px;
    height: 7px;
  }

  .benefits {
    padding: 52px 0;
  }

  .benefits .eyebrow {
    margin-bottom: 10px;
  }

  .benefits .eyebrow::before,
  .benefits .eyebrow::after {
    display: none;
  }

  .benefit-grid {
    gap: 14px;
  }

  .benefit-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: auto;
    padding: 16px 0;
    text-align: left;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    border-width: 1px;
  }

  .benefit-divider {
    display: none;
  }

  .benefit-card h3 {
    max-width: none;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
  }

  .process {
    padding: 52px 0;
  }

  .process .timeline {
    gap: 42px;
  }

  .process .timeline::before,
  .process .timeline::after,
  .process .timeline-card::before,
  .process .timeline-card::after,
  .process .timeline-card:nth-child(n)::before,
  .process .timeline-card:nth-child(n)::after {
    display: none !important;
  }

  .process .timeline-card {
    padding: 50px 18px 20px;
    border-radius: 18px;
  }

  .process .timeline-card > .step-number {
    top: -24px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .process .step-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .process .timeline-card h3 {
    max-width: none;
    font-size: 19px;
  }

  .process .timeline-card p {
    max-width: none;
    font-size: 14px;
  }

  .valuation .eyebrow {
    width: auto;
    max-width: 100%;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .valuation .eyebrow::after {
    display: none;
  }

  .cases {
    padding: 48px 0;
  }

  .cases .case-grid {
    --case-width: calc(100vw - 104px);
    --case-center-scale: 1.03;
    padding-block: 28px 42px;
  }

  .cases .case-card {
    padding: 10px;
    border-radius: 16px;
  }

  .cases .case-photo {
    aspect-ratio: 1.62 / 1;
  }

  .cases .case-body {
    padding: 14px 0 0;
  }

  .cases .case-body h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.16;
  }

  .cases .case-body dl {
    gap: 8px;
    margin-bottom: 12px;
  }

  .cases .case-body dl div {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 8px;
    min-height: 64px;
    padding: 9px 8px;
  }

  .case-stat-icon {
    width: 22px;
    height: 22px;
  }

  .cases dt span {
    min-width: 0;
    font-size: 10px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .cases dd {
    min-width: 0;
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .cases .case-body p {
    font-size: 14px;
    line-height: 1.38;
  }

  .documents-block .docs-grid {
    --case-width: min(250px, calc(100vw - 112px));
    --case-center-scale: 1.03;
    padding-block: 24px 36px;
  }

  .documents-block .docs-grid h3 {
    padding: 12px;
    font-size: 14px;
    line-height: 1.25;
  }

  .mobile-actions {
    display: none !important;
  }

  .mobile-actions a {
    min-height: 42px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.1;
  }
}

@media (max-width: 380px) {
  .section:not(.hero) .section-head h2,
  .services .section-head h2,
  .benefits .section-head h2,
  .valuation .quiz-copy h2,
  .process .section-head h2,
  .cases .section-head h2,
  .documents-block .section-head h2,
  .contacts .section-head h2 {
    font-size: clamp(26px, 8.2vw, 31px) !important;
  }

  .cases .case-grid {
    --case-width: calc(100vw - 96px);
  }

  .cases .case-body dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .documents-block .docs-grid {
    --case-width: min(236px, calc(100vw - 100px));
  }
}

/* Client revision pass */
.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1.1;
}

.brand-copy strong {
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(247, 240, 227, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 16px;
  border: 1px solid rgba(244, 217, 147, 0.24);
  border-radius: 18px;
  background: rgba(17, 18, 22, 0.52);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.hero-brand-logo {
  width: 62px;
  height: 54px;
  flex: 0 0 auto;
}

.hero-brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-brand-copy strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-brand-copy span {
  color: rgba(247, 240, 227, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(244, 217, 147, 0.28);
  border-radius: 18px;
  color: #fff;
  background: rgba(17, 18, 22, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.hero-phone:hover {
  color: var(--gold-2);
}

.media-copy h2 {
  max-width: 640px;
}

.media-points {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.media-points li {
  position: relative;
  padding-left: 30px;
  color: rgba(247, 240, 227, 0.82);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.media-points li::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe79e, #d7aa52 60%, #a06e28);
  box-shadow: 0 0 0 4px rgba(215, 170, 82, 0.12);
  content: "";
}

.media-grid-platforms {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-grid-platforms .media-card {
  display: grid;
  align-content: center;
  min-height: 124px;
  padding: 20px 22px;
}

.media-grid-platforms .media-card span {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.media-grid-platforms .media-card h3 {
  margin-bottom: 0;
  color: rgba(247, 240, 227, 0.72);
  font-size: 16px;
  line-height: 1.35;
}

.footer-socials a,
.footer-bottom button:not(.footer-policy-button) {
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.footer-socials a:hover,
.footer-bottom button:hover {
  color: var(--gold-2);
}

.footer-policy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-bottom .footer-policy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  flex: 0 0 auto;
  overflow-wrap: anywhere;
  appearance: none;
  -webkit-appearance: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-policy-link:hover {
  color: var(--gold-2);
  border-color: rgba(244, 217, 147, 0.42);
  background: rgba(244, 217, 147, 0.08);
  transform: translateY(-1px);
}

.footer-policy-button:hover {
  color: var(--gold-2);
  border-color: rgba(244, 217, 147, 0.42);
  background: rgba(244, 217, 147, 0.08);
  transform: translateY(-1px);
}

.policy-page {
  min-height: 100vh;
  color: #22201b;
  background: #f5f1e8;
}

.policy-topbar {
  padding: 24px 0 0;
}

.policy-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.policy-topbar .brand {
  color: #fff;
}

.policy-topbar .brand-logo {
  height: 50px;
  max-height: 50px;
}

.policy-main {
  padding-bottom: 48px;
}

.policy-hero {
  padding: 48px 0 20px;
}

.policy-hero h1 {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.policy-lead {
  max-width: 920px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 999px;
  color: #26231f;
  background: #fff;
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
}

.policy-grid {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 28px;
  border: 1px solid rgba(29, 27, 24, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: none;
}

.policy-card h2,
.policy-card h3 {
  color: #1d1b18;
}

.policy-card h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.policy-card h3 {
  margin-top: 18px;
}

.policy-card p,
.policy-card li,
.policy-card td,
.policy-card th {
  color: rgba(29, 27, 24, 0.88);
  font-size: 16px;
  line-height: 1.7;
}

.policy-card a {
  color: #8a5d19;
  font-weight: 800;
}

.policy-card a:hover {
  color: #5e3c07;
}

.policy-card p + p,
.policy-card ul + p,
.policy-card p + ul,
.policy-card p + .policy-table-wrap,
.policy-card ul + .policy-table-wrap {
  margin-top: 14px;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
}

.policy-list li {
  color: #2c2923;
}

.policy-table-wrap {
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.policy-table th,
.policy-table td {
  padding: 14px 16px;
  border: 1px solid rgba(16, 35, 63, 0.12);
  vertical-align: top;
  text-align: left;
}

.policy-table th {
  color: #1d1b18;
  background: #f4efe4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-table td {
  color: rgba(29, 27, 24, 0.88);
  background: #fff;
}

.policy-note {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  color: rgba(29, 27, 24, 0.82);
  background: #fbf3dc;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-page .footer {
  background: var(--navy-2);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .brand {
    justify-content: flex-start;
  }

  .nav {
    grid-column: auto;
    order: 0;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .phone-link {
    display: none;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions .btn-small {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }
}

@media (max-width: 960px) {
  .hero-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-phone {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .phone-link {
    max-width: 136px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-topline {
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-brand-lockup {
    width: 100%;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .hero-brand-logo {
    width: 52px;
    height: 46px;
  }

  .hero-brand-copy strong {
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .hero-brand-copy span {
    font-size: 11px;
  }

  .hero-phone {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  .media-points {
    gap: 14px;
    margin-top: 18px;
  }

  .media-points li {
    padding-left: 24px;
    font-size: 15px;
  }

  .media-points li::before {
    top: 5px;
    width: 12px;
    height: 12px;
  }

  .media-grid-platforms {
    grid-template-columns: 1fr 1fr;
  }

  .media-grid-platforms .media-card {
    min-height: 108px;
    padding: 16px;
  }

  .media-grid-platforms .media-card span {
    font-size: 17px;
  }

  .media-grid-platforms .media-card h3 {
    font-size: 14px;
  }
}

/* Final responsive polish */
.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.brand,
.hero-brand-lockup,
.footer-brand {
  min-width: 0;
}

.brand-copy,
.hero-brand-copy {
  min-width: 0;
}

.brand-copy strong,
.hero-brand-copy strong {
  overflow-wrap: anywhere;
}

.footer-brand {
  align-items: center;
}

.footer .brand-logo {
  width: auto;
  height: 52px;
  max-height: 52px;
}

.footer .brand-copy small {
  display: block;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
    padding-inline: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 50px;
    max-height: 50px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 960px) {
  .hero {
    padding-top: 136px;
  }

  .hero-grid {
    gap: 28px;
    align-items: start;
  }

  .hero-copy,
  .hero-panel {
    max-width: none;
  }

  .hero-topline {
    width: 100%;
    align-items: stretch;
  }

  .hero-brand-lockup {
    width: 100%;
  }

  .hero-phone {
    width: fit-content;
    max-width: 100%;
  }

  .quiz-layout,
  .contacts-grid,
  .media-block {
    gap: 24px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 98px;
  }

  .site-header {
    align-items: center;
    padding: 8px;
    gap: 8px 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    height: 42px;
    max-height: 42px;
  }

  .brand-copy strong {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .brand-copy small {
    display: block;
    font-size: 8px;
    line-height: 1.15;
  }

  .site-header.menu-open {
    align-items: stretch;
  }

  .header-actions {
    min-width: 0;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: stretch;
    justify-self: stretch;
  }

  .site-header.menu-open .nav {
    display: grid;
    justify-items: stretch;
    width: 100%;
  }

  .nav a {
    width: 100%;
    padding-inline: 0;
  }

  .phone-link {
    max-width: none;
    min-height: 40px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 48px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy,
  .hero-panel {
    max-width: none;
  }

  .hero-topline {
    margin-bottom: 18px;
  }

  .hero-brand-lockup {
    gap: 10px;
    padding: 10px 12px;
  }

  .hero-brand-logo {
    width: 46px;
    height: 40px;
  }

  .hero-brand-copy strong {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .hero-brand-copy span {
    font-size: 10px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .badge-row {
    gap: 10px;
  }

  .badge-row span {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-proof {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-proof strong {
    font-size: 19px;
  }

  .hero-proof span {
    font-size: 14px;
  }

  .hero-cta-row {
    display: grid;
    gap: 10px;
  }

  .lead-card {
    padding: 18px;
  }

  .stats-grid {
    gap: 10px;
  }

  .service-grid,
  .benefit-grid,
  .feature-list,
  .media-grid-platforms {
    grid-template-columns: 1fr;
  }

  .media-block {
    gap: 20px;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions .btn:last-child {
    grid-column: 1 / -1;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .footer .brand-logo {
    height: 46px;
    max-height: 46px;
  }

  .footer .brand-copy strong,
  .footer .brand-copy small {
    overflow-wrap: anywhere;
  }

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

  .footer nav {
    gap: 12px;
    margin-top: 6px;
  }

  .footer nav h3 {
    margin: 0;
    line-height: 1.15;
  }

  .footer nav a {
    display: block;
    line-height: 1.35;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal-links {
    width: 100%;
  }

  .footer-policy-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.25;
    white-space: normal;
  }

  .footer-bottom .footer-policy-button {
    width: 100%;
    padding: 10px 16px;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.25;
    white-space: normal;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-trust {
    padding-top: 10px;
    font-size: 16px;
    text-align: left;
  }

  .option-grid-contact {
    grid-template-columns: 1fr;
  }

  .policy-topbar {
    padding-top: 18px;
  }

  .policy-topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .policy-hero {
    padding-top: 30px;
  }

  .policy-card {
    padding: 20px;
    border-radius: 22px;
  }

  .policy-lead {
    font-size: 16px;
  }

  .policy-card h2 {
    font-size: 28px;
  }

  .policy-card p,
  .policy-card li,
  .policy-card td,
  .policy-card th {
    font-size: 15px;
    line-height: 1.6;
  }

  .mobile-actions {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-actions a {
    min-height: 52px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .header-actions {
    grid-column: 2;
    justify-content: flex-end;
  }

  .phone-link {
    max-width: 124px;
  }

  .hero-phone {
    width: 100%;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-actions .btn:last-child {
    grid-column: auto;
  }

  .map-office {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .map-office strong {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    font-size: 11px;
  }

  .phone-link {
    font-size: 10px;
  }

  .hero-brand-copy strong {
    font-size: 11px;
  }
}

/* Desktop adaptive pass */
@media (max-width: 1460px) {
  .site-header {
    width: min(1240px, calc(100% - 24px));
    gap: 14px;
    padding: 10px 12px;
  }

  .nav {
    gap: 10px;
    font-size: 12px;
  }

  .header-actions .btn-small {
    padding-inline: 14px;
  }

  .hero {
    padding-top: 136px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    gap: 32px;
    align-items: start;
  }

  .benefits .container,
  .services .container,
  .valuation .container,
  .process .container,
  .cases .container,
  .contacts .container {
    width: min(var(--container), calc(100% - 56px));
  }

  .benefit-grid,
  .services .service-grid,
  .docs-grid,
  .documents-block .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .documents-block .docs-grid {
    display: grid;
    width: 100%;
    padding: 0;
    overflow: visible;
    scroll-padding-inline: 0;
    scroll-snap-type: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .documents-block .docs-grid article {
    flex: none;
    opacity: 1;
    filter: none;
    transform: none;
    will-change: auto;
  }

  .benefit-card,
  .services .service-card {
    min-height: auto;
  }

  .valuation {
    min-height: auto;
    padding: 88px 0 96px;
  }

  .valuation .quiz-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .valuation .quiz-copy,
  .valuation .quiz-card,
  .valuation .callout {
    width: 100%;
    max-width: none;
  }

  .valuation .quiz-copy {
    padding-top: 0;
  }

  .valuation .quiz-card {
    min-height: auto;
  }

  .valuation .option-grid span {
    white-space: normal;
  }

  .valuation .quiz-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process {
    min-height: auto;
    padding: 76px 0;
  }

  .process .timeline {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 72px 28px;
  }

  .process .timeline::before,
  .process .timeline::after,
  .process .timeline-card::before,
  .process .timeline-card::after,
  .process .timeline-card:nth-child(5)::after {
    display: none;
  }

  .process .timeline-card:nth-child(n) {
    grid-column: auto;
    width: 100%;
    transform: none;
  }

  .contacts .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts .contact-panel,
  .contacts .map-card {
    min-height: auto;
  }

  .contacts .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contacts .contact-actions .btn,
  .contacts .contact-actions .btn-primary,
  .contacts .contact-actions .btn:nth-child(2),
  .contacts .contact-actions .btn:nth-child(3),
  .contacts .contact-actions .btn:nth-child(4),
  .contacts .contact-actions .btn:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .nav {
    justify-content: center;
    gap: 8px;
    font-size: 11px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .valuation .quiz-actions {
    gap: 12px;
  }
}

/* July 2026 responsive corrections */
.documents-block .docs-grid,
.docs-grid {
  grid-auto-flow: row;
}

.documents-block .docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  width: 100%;
  padding: 0;
  overflow: visible;
  scroll-padding-inline: 0;
  scroll-snap-type: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.documents-block .docs-grid article {
  display: flex;
  flex-direction: column;
  flex: none;
  opacity: 1;
  filter: none;
  transform: none;
  will-change: auto;
}

.documents-block .docs-grid article.is-center {
  border-color: rgba(244, 217, 147, 0.38);
  box-shadow: var(--shadow);
  transform: none;
}

.documents-block .docs-grid img {
  aspect-ratio: 4 / 5.25;
  object-fit: cover;
}

@media (max-width: 960px) {
  .brand-copy small {
    display: block;
    font-size: 10px;
    line-height: 1.15;
  }

  .documents-block .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-copy small {
    display: block;
    font-size: 9px;
    line-height: 1.15;
  }

  .documents-block .docs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .documents-block .docs-grid article {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: block;
    font-size: 8px;
  }
}

/* Mobile header alignment fix */
@media (max-width: 760px) {
  .site-header,
  .site-header.scrolled {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    height: 72px;
    min-height: 72px;
    padding: 0 14px;
    gap: 10px;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-self: start;
    width: 100%;
    min-height: 100%;
  }

  .site-header .brand-logo {
    height: 42px;
    max-height: 42px;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .header-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-header.menu-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    flex-direction: column;
    border-top: 1px solid rgba(215, 170, 82, 0.14);
  }

  .site-header.menu-open,
  .site-header.scrolled.menu-open {
    align-items: start;
    height: auto;
    min-height: 72px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-header.menu-open .brand,
  .site-header.menu-open .menu-toggle {
    align-self: center;
  }

  .site-header.menu-open .nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0;
  }

  .footer-brand {
    min-height: 0;
  }
}

@media (max-width: 380px) {
  .site-header,
  .site-header.scrolled {
    height: 68px;
    min-height: 68px;
    padding: 0 12px;
    gap: 8px;
  }

  .site-header .brand-logo {
    height: 38px;
    max-height: 38px;
  }

  .menu-toggle {
    width: 26px;
    height: 26px;
  }

  .menu-toggle span {
    width: 20px;
  }
}

/* Mobile service cards compact layout */
@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    width: min(100%, 348px);
    min-height: 0;
    margin-inline: auto;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .service-card-top {
    margin-bottom: 12px;
  }

  .card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .service-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 1.08;
  }

  .service-card p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .service-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin: 0 0 16px;
  }

  .service-card li {
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .service-card li::before {
    top: 0.52em;
    width: 6px;
    height: 6px;
  }

  .service-card .text-link {
    margin-top: 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 100%;
    max-width: 332px;
    padding: 18px 16px;
  }

  .service-card ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p,
  .service-card li,
  .service-card .text-link {
    font-size: 13px;
  }
}

/* Mobile benefits compact layout */
@media (max-width: 760px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    width: min(100%, 332px);
    min-height: 0;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 16px 20px;
    border: 1px solid rgba(215, 170, 82, 0.28);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
      rgba(17, 21, 27, 0.72);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    font-size: 18px;
  }

  .benefit-divider {
    display: none;
  }

  .benefit-card h3 {
    max-width: none;
    margin: 0;
    font-size: 18px;
    line-height: 1.18;
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    width: 100%;
    max-width: 312px;
    padding: 16px 14px 18px;
    gap: 10px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }
}

/* Mobile valuation quiz compact layout */
@media (max-width: 760px) {
  .valuation .container {
    width: min(var(--container), calc(100% - 18px));
  }

  .valuation .quiz-card {
    padding: 22px 14px 18px;
    border-radius: 24px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 0 6px rgba(215, 170, 82, 0.06),
      0 18px 38px rgba(0, 0, 0, 0.28);
  }

  .valuation .quiz-card::before {
    inset: 7px;
    border-radius: 18px;
  }

  .valuation .quiz-top {
    gap: 14px;
    margin-bottom: 22px;
  }

  .valuation .quiz-top > span {
    font-size: 16px;
  }

  .valuation .progress {
    height: 10px;
  }

  .valuation .quiz-step.active {
    gap: 18px;
  }

  .valuation .quiz-step h3 {
    font-size: 24px;
    line-height: 1.08;
  }

  .valuation .option-grid,
  .valuation .option-grid-compact {
    gap: 10px;
  }

  .valuation .option-grid span {
    gap: 14px;
    min-height: 58px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1.2;
  }

  .valuation .quiz-option-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .valuation .quiz-step > label > span,
  .valuation .quiz-step > label span:first-child {
    font-size: 14px;
  }

  .valuation .quiz-step input[type="text"],
  .valuation .quiz-step input[type="tel"],
  .valuation .quiz-step input[type="number"] {
    min-height: 52px;
    padding: 0 16px;
    font-size: 16px;
  }

  .valuation .form-two {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .valuation .quiz-actions {
    margin-top: 20px;
    padding-top: 20px;
    gap: 10px;
  }

  .valuation .quiz-actions .btn {
    min-height: 52px;
    border-radius: 16px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .valuation .quiz-card {
    padding: 18px 12px 16px;
    border-radius: 22px;
  }

  .valuation .quiz-card::before {
    inset: 6px;
    border-radius: 16px;
  }

  .valuation .quiz-top > span {
    font-size: 15px;
  }

  .valuation .quiz-step h3 {
    font-size: 21px;
  }

  .valuation .option-grid span {
    min-height: 54px;
    padding: 0 14px;
    font-size: 15px;
  }

  .valuation .quiz-option-icon {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .valuation .quiz-actions .btn {
    min-height: 50px;
    font-size: 15px;
  }
}

.case-slider-shell {
  position: relative;
}

.case-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 170, 82, 0.34);
  border-radius: 999px;
  color: #f1d17a;
  background: rgba(14, 18, 24, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.case-slider-arrow:hover:not(:disabled) {
  border-color: rgba(244, 217, 147, 0.62);
  background: rgba(18, 22, 28, 0.96);
  transform: translateY(-50%) scale(1.04);
}

.case-slider-arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.case-slider-arrow:disabled {
  opacity: 0.45;
}

@media (min-width: 761px) {
  .case-slider-arrow {
    width: 54px;
    height: 54px;
  }

  .case-slider-arrow svg {
    width: 20px;
    height: 20px;
  }

  .case-slider-arrow-prev {
    left: 12px;
  }

  .case-slider-arrow-next {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .case-slider-arrow {
    width: 42px;
    height: 42px;
  }

  .case-slider-arrow svg {
    width: 18px;
    height: 18px;
  }

  .case-slider-arrow-prev {
    left: -2px;
  }

  .case-slider-arrow-next {
    right: -2px;
  }
}

@media (max-width: 480px) {
  .case-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .case-slider-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* Mobile benefits no-box centered text */
@media (max-width: 760px) {
  .benefit-card {
    width: min(100%, 332px);
    margin-bottom: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .benefit-card h3 {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    max-width: 312px;
    margin-bottom: 12px;
    gap: 10px;
  }
}

/* Mobile services one-by-one cards */
@media (max-width: 760px) {
  .services .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .services .service-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    justify-items: stretch;
  }

  .services .service-card {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin-inline: auto;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .services .service-card h3 {
    font-size: 19px;
    line-height: 1.1;
  }

  .services .service-card p,
  .services .service-card li,
  .services .service-card .text-link {
    font-size: 13px;
    line-height: 1.36;
  }

  .services .service-card ul {
    gap: 7px;
  }
}

@media (max-width: 480px) {
  .services .container {
    width: min(var(--container), calc(100% - 16px));
  }

  .services .service-card {
    width: 100%;
    padding: 18px 15px;
  }

  .map-consent-placeholder {
    min-height: 320px;
    padding: 22px 18px;
  }

  .map-consent-placeholder strong {
    font-size: 20px;
  }
}

/* July 2026 desktop tightening and unified buttons */
.btn-primary,
.btn-light,
.btn-ghost,
.hero .btn-light,
.floating-call,
.hero-phone {
  color: #fff;
  border-color: rgba(244, 217, 147, 0.52);
  background: linear-gradient(135deg, #f6dfa0 0%, #d7aa52 54%, #9d6928 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 42px rgba(215, 170, 82, 0.24);
}

.btn-primary:hover,
.btn-light:hover,
.btn-ghost:hover,
.hero .btn-light:hover,
.floating-call:hover,
.hero-phone:hover {
  color: #fff;
  background: linear-gradient(135deg, #fde9b2 0%, #dfb860 54%, #ad7530 100%);
}

.case-slider-arrow {
  color: #fff;
  border-color: rgba(244, 217, 147, 0.52);
  background: linear-gradient(135deg, #f6dfa0 0%, #d7aa52 54%, #9d6928 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(215, 170, 82, 0.24);
}

.case-slider-arrow:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(255, 233, 178, 0.76);
  background: linear-gradient(135deg, #fde9b2 0%, #dfb860 54%, #ad7530 100%);
}

.valuation .quiz-actions .btn-light:disabled {
  color: rgba(247, 240, 227, 0.42);
  border-color: rgba(215, 170, 82, 0.16);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

@media (min-width: 1201px) {
  .valuation {
    min-height: auto;
    padding: 78px 0 88px;
  }

  .valuation .container {
    width: min(1500px, calc(100% - 72px));
  }

  .valuation .quiz-layout {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
    transform: translateY(3px);
  }

  .valuation .quiz-copy,
  .valuation .quiz-card,
  .valuation .callout {
    width: 100%;
    max-width: none;
  }

  .valuation .quiz-copy {
    display: flex;
    height: 100%;
    min-height: 100%;
    padding-top: 14px;
    flex-direction: column;
  }

  .valuation .callout {
    margin-top: auto;
    transform: translateY(2px);
  }

  .valuation .quiz-card {
    min-height: auto;
    padding: 48px 44px 40px;
  }

  .valuation .quiz-actions {
    margin-top: 18px;
    padding-top: 22px;
  }

  .process {
    min-height: auto;
    padding: 24px 0 46px;
  }

  .process .section-head {
    margin: 0 auto 48px;
  }

  .process .timeline {
    gap: 96px 26px;
  }

  .case-slider-arrow-prev {
    left: -14px;
  }

  .case-slider-arrow-next {
    right: -14px;
  }
}

/* Keep the full property label clear of the form on wide laptop screens. */
@media (min-width: 1500px) {
  .valuation .quiz-layout {
    grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
    column-gap: clamp(72px, 5vw, 104px);
  }

  .valuation .quiz-copy h2 .nowrap-line {
    font-size: inherit;
    letter-spacing: inherit;
  }

  .valuation .quiz-card {
    width: 100%;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 0 4px rgba(215, 170, 82, 0.045),
      0 22px 54px rgba(0, 0, 0, 0.36);
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

/* Responsive foundation: keep every layout inside the viewport. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 0;
}

*,
*::before,
*::after {
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

input,
select,
textarea,
button {
  min-width: 0;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
}

.hero-grid,
.quiz-layout,
.marketing-grid,
.legal-grid,
.form-section-grid,
.contacts-grid,
.faq-grid,
.media-block {
  min-width: 0;
}

.hero-copy,
.hero-panel,
.quiz-copy,
.quiz-card,
.service-card,
.benefit-card,
.timeline-card,
.case-card,
.contact-panel,
.map-card,
.footer-grid > *,
.modal-dialog,
.image-lightbox-dialog {
  min-width: 0;
  overflow-wrap: anywhere;
}

.btn,
.text-link,
.nav a,
.footer a {
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .hero-grid,
  .quiz-layout,
  .marketing-grid,
  .legal-grid,
  .form-section-grid,
  .contacts-grid,
  .faq-grid,
  .media-block {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .benefit-grid,
  .review-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    min-height: auto;
  }

  .process .timeline {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: clamp(30px, 5vw, 72px) clamp(16px, 3vw, 28px);
  }

  .process .timeline::before,
  .process .timeline::after,
  .process .timeline-card::before,
  .process .timeline-card::after {
    display: none;
  }

  .process .timeline-card:nth-child(n) {
    grid-column: auto;
    width: 100%;
    margin: 0;
    transform: none;
  }

  .contacts .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts .contact-panel,
  .contacts .map-card {
    min-height: auto;
  }
}

@media (max-width: 800px) {
  .container,
  .benefits .container,
  .process .container,
  .cases .container,
  .contacts .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .section {
    padding-block: clamp(52px, 12vw, 76px);
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-open,
  .site-header.scrolled.menu-open {
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 1rem);
    min-height: 68px;
    height: auto;
    margin: 0;
    padding: 10px 12px;
    gap: 8px;
    border-radius: 22px;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: 46px;
  }

  .site-header .brand-logo {
    height: clamp(38px, 11vw, 46px);
    max-height: none;
  }

  .site-header .brand-copy strong {
    font-size: clamp(12px, 3.5vw, 16px);
    line-height: 1.05;
  }

  .site-header .brand-copy small {
    display: block;
    font-size: clamp(8px, 2.2vw, 10px);
    line-height: 1.15;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    color: var(--gold-2);
    background: transparent;
  }

  .menu-toggle span {
    position: absolute;
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-header .nav,
  .site-header .header-actions,
  .nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open {
    align-items: start;
    padding-block: 12px 14px;
  }

  .site-header.menu-open .nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    white-space: normal;
  }

  .site-header.menu-open .nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .site-header.menu-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(215, 170, 82, 0.14);
    white-space: normal;
  }

  .site-header.menu-open .header-actions .btn {
    width: 100%;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .hero-cta-row,
  .hero-cta-row .btn,
  .lead-card .btn,
  .modal-dialog .btn {
    width: 100%;
  }

  .hero-panel,
  .lead-card,
  .quiz-card,
  .dashboard-card,
  .contact-panel,
  .map-card {
    max-width: 100%;
  }

  .stats-grid,
  .service-grid,
  .benefit-grid,
  .review-grid,
  .feature-list,
  .option-grid,
  .option-grid-compact,
  .form-two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    min-height: 96px;
    padding: 16px;
  }

  .process .container > .timeline,
  .process .timeline {
    overflow-x: clip;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process .timeline-card {
    min-height: 0;
    padding: 56px 18px 22px;
  }

  .process .timeline-card h3,
  .process .timeline-card p {
    max-width: none;
  }

  .quiz-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .quiz-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .valuation .quiz-card {
    padding-inline: clamp(12px, 4vw, 22px);
  }

  .valuation .quiz-step,
  .valuation .quiz-step > *,
  .valuation .option-grid,
  .valuation .option-grid label,
  .valuation .option-grid span {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .valuation .eyebrow::after {
    left: calc(100% + 12px);
    width: clamp(40px, 12vw, 90px);
  }

  .valuation .option-grid span {
    min-height: 56px;
    padding-inline: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cases .case-grid {
    width: 100%;
    max-width: 100%;
    padding-inline: max(4px, calc((100% - min(430px, calc(100vw - 48px))) / 2));
  }

  .cases .case-card {
    flex-basis: min(430px, calc(100vw - 48px));
    transform: translate3d(0, 0, 0);
  }

  .cases .case-card.is-center {
    transform: translate3d(0, 0, 0);
  }

  .cases .case-body h3 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .cases .case-body dl div {
    min-width: 0;
  }

  .documents-block .docs-grid {
    grid-template-columns: 1fr;
  }

  .contacts .contact-actions {
    grid-template-columns: 1fr;
  }

  .contacts .contact-actions .btn,
  .contacts .contact-actions .btn-primary,
  .contacts .contact-actions .btn:nth-child(n) {
    grid-column: auto;
  }

  .contacts .map-office {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 16px;
  }

  .contacts .map-office-icon {
    width: 52px;
    height: 52px;
  }

  .contacts .map-office strong {
    font-size: clamp(18px, 5vw, 24px);
  }

  .footer-grid {
    gap: 24px;
  }

  .footer .brand-logo {
    max-width: 100%;
  }

  .modal {
    padding: 12px;
  }

  .modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 22px 16px;
    border-radius: 22px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .cookie-banner-actions,
  .cookie-banner-actions .btn {
    width: 100%;
  }

  .image-lightbox {
    padding: 10px;
  }

  .image-lightbox-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 10px;
    border-radius: 18px;
  }

  .image-lightbox-image {
    max-height: calc(100dvh - 92px);
    border-radius: 12px;
  }

  .image-lightbox-caption {
    margin-top: 10px;
    font-size: 15px;
  }
}

@media (min-width: 1201px) and (max-width: 1599px) {
  .process .container > .timeline,
  .process .timeline {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 72px 28px;
  }

  .process .timeline::before,
  .process .timeline::after,
  .process .timeline-card::before,
  .process .timeline-card::after {
    display: none;
  }

  .process .container > .timeline .timeline-card:nth-child(n),
  .process .timeline-card:nth-child(n) {
    grid-column: auto;
    width: 100%;
    margin: 0;
    transform: none;
  }
}

/* Final overflow guard for long quiz labels and legacy desktop rules. */
.valuation .quiz-step.active {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.valuation .option-grid,
.valuation .option-grid label,
.valuation .option-grid span {
  min-width: 0;
  max-width: 100%;
}

.valuation .option-grid span {
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Final mobile overrides: keep late legacy rules from overriding the actual layout. */
@media (max-width: 760px) {
  .site-header,
  .site-header.scrolled,
  .site-header.menu-open,
  .site-header.scrolled.menu-open {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    width: calc(100% - 1rem) !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 14px 16px !important;
    gap: 10px !important;
    border-radius: 22px !important;
  }

  .site-header .brand,
  .site-header .menu-toggle {
    align-self: center !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 0 !important;
    gap: 12px !important;
  }

  .site-header .brand-logo {
    flex: 0 0 auto;
    width: auto !important;
    height: 54px !important;
  }

  .site-header .brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .site-header .brand-copy strong {
    font-size: 12px !important;
    line-height: 1.04 !important;
  }

  .site-header .brand-copy small {
    font-size: 8px !important;
    line-height: 1.12 !important;
  }

  .menu-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    place-self: center !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .menu-toggle span {
    width: 28px !important;
  }

  .site-header.menu-open {
    align-items: start !important;
    padding-bottom: 14px !important;
  }

  .site-header.menu-open .nav {
    display: flex !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 12px 0 0 !important;
    padding: 10px 0 0 !important;
    border-top: 1px solid var(--line) !important;
  }

  .site-header.menu-open .nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 42px !important;
    padding: 2px 0 !important;
  }

  .site-header.menu-open .header-actions {
    display: flex !important;
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-top: 8px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(215, 170, 82, 0.14) !important;
  }

  .site-header.menu-open .header-actions .btn {
    width: 100% !important;
  }

  .services .container {
    width: min(var(--container), calc(100% - 16px)) !important;
  }

  .services .service-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    justify-items: center !important;
  }

  .services .service-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    width: min(100%, 348px) !important;
    max-width: 348px !important;
    min-height: 340px !important;
    margin: 0 auto !important;
    padding: 20px 18px !important;
    border-radius: 28px !important;
  }

  .services .service-card h3 {
    font-size: 18px !important;
    line-height: 1.08 !important;
  }

  .services .service-card p,
  .services .service-card li,
  .services .service-card .text-link {
    font-size: 13px !important;
    line-height: 1.34 !important;
  }

  .services .service-card ul {
    gap: 7px !important;
  }

  .benefits .benefit-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    justify-items: center !important;
  }

  .benefit-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
  }

  .benefit-card::before,
  .benefit-card::after,
  .benefit-divider {
    display: none !important;
  }

  .benefit-card h3 {
    width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .valuation .container {
    width: min(var(--container), calc(100% - 16px)) !important;
  }

  .valuation .quiz-card {
    max-width: 100% !important;
    margin-inline: auto !important;
    padding: 20px 16px 18px !important;
    border-radius: 24px !important;
  }

  .valuation .quiz-top {
    gap: 12px !important;
  }

  .valuation [data-quiz-step-label] {
    font-size: 14px !important;
  }

  .valuation .progress {
    height: 8px !important;
  }

  .valuation .quiz-card h3 {
    font-size: 20px !important;
    line-height: 1.08 !important;
    margin-bottom: 4px !important;
  }

  .valuation .option-grid,
  .valuation .option-grid-compact {
    gap: 10px !important;
  }

  .valuation .option-grid label span,
  .valuation .option-grid-compact label span {
    min-height: 70px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    gap: 10px !important;
  }

  .valuation .quiz-option-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .valuation .quiz-actions {
    gap: 10px !important;
    padding-top: 16px !important;
  }

  .valuation .quiz-actions .btn {
    min-height: 46px !important;
    font-size: 14px !important;
  }

  .case-slider-shell {
    padding-inline: 12px !important;
  }

  .case-slider-arrow {
    display: inline-flex !important;
    top: 44% !important;
    width: 42px !important;
    height: 42px !important;
  }

  .case-slider-arrow-prev {
    left: 6px !important;
  }

  .case-slider-arrow-next {
    right: 6px !important;
  }
}

@media (max-width: 480px) {
  .site-header,
  .site-header.scrolled,
  .site-header.menu-open,
  .site-header.scrolled.menu-open {
    padding: 12px 14px !important;
  }

  .site-header .brand-logo {
    height: 50px !important;
  }

  .services .service-card {
    width: min(100%, 336px) !important;
    max-width: 336px !important;
    min-height: 324px !important;
    padding: 18px 16px !important;
  }

  .benefits .benefit-grid {
    gap: 24px !important;
  }

  .valuation .quiz-card {
    padding: 18px 14px 16px !important;
  }

  .valuation .option-grid label span,
  .valuation .option-grid-compact label span {
    min-height: 66px !important;
    padding: 13px 14px !important;
    font-size: 14px !important;
  }

  .case-slider-arrow {
    width: 38px !important;
    height: 38px !important;
  }
}
