:root {
  --ink: #18212b;
  --muted: #5d6875;
  --line: #dce5e8;
  --paper: #ffffff;
  --soft: #f5f8f8;
  --blue-soft: #e7f2f6;
  --navy: #12314d;
  --navy-2: #174a5f;
  --gold: #f2bd3d;
  --red: #d44436;
  --green: #24735f;
  --shadow: 0 18px 50px rgba(18, 49, 77, 0.14);
  --deep-shadow: 0 28px 70px rgba(18, 49, 77, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfb;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 9px clamp(16px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: min(300px, 48vw);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.text-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.call-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding: clamp(28px, 5vw, 70px) clamp(16px, 4vw, 52px) clamp(34px, 5vw, 74px);
  background:
    radial-gradient(circle at 34% 20%, rgba(242, 189, 61, 0.16), transparent 24%),
    linear-gradient(135deg, #12314d 0%, #164a5f 48%, #edf6f7 48.2%, #fbfcfb 100%);
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.92fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.hero-media {
  position: relative;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  padding: 14px 16px;
  color: #fff;
  background: rgba(15, 44, 74, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 1.12rem;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 3.55vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.lead {
  margin: 22px 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-copy {
  color: #fff;
}

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

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.82);
}

.trust-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 0;
}

.trust-row span {
  padding: 10px 12px;
  color: #fff;
  background: rgba(18, 49, 77, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(18, 49, 77, 0.14);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #16202b;
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(242, 189, 61, 0.28);
}

.button.secondary {
  color: #fff;
  background: #0c263d;
}

.button.ghost {
  color: var(--navy);
  background: #eef4f5;
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.lead-panel {
  padding: 26px;
  background: #fff;
  border-radius: 12px;
  color: var(--ink);
  border: 1px solid rgba(18, 49, 77, 0.1);
  box-shadow: var(--deep-shadow);
}

.lead-panel h2 {
  margin-bottom: 10px;
  font-size: 1.75rem;
  color: var(--navy);
}

.form-kicker {
  margin: 0 0 6px;
  color: var(--green) !important;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-panel p {
  color: var(--muted);
}

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

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

.field-grid {
  display: grid;
  gap: 12px;
}

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

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

.lead-panel .field-grid.three {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d7e4e7;
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 189, 61, 0.26);
  border-color: #dca72e;
}

.form-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 6px 0 4px;
}

.form-progress span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8px;
  overflow: hidden;
  color: transparent;
  background: #e7eef1;
  border-radius: 999px;
}

.form-progress span.is-active {
  background: var(--gold);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: grid;
  gap: 12px;
}

.step-title {
  margin: 4px 0 0;
  color: var(--navy) !important;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-grid label {
  display: block;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  color: var(--navy);
  background: #f5f9fa;
  border: 1px solid #d8e4e8;
  border-radius: 10px;
  font-weight: 900;
}

.choice-grid input:checked + span {
  color: #16202b;
  background: #fff4cf;
  border-color: #e8b83f;
  box-shadow: inset 0 0 0 1px rgba(232, 184, 63, 0.55);
}

.form-actions {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 10px;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 500;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: 0;
  text-align: center;
}

.form-note a {
  color: var(--navy);
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip div {
  min-height: 118px;
  padding: 24px clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--line);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  color: #123047;
  background: var(--blue-soft);
}

.trust-band h2 {
  max-width: 760px;
}

.trust-copy {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 44, 74, 0.08);
  border-radius: 8px;
}

.trust-copy p {
  margin: 0;
  color: #365365;
  font-size: 1.12rem;
}

.price-section {
  background: #fff;
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.before-after {
  background: #fff;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.ba-grid article {
  padding: 18px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(18, 49, 77, 0.08);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.ba-images figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #dde7e9;
}

.ba-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.ba-images figure:hover img {
  transform: scale(1.03);
}

.ba-images figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(18, 49, 77, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.ba-grid article h3,
.ba-grid article p {
  margin-left: 2px;
  margin-right: 2px;
}

.ba-grid article p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-list span {
  color: var(--muted);
}

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

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

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

.cards article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 44, 74, 0.06);
}

.cards article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.faq {
  background: var(--blue-soft);
}

details {
  max-width: 920px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  font-weight: 900;
  cursor: pointer;
}

.final-cta {
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px) 18px;
  color: #fff;
  text-align: center;
  background: var(--navy);
}

.final-cta h2,
.final-cta p {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #fff;
}

.mobile-sticky {
  display: none;
}

.consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  width: min(520px, calc(100vw - 32px));
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.consent.is-visible {
  display: grid;
}

.consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.consent button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  font-weight: 800;
  cursor: pointer;
}

.consent button:last-child {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-main {
    grid-template-columns: minmax(300px, 0.9fr) minmax(330px, 1.1fr);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 72px;
  }

  .site-header,
  .header-actions {
    align-items: center;
  }

  .site-header {
    position: sticky;
    flex-direction: row;
    min-height: 62px;
    padding: 8px 14px;
  }

  .header-actions {
    width: auto;
    flex-wrap: nowrap;
  }

  .header-actions .text-link {
    display: none;
  }

  .call-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .hero,
  .hero-main,
  .split,
  .trust-band,
  .three-cards,
  .review-cards,
  .field-grid.two,
  .field-grid.three {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    display: block;
    order: 2;
  }

  .trust-row {
    order: 3;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .lead-panel {
    order: 3;
  }

  .hero {
    gap: 18px;
    padding-top: 24px;
    background:
      radial-gradient(circle at 25% 6%, rgba(242, 189, 61, 0.18), transparent 28%),
      linear-gradient(180deg, #12314d 0%, #12314d 58%, #f7faf8 58.1%, #f7faf8 100%);
  }

  .hero-main {
    gap: 18px;
  }

  .hero-copy .lead {
    margin: 16px 0;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .choice-grid span {
    min-height: 50px;
    padding: 0 12px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

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

  .trust-row span {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

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

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

  .consent {
    left: 12px;
    right: 12px;
    bottom: 82px;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 11px;
  }

  .consent p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .consent div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .consent button {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.86rem;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(15, 44, 74, 0.12);
  }

  .mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 6px;
    color: #16202b;
    background: var(--gold);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-sticky a:last-child {
    color: #fff;
    background: var(--red);
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 188px;
  }

  .hero,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-media img {
    aspect-ratio: 16 / 10.5;
  }

  .hero-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 10px 12px;
  }

  .lead-panel {
    padding: 18px;
  }

  h1 {
    font-size: 2.35rem;
  }

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