:root {
  --bg: #050505;
  --bg-2: #080908;
  --bg-3: #0b0d0c;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.74);
  --muted: rgba(255, 255, 255, 0.52);
  --accent: #2ecc71;
  --accent-2: #47dd83;
  --accent-dark: #11351f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-lg: 28px;
  --shell: min(1200px, calc(100% - 56px));
  --section: clamp(68px, 8vw, 112px);
  --font: "DM Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 204, 113, 0.08), transparent 34rem),
    linear-gradient(180deg, #050505 0%, #030303 100%);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

::selection {
  color: #021107;
  background: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  color: #03140a;
  background: var(--accent);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(5, 5, 5, 0.82);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: max-content;
  text-transform: uppercase;
}

.brand-main {
  position: relative;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.09em;
  font-style: italic;
}

.brand-main::after {
  content: "";
  position: absolute;
  left: 42%;
  right: -4px;
  bottom: -3px;
  height: 2px;
  background: var(--accent);
  transform: skewX(-25deg);
}

.brand-main span {
  color: #f7fff9;
}

.brand-sub {
  color: rgba(255, 255, 255, 0.66);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.52em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-book {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, rgba(80, 184, 119, 0.98), rgba(46, 151, 86, 0.98));
  box-shadow: 0 16px 36px rgba(46, 204, 113, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(46, 204, 113, 0.28);
}

.nav-book svg,
.button svg,
.footer svg,
.trust-item svg,
.service-icon svg,
.step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.22s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, rgba(80, 184, 119, 0.98), rgba(46, 151, 86, 0.98));
  box-shadow: 0 18px 42px rgba(46, 204, 113, 0.2);
}

.button-primary:hover {
  box-shadow: 0 22px 52px rgba(46, 204, 113, 0.32);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.22);
}

.button-ghost:hover {
  border-color: rgba(46, 204, 113, 0.65);
  background: rgba(46, 204, 113, 0.08);
}

.button.compact {
  min-height: 50px;
  padding-inline: 26px;
}

.hero {
  position: relative;
  min-height: 800px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  filter: saturate(0.85) contrast(1.08) brightness(0.78);
  transform: scale(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.09), transparent 17rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 35%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18) 42%, #050505 100%);
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 85%, rgba(46, 204, 113, 0.12), transparent 22rem),
    linear-gradient(180deg, transparent 0%, #050505 99%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
  padding-top: 92px;
}

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

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 31px;
  padding: 7px 15px;
  border: 1px solid rgba(46, 204, 113, 0.16);
  border-radius: 999px;
  color: #effff5;
  background: rgba(46, 204, 113, 0.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(46, 204, 113, 0.13);
}

.hero h1,
.results-copy h2,
.services-head h2,
.process-title h2,
.reviews-copy h2,
.cta-banner h2 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(56px, 6.3vw, 82px);
  line-height: 0.94;
}

.hero h1 span,
.results-copy h2 span,
.process-title h2 span,
.reviews-copy h2 span,
.cta-banner h2 span,
.section-kicker {
  color: var(--accent);
}

.hero p {
  max-width: 505px;
  margin: 28px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-actions .button {
  min-width: 202px;
}

.google-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.google-mark {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background: conic-gradient(from 30deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  font-size: 18px;
  font-weight: 900;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.trust-section {
  position: relative;
  z-index: 4;
  margin-top: -58px;
}

.trust-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(10, 10, 10, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.trust-item {
  min-width: 0;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px clamp(14px, 1.8vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  overflow: hidden;
}

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

.trust-item svg {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: var(--accent);
  stroke-width: 1.45;
}

.trust-item strong,
.trust-item span {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  overflow-wrap: normal;
}

.trust-item strong {
  color: #fff;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.02;
  font-weight: 900;
  white-space: normal;
}

.trust-item span {
  margin-top: -5px;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.25;
  white-space: normal;
}

.results {
  padding-top: clamp(42px, 6vw, 72px);
  background: #050505;
}

.results-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.results-copy h2 {
  font-size: clamp(33px, 3.3vw, 43px);
  line-height: 1.02;
}

.results-copy p {
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.comparison-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison {
  --position: 50%;
  position: relative;
  aspect-ratio: 2.35 / 1;
  min-height: 310px;
  overflow: hidden;
  background: #111;
}

.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comparison-after {
  position: absolute;
  inset: 0;
}

.comparison-before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--position);
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.comparison-before img {
  width: var(--comparison-width, 100%);
  max-width: none;
}

.comparison-line {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  pointer-events: none;
}

.comparison-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(8px);
  font-size: 14px;
  letter-spacing: -0.25em;
}

.comparison input {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-label {
  position: absolute;
  z-index: 5;
  top: 28px;
  padding: 7px 12px;
  border-radius: 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.before-label {
  left: 28px;
}

.after-label {
  right: 28px;
  background: linear-gradient(180deg, rgba(80, 184, 119, 0.96), rgba(46, 151, 86, 0.96));
}

.services {
  background:
    radial-gradient(circle at 50% 10%, rgba(46, 204, 113, 0.055), transparent 25rem),
    #050505;
}

.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-kicker {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-head h2 {
  font-size: clamp(34px, 4vw, 45px);
  line-height: 1;
}

.services-head > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.services-head > a:hover {
  color: var(--accent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.service-card {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 204, 113, 0.52);
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 204, 113, 0.12), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.service-icon {
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--accent);
}

.service-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.3;
}

.service-card h3 {
  min-height: 35px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.service-card p {
  min-height: 50px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.service-card span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card strong {
  margin-top: 1px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

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

.process {
  padding-block: clamp(34px, 4.6vw, 58px);
  background:
    radial-gradient(circle at 35% 50%, rgba(46, 204, 113, 0.13), transparent 16rem),
    radial-gradient(circle at 82% 40%, rgba(46, 204, 113, 0.08), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    #101211;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.process-shell {
  display: grid;
  grid-template-columns: 295px minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.process-title h2 {
  font-size: clamp(31px, 3.6vw, 45px);
  line-height: 1.03;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 96px;
  right: -20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.step-icon {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #fff;
  background: #050505;
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.04);
}

.step-icon span {
  position: absolute;
  top: -8px;
  right: -3px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, rgba(80, 184, 119, 1), rgba(46, 151, 86, 1));
  font-size: 12px;
  font-weight: 900;
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.step-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.reviews {
  background: #050505;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.reviews-copy h2 {
  font-size: clamp(32px, 4.1vw, 47px);
  line-height: 1.05;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 36px;
}

.review-score .google-mark {
  width: 47px;
  height: 47px;
  font-size: 29px;
}

.review-score strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}

.review-score strong span {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.review-score small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

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

.testimonial-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.25);
}

.testimonial-card .stars {
  font-size: 17px;
}

.testimonial-card p {
  flex: 1;
  margin: 24px 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 204, 113, 0.45);
  border-radius: 50%;
  color: #07140b;
  background: linear-gradient(135deg, #dfffea, var(--accent));
  font-size: 12px;
  font-weight: 900;
}

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

.client strong {
  color: #fff;
  font-size: 14px;
}

.client small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.final-cta {
  padding-bottom: clamp(54px, 7vw, 82px);
  background: #050505;
}

.cta-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0b0b0b;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 50%;
  filter: saturate(0.75) contrast(1.1) brightness(0.82);
  transform: scale(1.08);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 40%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.55));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: clamp(34px, 5vw, 58px);
}

.cta-banner h2 {
  font-size: clamp(34px, 4.7vw, 54px);
  line-height: 1.04;
}

.cta-banner p {
  max-width: 500px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 16px;
}

.footer {
  padding: 0 0 28px;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(34px, 5vw, 74px);
  padding-block: 28px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  max-width: 320px;
  margin: 28px 0 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.65;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.contact svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: var(--accent);
  stroke-width: 2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 23px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: clamp(32px, 8vw, 100px);
}

.footer-bottom a:hover {
  color: var(--accent);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .trust-card {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .trust-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-item:nth-child(-n + 3) {
    border-bottom: 0;
  }

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

  .process-shell {
    grid-template-columns: 1fr;
  }

  .step-grid {
    gap: 18px;
  }

  .step-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .step-icon {
    width: 72px;
    height: 72px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-book {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    height: calc(100svh - 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 28px;
    background: rgba(5, 5, 5, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a:not(.button) {
    color: #fff;
    font-size: clamp(26px, 6vw, 42px);
    font-weight: 900;
    letter-spacing: -0.05em;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 64% 50%;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0.34) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12) 45%, #050505 100%);
  }

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

  .results-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .results-copy {
    max-width: 460px;
  }

  .comparison {
    aspect-ratio: 1.65 / 1;
    min-height: 0;
  }

  .step-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

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

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

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 520px);
    --section: clamp(58px, 14vw, 80px);
  }

  .nav-shell {
    height: 76px;
  }

  .brand-main {
    font-size: 20px;
  }

  .brand-sub {
    font-size: 6px;
  }

  .mobile-menu {
    top: 76px;
    height: calc(100svh - 76px);
  }

  .hero {
    min-height: 690px;
  }

  .hero-shell {
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(47px, 13vw, 64px);
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .google-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .trust-section {
    margin-top: -34px;
  }

  .trust-card {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .trust-item,
  .trust-item:nth-child(3) {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .services-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .comparison {
    aspect-ratio: 1 / 0.92;
  }

  .ba-label {
    top: 14px;
  }

  .before-label {
    left: 14px;
  }

  .after-label {
    right: 14px;
  }

  .process {
    padding-block: 52px;
  }

  .step-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .step-icon {
    width: 68px;
    height: 68px;
  }

  .review-score strong {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cta-banner {
    min-height: 440px;
    align-items: flex-end;
  }

  .cta-banner img {
    object-position: 62% 50%;
  }

  .cta-banner::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.78) 46%, rgba(0, 0, 0, 0.95) 100%);
  }

  .cta-content {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 18px 30px;
  }
}

@media (max-width: 430px) {
  .button {
    min-height: 53px;
    padding-inline: 20px;
  }

  .hero {
    min-height: 660px;
  }

  .pill {
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 54px);
  }

  .trust-item {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 20px;
  }

  .trust-item svg {
    width: 34px;
    height: 34px;
  }

  .comparison-line span {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .services-head h2,
  .process-title h2,
  .reviews-copy h2,
  .cta-banner h2 {
    font-size: 33px;
  }
}

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