/* Self-contained Namecheap stylesheet — no framework or external dependency. */

:root {
  --ink: #171914;
  --forest: #0e2d22;
  --forest-mid: #174333;
  --forest-light: #235643;
  --cream: #f7f1e5;
  --cream-deep: #ebdfca;
  --paper: #fffdf8;
  --gold: #c9a361;
  --gold-light: #e0c589;
  --sage: #91a194;
  --muted: #656c65;
  --line: rgba(14, 45, 34, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

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

.section {
  padding: 118px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest-mid);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 1.04;
}

h3 {
  line-height: 1.18;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  border: 1px solid var(--forest);
  border-radius: 3px;
  background: var(--forest);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.owner-note a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.68rem;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest);
}

.button-gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(14, 45, 34, 0.13);
  color: #fff;
  backdrop-filter: blur(7px);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(14, 45, 34, 0.12);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 12px 40px rgba(14, 45, 34, 0.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(1380px, calc(100% - 48px));
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  gap: 24px;
}

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

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

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

.brand-copy strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 31px);
}

.desktop-nav > a:not(.button) {
  position: relative;
  color: #384139;
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.025em;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 180ms ease;
}

.desktop-nav > a:not(.button):hover::after {
  width: 100%;
}

.desktop-nav .login-link {
  color: var(--forest);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: var(--forest);
}

.mobile-menu nav {
  position: absolute;
  top: 57px;
  right: 0;
  display: flex;
  width: min(310px, calc(100vw - 32px));
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 20px 45px rgba(14, 45, 34, 0.16);
}

.mobile-menu nav > a:not(.button) {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 650;
}

.mobile-menu .button {
  margin-top: 12px;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(850px, calc(100vh - 92px));
  align-items: stretch;
  overflow: hidden;
  background-color: var(--forest);
  background-image: url("wise-scooping-hero.webp");
  background-position: center center;
  background-size: cover;
  color: #fff;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 21, 0.94) 0%, rgba(7, 29, 21, 0.8) 38%, rgba(7, 29, 21, 0.18) 68%, rgba(7, 29, 21, 0.06) 100%),
    linear-gradient(0deg, rgba(7, 29, 21, 0.45) 0%, transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 154px;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 25px;
  color: #fff;
  font-size: clamp(3.65rem, 7.4vw, 7.4rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 1.7vw, 1.27rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.offer-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.77rem;
  font-weight: 620;
  letter-spacing: 0.035em;
}

.offer-note span {
  margin-inline: 6px;
  color: var(--gold);
}

.trust-ribbon {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 31, 23, 0.83);
  backdrop-filter: blur(12px);
}

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

.trust-grid span {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.trust-grid svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.7;
}

.standard-section {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 510px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standard-card {
  min-height: 310px;
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background-color 180ms ease, transform 180ms ease;
}

.standard-card:hover {
  z-index: 1;
  background: var(--cream);
  transform: translateY(-5px);
}

.card-number {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.standard-card h3 {
  margin-bottom: 15px;
  color: var(--forest);
  font-size: 1.45rem;
}

.standard-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

.owner-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: #fbf7ef;
}

.owner-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2rem;
}

.owner-note .eyebrow {
  margin-bottom: 5px;
}

.owner-note h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.35rem;
}

.owner-note a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.how-section {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.how-section::after {
  position: absolute;
  top: -30%;
  right: -12%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 163, 97, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(201, 163, 97, 0.04), 0 0 0 140px rgba(201, 163, 97, 0.025);
  content: "";
}

.how-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.how-intro h2 {
  color: #fff;
}

.how-intro > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.82;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 0 0 33px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 34px;
}

.steps-list li:last-child {
  margin-bottom: 0;
}

.steps-list > li > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1rem;
}

.steps-list h3 {
  margin: -4px 0 9px;
  color: #fff;
  font-size: 1.85rem;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.7;
}

.services-section {
  background: var(--cream);
}

.centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

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

.service-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 42px 38px;
  border: 1px solid rgba(14, 45, 34, 0.14);
  background: rgba(255, 253, 248, 0.72);
}

.service-card.featured {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.service-label {
  margin-bottom: 63px;
  color: var(--forest-mid);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.featured .service-label {
  color: var(--gold-light);
}

.service-card h3 {
  margin-bottom: 17px;
  color: var(--forest);
  font-size: 2rem;
}

.service-card.featured h3 {
  color: #fff;
}

.service-card > p:not(.service-label) {
  color: var(--muted);
  line-height: 1.75;
}

.service-card.featured > p:not(.service-label) {
  color: rgba(255, 255, 255, 0.68);
}

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

.featured .service-footer {
  border-color: rgba(255, 255, 255, 0.19);
}

.service-footer > span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-footer a {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--forest);
  transition: background-color 180ms ease, color 180ms ease;
}

.service-footer a:hover {
  background: var(--forest);
  color: #fff;
}

.featured .service-footer a {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--gold-light);
}

.featured .service-footer a:hover {
  background: var(--gold);
  color: var(--forest);
}

.service-footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.promotion-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  align-items: center;
  gap: 48px;
  margin-top: 18px;
  padding: 38px 42px;
  background: var(--forest-mid);
  color: #fff;
}

.promotion-strip .eyebrow {
  margin-bottom: 7px;
}

.promotion-strip h3 {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
}

.promotion-strip > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.9rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.light-link {
  color: #fff;
  white-space: nowrap;
}

.area-section {
  background: var(--paper);
}

.area-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.area-copy .large-copy {
  margin-bottom: 23px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.45;
}

.area-copy > p:not(.eyebrow):not(.large-copy) {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.8;
}

.area-panel {
  position: relative;
  overflow: hidden;
  padding: 50px 54px;
  border: 1px solid var(--line);
  background: #f6f0e4;
}

.area-monogram {
  position: absolute;
  top: -58px;
  right: -10px;
  color: rgba(14, 45, 34, 0.055);
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 1;
}

.area-panel > p {
  position: relative;
  margin-bottom: 27px;
  color: var(--forest-mid);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.area-panel ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-panel li {
  display: flex;
  min-height: 63px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(14, 45, 34, 0.15);
}

.area-panel li:last-child {
  border-bottom: 0;
}

.area-panel li span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.area-panel li small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #fbf7ef;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 136px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-intro > a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: var(--forest);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid rgba(14, 45, 34, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(14, 45, 34, 0.2);
}

.faq-list summary {
  display: flex;
  min-height: 90px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.38rem;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 58px 28px 0;
  color: var(--muted);
  line-height: 1.8;
}

.final-cta {
  padding: 86px 0;
  background: var(--forest);
  color: #fff;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 48px;
}

.final-cta-inner > img {
  width: 178px;
  height: 178px;
  object-fit: contain;
}

.final-cta h2 {
  margin-bottom: 15px;
  color: #fff;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.final-cta p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.final-actions {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  gap: 11px;
}

.site-footer {
  padding: 66px 0 28px;
  background: #091d16;
  color: rgba(255, 255, 255, 0.66);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  gap: 60px;
  padding-bottom: 54px;
}

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

.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.footer-brand span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.83rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav > a:nth-child(1),
  .desktop-nav > a:nth-child(4) {
    display: none;
  }

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

  .how-layout,
  .area-layout,
  .faq-layout {
    gap: 64px;
  }

  .final-cta-inner {
    grid-template-columns: 140px 1fr;
  }

  .final-cta-inner > img {
    width: 140px;
    height: 140px;
  }

  .final-actions {
    grid-column: 2;
    flex-direction: row;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 90px 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 780px;
    background-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 29, 21, 0.93) 0%, rgba(7, 29, 21, 0.7) 64%, rgba(7, 29, 21, 0.22) 100%),
      linear-gradient(0deg, rgba(7, 29, 21, 0.58) 0%, transparent 45%);
  }

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

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

  .trust-grid span {
    min-height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-grid span:nth-child(2) {
    border-right: 0;
  }

  .split-heading,
  .how-layout,
  .area-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-heading {
    align-items: start;
  }

  .standard-card {
    min-height: 280px;
  }

  .owner-note {
    grid-template-columns: auto 1fr;
  }

  .owner-note a {
    grid-column: 2;
  }

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

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

  .service-label {
    margin-bottom: 45px;
  }

  .promotion-strip {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .container,
  .header-inner {
    width: min(100% - 32px, 1220px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 59px;
    height: 59px;
  }

  .brand-copy strong {
    font-size: 1.25rem;
  }

  .brand-copy small {
    font-size: 0.48rem;
  }

  .mobile-menu nav {
    top: 55px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 820px;
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 29, 21, 0.94) 0%, rgba(7, 29, 21, 0.77) 73%, rgba(7, 29, 21, 0.39) 100%),
      linear-gradient(0deg, rgba(7, 29, 21, 0.72) 0%, transparent 50%);
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 108px;
    padding-bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

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

  .offer-note {
    max-width: 330px;
    line-height: 1.7;
  }

  .offer-note span {
    display: none;
  }

  .trust-grid span {
    min-height: 57px;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 0.6rem;
    letter-spacing: 0.055em;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

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

  .standard-card {
    min-height: auto;
    padding: 30px 27px;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .owner-note {
    grid-template-columns: 1fr;
    padding: 27px;
  }

  .owner-note a {
    grid-column: 1;
  }

  .steps-list li {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }

  .service-card {
    min-height: 360px;
    padding: 34px 28px;
  }

  .promotion-strip {
    padding: 31px 27px;
  }

  .area-panel {
    padding: 38px 28px;
  }

  .area-panel li {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 12px 0;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1.2rem;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta-inner > img {
    width: 122px;
    height: 122px;
  }

  .final-actions {
    grid-column: 1;
    flex-direction: column;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    display: grid;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
