:root {
  --bg: #0e100f;
  --bg-soft: #171d1a;
  --bg-elevated: #202723;
  --cream: #fff9df;
  --muted: #cac3aa;
  --gold: #d99a5f;
  --gold-dark: #80563a;
  --sage: #8aa383;
  --blue: #8ba6c7;
  --ink: #111412;
  --paper: #fffaf0;
  --line: rgba(255, 249, 223, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --font: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 10%, rgba(138, 163, 131, 0.18), transparent 28%),
    linear-gradient(180deg, #0e100f 0%, #111512 54%, #0e100f 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 18px 0;
  color: var(--cream);
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 12px 0;
  background: rgba(14, 16, 15, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 154, 95, 0.45);
  border-radius: 8px;
  background: rgba(217, 154, 95, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
}

.nav a {
  color: rgba(255, 249, 223, 0.9);
  font-size: 15px;
}

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

.outline-btn {
  padding: 13px 20px;
  border: 1px solid rgba(217, 154, 95, 0.8);
  border-radius: 999px;
  color: var(--gold) !important;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 249, 223, 0.2);
  border-radius: 8px;
  background: rgba(255, 249, 223, 0.06);
  color: var(--cream);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-btn span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.site-header.is-open .menu-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 132px 0 48px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 16, 15, 0.96) 0%, rgba(14, 16, 15, 0.78) 48%, rgba(14, 16, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(14, 16, 15, 0.1) 0%, #0e100f 100%),
    url("../assets/hero-legal.jpg") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 455px);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  min-width: 0;
  max-width: 650px;
}

.eyebrow,
.section-title p {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lead {
  width: min(100%, 590px);
  margin-bottom: 30px;
  color: rgba(255, 249, 223, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  box-shadow: 0 16px 34px rgba(217, 154, 95, 0.23);
  color: var(--cream);
  font-weight: 700;
  text-align: center;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.main-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 20px 42px rgba(217, 154, 95, 0.28);
}

.main-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ghost-link {
  color: var(--cream);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(217, 154, 95, 0.8);
  text-underline-offset: 6px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 249, 223, 0.15);
  border-radius: 999px;
  background: rgba(255, 249, 223, 0.06);
  color: rgba(255, 249, 223, 0.86);
  font-size: 14px;
}

.lead-form-card {
  border: 1px solid rgba(217, 154, 95, 0.26);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.lead-form h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.lead-form > p {
  margin-bottom: 6px;
  color: #62675f;
  line-height: 1.45;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #4a4f49;
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #e8dfcc;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 154, 95, 0.18);
  outline: none;
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #4a4f49 50%),
    linear-gradient(135deg, #4a4f49 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 23px,
    calc(100% - 15px) 23px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.lead-form small {
  color: #646a62;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.lead-form small a {
  color: var(--ink);
  text-decoration: underline;
}

.trust-strip {
  padding: 56px 0 8px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 223, 0.04);
}

.trust-grid div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.trust-grid span {
  color: rgba(255, 249, 223, 0.76);
  line-height: 1.45;
}

section {
  padding: 72px 0;
}

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

.why-us {
  padding-top: 36px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-title.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title h2,
.contacts-copy h2 {
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.service-card,
.review-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 249, 223, 0.07), rgba(255, 249, 223, 0.025));
}

.feature-card {
  min-height: 242px;
  padding: 26px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(217, 154, 95, 0.14);
}

.icon-badge svg {
  width: 34px;
  height: 34px;
  fill: var(--gold);
}

.feature-card h3,
.service-card h3,
.step-card h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.service-card p,
.step-card p {
  margin: 0;
  color: rgba(255, 249, 223, 0.72);
  line-height: 1.55;
}

.steps-section {
  background:
    linear-gradient(180deg, rgba(32, 39, 35, 0.75), rgba(14, 16, 15, 0)),
    radial-gradient(circle at 80% 10%, rgba(139, 166, 199, 0.14), transparent 32%);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(217, 154, 95, 0.22), rgba(32, 39, 35, 0.74));
}

.step-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 249, 223, 0.28);
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: var(--cream);
  font-weight: 800;
}

.step-card h3 {
  font-size: 18px;
}

.step-card p {
  font-size: 14px;
}

.center-cta {
  max-width: 720px;
  margin: 42px auto 0;
  text-align: center;
}

.center-cta p {
  margin-bottom: 22px;
  color: rgba(255, 249, 223, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 249, 223, 0.035), transparent);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  min-height: 220px;
  padding: 22px;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(139, 166, 199, 0.14);
  color: var(--blue);
  font-weight: 800;
}

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

.service-card p {
  font-size: 14px;
}

.faq-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(138, 163, 131, 0.12), transparent 24%),
    #111512;
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(217, 154, 95, 0.55);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-weight: 800;
  text-align: left;
}

.accordion-item button::after {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(217, 154, 95, 0.14);
  color: var(--gold);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.accordion-item button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.accordion-panel > p {
  overflow: hidden;
  margin: 0;
  color: rgba(255, 249, 223, 0.78);
  line-height: 1.65;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel > p {
  margin-top: 12px;
  padding: 24px 28px;
  border-radius: 8px;
  background: rgba(255, 249, 223, 0.06);
}

.review-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 16px;
}

.reviews-track {
  display: grid;
  grid-auto-columns: calc((100% - 40px) / 3);
  grid-auto-flow: column;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  padding: 12px 4px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: grid;
  grid-template-rows: 74px 52px minmax(170px, 1fr) 24px;
  gap: 14px;
  min-height: 430px;
  padding: 26px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(217, 154, 95, 0.92), rgba(119, 82, 56, 0.96));
}

.avatar {
  width: 74px;
  height: 74px;
  margin: 0;
  border: 1px solid rgba(255, 249, 223, 0.4);
  border-radius: 50%;
  background: rgba(14, 16, 15, 0.22);
  object-fit: cover;
}

.review-card h3 {
  align-self: center;
  margin: 0;
  color: var(--cream);
  font-size: 20px;
  line-height: 1.2;
}

.review-card p {
  margin: 0;
  color: rgba(255, 249, 223, 0.88);
  line-height: 1.55;
}

.stars {
  position: relative;
  display: inline-block;
  align-self: end;
  width: max-content;
  color: rgba(255, 249, 223, 0.32);
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1;
}

.stars::before,
.stars::after {
  content: "★★★★★";
  display: block;
}

.stars::after {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating-width);
  overflow: hidden;
  color: #ffd36a;
  white-space: nowrap;
}

.rating-5 {
  --rating-width: 100%;
}

.rating-4 {
  --rating-width: 80%;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 249, 223, 0.18);
  border-radius: 50%;
  background: rgba(255, 249, 223, 0.06);
  color: var(--cream);
}

.slider-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.choose-section {
  background: linear-gradient(180deg, transparent, rgba(138, 163, 131, 0.08));
}

.choose-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.choose-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.choose-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(14, 16, 15, 0.48));
  content: "";
}

.choose-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 249, 223, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--bg);
  content: "";
}

.highlight-note {
  padding: 22px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 249, 223, 0.06);
  color: rgba(255, 249, 223, 0.82);
  line-height: 1.55;
}

.contacts-section {
  background:
    linear-gradient(90deg, rgba(14, 16, 15, 0.96), rgba(14, 16, 15, 0.72)),
    url("../assets/hero-legal.jpg") center / cover no-repeat;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 450px);
  align-items: center;
  gap: 54px;
}

.contacts-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 249, 223, 0.8);
  font-size: 18px;
  line-height: 1.65;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 249, 223, 0.8);
}

.contact-lines a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 38px 0 28px;
  border-top: 1px solid var(--line);
  background: #0a0c0b;
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.footer-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 30px;
}

.footer-brand {
  margin: 0;
}

.footer-policy {
  color: var(--muted);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 270px;
  color: rgba(255, 249, 223, 0.75);
  line-height: 1.45;
  text-align: right;
}

.footer-label {
  color: var(--cream);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 249, 223, 0.1);
}

.footer-note {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 249, 223, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.policy-page {
  padding-top: 94px;
  background: linear-gradient(180deg, rgba(255, 249, 223, 0.04), transparent);
}

.policy-content {
  max-width: 820px;
}

.policy-content h1 {
  margin-bottom: 26px;
  font-size: clamp(34px, 5vw, 54px);
}

.policy-content h2 {
  margin: 34px 0 12px;
  color: var(--gold);
  font-size: 24px;
}

.policy-content p {
  color: rgba(255, 249, 223, 0.78);
  font-size: 17px;
  line-height: 1.68;
}

.policy-back {
  margin-top: 22px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 110;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(138, 163, 131, 0.45);
  border-radius: 8px;
  background: #172019;
  color: var(--cream);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(520px, calc(100% - 40px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 16, 15, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 249, 223, 0.8);
  line-height: 1.45;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.small-btn,
.text-btn {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.small-btn {
  border: 0;
  background: var(--gold);
  color: var(--ink);
}

.text-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
}

@media (max-width: 1080px) {
  .hero-grid,
  .contacts-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 32px;
  }

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

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

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 75px;
    right: 16px;
    left: 16px;
    display: none;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(14, 16, 15, 0.97);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .outline-btn {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding-top: 112px;
  }

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

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(14, 16, 15, 0.94), rgba(14, 16, 15, 0.74) 58%, #0e100f 100%),
      url("../assets/hero-legal.jpg") center / cover no-repeat;
  }

  .cards-grid.three,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .choose-media,
  .choose-media img {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 420px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-lead {
    display: block;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
    margin-bottom: 0;
  }

  .hero .lead-form-card {
    order: 3;
    margin-top: 0;
  }

  .hero-copy .hero-lead {
    order: 4;
  }

  .hero-actions,
  .hero-points {
    display: none;
  }

  h1 {
    font-size: 30px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .eyebrow,
  .section-title p {
    font-size: 12px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .contacts-copy p:not(.eyebrow),
  .check-list li {
    font-size: 16px;
  }

  .hero-actions,
  .hero-points {
    align-items: stretch;
    flex-direction: column;
  }

  .main-btn,
  .ghost-link {
    width: 100%;
    max-width: 100%;
  }

  .ghost-link {
    display: inline-flex;
    justify-content: center;
    padding: 10px 0;
  }

  .lead-form {
    padding: 22px;
  }

  .trust-grid,
  .cards-grid.three,
  .services-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  section {
    padding: 54px 0;
  }

  .accordion-item button {
    align-items: flex-start;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.35;
  }

  .review-shell {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .reviews-track {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    grid-auto-columns: 100%;
  }

  .review-card {
    width: 100%;
    padding-right: 58px;
    padding-left: 58px;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 58px;
    border: 0;
    margin-top: 0;
    transform: translateY(-50%);
    background: transparent;
    color: var(--cream);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.75));
  }

  .slider-btn svg {
    width: 42px;
    height: 42px;
  }

  .review-shell > .slider-btn:first-child {
    left: -2px;
  }

  .review-shell > .slider-btn:last-child {
    right: 6px;
  }

  .choose-media,
  .choose-media img {
    min-height: 320px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .footer-left {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-right {
    justify-items: start;
    min-width: 0;
    text-align: left;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .cookie-banner div {
    justify-content: flex-end;
  }
}
