:root {
  --bg: #080808;
  --bg-soft: #101010;
  --surface: #131313;
  --surface-2: #1a1a1a;
  --surface-3: rgba(255, 255, 255, 0.04);
  --text: #f6f3ea;
  --muted: #bcb6a8;
  --muted-strong: #d7d0c0;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #f6b319;
  --accent-strong: #ffcb52;
  --accent-deep: #8b5e00;
  --success: #dff4a7;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 179, 25, 0.22), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(246, 179, 25, 0.14), transparent 14%),
    linear-gradient(180deg, #070707 0%, #090909 35%, #050505 100%);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 88%);
  pointer-events: none;
  opacity: 0.35;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 16px 0 32px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.topbar-home {
  color: var(--accent);
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #080808;
  border: 1px solid rgba(255, 203, 82, 0.16);
  overflow: hidden;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-showcase {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  padding: 2px 0 0 10px;
  margin: 0 0 24px;
}

.brand-showcase-lockup {
  flex: 0 0 auto;
}

.brand-lockup-image {
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand-showcase-lockup {
  width: 94px;
  height: 90px;
}

.brand-showcase-mark {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: transparent;
  border: 0;
}

.brand-showcase-mark .brand-mark {
  width: 68px;
  height: 68px;
}

.brand-showcase-name {
  color: var(--accent);
  font-family: "Arial Rounded MT Bold", "Space Grotesk", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name,
.section-heading h2,
.hero h1,
.feature-card h3,
.proof-card h3,
.gallery-copy h3,
.consultation h2,
.form-intro h3,
.thank-you-card h1 {
  font-family: "Space Grotesk", Arial, sans-serif;
}

.brand-name {
  color: var(--accent);
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--muted-strong);
  font-size: 0.96rem;
}

.nav a:hover,
.footer-actions a:hover {
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 22px 48px rgba(246, 179, 25, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 56px rgba(246, 179, 25, 0.28);
}

.button:focus-visible,
.nav a:focus-visible,
.lead-form input:focus-visible,
.lead-form textarea:focus-visible,
.footer-actions a:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.button-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 203, 82, 0.4);
  background: rgba(255, 203, 82, 0.08);
}

.button-full {
  width: 100%;
}

.hero,
.consultation {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.hero {
  padding: 0 0 24px;
}

.hero-copy {
  margin-top: 6px;
}

.hero-form-panel {
  align-self: start;
  position: sticky;
  top: 116px;
  margin-top: -92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 203, 82, 0.09);
  border: 1px solid rgba(255, 203, 82, 0.12);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin: 16px 0 16px;
  font-size: clamp(2.7rem, 4.7vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-text,
.section-heading p,
.feature-card p,
.proof-card-copy p,
.gallery-copy p,
.consultation-copy p,
.form-intro p,
.footer-brand p,
.thank-you-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 56ch;
  margin: 0 0 20px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

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

.hero-highlights article,
.proof-strip article,
.feature-card,
.proof-card,
.gallery-card,
.form-panel,
.hero-card,
.thank-you-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-highlights article {
  padding: 16px;
  border-radius: 22px;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 1.45rem;
}

.hero-highlights span,
.hero-card-caption span,
.proof-card-copy span,
.stat-label,
.trust-line {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-card img,
.proof-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  min-height: 720px;
}

.hero-card-main::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 100%);
  pointer-events: none;
}

.hero-card-caption,
.proof-card-copy,
.gallery-copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.hero-card-caption strong,
.proof-card h3,
.gallery-copy h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.floating-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(255, 203, 82, 0.22);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card-accent {
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 203, 82, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 203, 82, 0.09), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.hero-card-accent p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 42px;
}

.proof-strip article {
  padding: 20px;
  border-radius: 24px;
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section {
  padding: 48px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.slider-controls {
  position: relative;
  display: inline-flex;
  gap: 10px;
  flex: 0 0 auto;
}

.slider-controls-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.slider-controls::before {
  content: "Slide for more";
  align-self: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255, 203, 82, 0.26);
  border-radius: 999px;
  background: rgba(255, 203, 82, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 203, 82, 0.4);
  background: rgba(255, 203, 82, 0.09);
}

.slider-button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.proof-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 14px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 203, 82, 0.42) rgba(255, 255, 255, 0.08);
}

.proof-slider::-webkit-scrollbar {
  height: 10px;
}

.proof-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.proof-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 203, 82, 0.42);
  border-radius: 999px;
}

.proof-card,
.gallery-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.proof-slider .proof-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  scroll-snap-align: start;
}

.proof-slider .proof-card img {
  aspect-ratio: 820 / 1773;
  height: auto;
  object-fit: contain;
  background: #050505;
}

.proof-slider .proof-card-copy {
  position: static;
  padding: 16px;
}

.proof-slider .proof-card-copy h3 {
  margin: 0 0 8px;
}

.proof-slider .proof-card-copy p {
  margin: 0;
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 203, 82, 0.12);
  border: 1px solid rgba(255, 203, 82, 0.18);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-dark {
  padding: 48px 28px 28px;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(255, 203, 82, 0.1), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

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

.feature-card {
  padding: 22px;
  border-radius: 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.proof-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 203, 82, 0.22);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

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

.consultation {
  gap: 26px;
  padding-bottom: 18px;
}

.consultation-summary {
  display: block;
  max-width: none;
  padding: 46px 28px 28px;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 203, 82, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018)),
    var(--surface);
}

.consultation-summary .consultation-copy {
  max-width: 860px;
}

.offer-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding: 0 0 0 30px;
  color: var(--muted-strong);
  line-height: 1.65;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(246, 179, 25, 0.12);
}

.upsell-note {
  margin: 0 0 20px;
  padding: 18px;
  border: 1px solid rgba(255, 203, 82, 0.16);
  border-radius: 18px;
  background: rgba(255, 203, 82, 0.06);
}

.upsell-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.12rem;
}

.upsell-note p {
  margin: 0;
  color: var(--muted-strong);
}

.trust-line {
  margin: 0;
}

.form-panel {
  padding: 24px;
  border-radius: 28px;
}

.form-intro {
  margin-bottom: 18px;
}

.form-intro h3 {
  margin: 14px 0 10px;
  font-size: 1.65rem;
}

.hero-form-panel .form-intro h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.consultation-price {
  display: grid;
  gap: 8px;
  margin: 14px 0 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 203, 82, 0.18);
  border-radius: 18px;
  background: rgba(255, 203, 82, 0.07);
}

.consultation-price strong,
.consultation-rate strong {
  color: var(--accent-strong);
  font-family: "Space Grotesk", Arial, sans-serif;
}

.consultation-price strong {
  font-size: 1.18rem;
}

.consultation-price span {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
}

.consultation-rate {
  margin: 16px 0 0;
  color: var(--muted-strong);
  font-weight: 700;
}

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

.lead-form label {
  display: grid;
  gap: 10px;
}

.lead-form span {
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 600;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #877f70;
}

.lead-form input:focus-visible,
.lead-form textarea:focus-visible {
  border-color: rgba(255, 203, 82, 0.42);
  background: rgba(255, 203, 82, 0.04);
}

.lead-form .button-full {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111;
  opacity: 1;
}

.lead-form .button-full:disabled {
  cursor: wait;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111;
  opacity: 0.88;
}

.form-status {
  min-height: 1.3em;
  margin: -2px 0 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #ffb4a8;
}

.form-success {
  display: grid;
  gap: 16px;
  scroll-margin-top: 132px;
}

.form-success[hidden] {
  display: none !important;
}

.form-success h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.hidden-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 4px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
}

.footer-lockup {
  flex: 0 0 auto;
  width: 70px;
  height: 78px;
}

.footer-mark-wrap {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  background: transparent;
  border: 0;
}

.footer-mark-wrap .brand-mark {
  width: 52px;
  height: 52px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "Arial Rounded MT Bold", "Space Grotesk", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.footer-brand p {
  margin: 0;
  max-width: 420px;
  font-size: 0.94rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted-strong);
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thank-you-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 16px;
}

.thank-you-card {
  width: min(100%, 760px);
  padding: 38px;
  border-radius: 36px;
  text-align: center;
}

.thank-you-card .brand-mark-wrap {
  margin: 0 auto 24px;
}

.thank-you-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.thank-you-card p {
  margin: 0 auto 22px;
  max-width: 54ch;
}

@media (max-width: 1120px) {
  .topbar {
    border-radius: 28px;
  }

  .nav {
    display: none;
  }

  .hero,
  .consultation,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-panel {
    position: static;
    margin-top: 0;
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-highlights,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-dark {
    padding-inline: 22px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .topbar {
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
  }

  .brand-tag,
  .button-small {
    display: none;
  }

  .brand-showcase {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 2px 0 0 4px;
    margin-bottom: 4px;
  }

  .brand-showcase-mark {
    width: 60px;
    height: 60px;
  }

  .brand-showcase-mark .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand-showcase-name {
    font-size: 1rem;
  }

  .brand-showcase-lockup {
    width: 76px;
    height: 84px;
  }

  .hero {
    padding: 18px 0 20px;
    gap: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

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

  .hero-highlights,
  .proof-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: stretch;
    flex-direction: column;
  }

  .slider-controls {
    width: 100%;
    flex-wrap: wrap;
  }

  .slider-controls-bottom {
    justify-content: stretch;
  }

  .slider-controls::before {
    width: 100%;
  }

  .slider-button {
    flex: 1;
  }

  .proof-slider {
    grid-auto-columns: 86%;
  }

  .section {
    padding-top: 38px;
  }

  .section-dark {
    padding: 38px 18px 20px;
    margin-top: 38px;
    border-radius: 24px;
  }

  .proof-card,
  .gallery-card {
    min-height: 440px;
  }

  .hero-card-main {
    min-height: 560px;
  }

  .form-panel,
  .hero-highlights article,
  .proof-strip article {
    padding: 18px;
  }

  .consultation-summary {
    padding: 34px 18px 20px;
    margin-top: 38px;
    border-radius: 24px;
  }

  .offer-list {
    gap: 10px;
  }

  .thank-you-card {
    padding: 28px 20px;
    border-radius: 28px;
  }
}
