:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: rgba(18, 20, 23, 0.78);
  --panel-strong: rgba(22, 24, 27, 0.92);
  --line: rgba(255, 255, 255, 0.17);
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.52);
  --white: #ffffff;
  --orange: #ff9900;
  --orange-bright: #ffad21;
  --orange-dark: #d97900;
  --font-body: "Barlow", Arial, Helvetica, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  --bg-drift-x: 0px;
  --bg-drift-y: 0px;
  --bg-drift-soft-x: 0px;
  --bg-drift-soft-y: 0px;
  --bg-scroll: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 92px),
    var(--bg);
  background-position:
    var(--bg-drift-soft-x) var(--bg-scroll),
    var(--bg-drift-x) var(--bg-drift-y),
    0 0;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  overflow-x: hidden;
}

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

.hgi-stroke {
  display: inline-block;
  line-height: 1;
  visibility: hidden;
}

.icons-ready .hgi-stroke {
  visibility: visible;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 3, 4, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 260ms ease, background 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 74px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

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

.brand-text {
  display: grid;
  line-height: 0.92;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
}

.brand-text span {
  font-size: 20px;
}

.brand-text strong {
  color: var(--orange);
  font-size: 31px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--orange);
}

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

.header-phone .hgi-stroke {
  color: var(--orange);
  font-size: 28px;
}

.header-phone small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
}

.header-phone strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 2, 3, 0.99) 0%, rgba(1, 2, 3, 0.9) 41%, rgba(1, 2, 3, 0.36) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.35) 0%, rgba(2, 3, 4, 0.2) 52%, rgba(2, 3, 4, 0.86) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(135deg, transparent 0 23px, rgba(255, 153, 0, 0.018) 24px, transparent 25px 92px),
    radial-gradient(ellipse at 72% 62%, rgba(255, 153, 0, 0.28), transparent 28%),
    radial-gradient(ellipse at 78% 34%, rgba(255, 255, 255, 0.08), transparent 30%),
    url("assets/hero-truck.png");
  background-size: cover, cover, 92px 92px, 92px 92px, 92px 92px, cover, cover, cover;
  background-position:
    center center,
    center center,
    var(--bg-drift-soft-x) var(--bg-scroll),
    var(--bg-drift-x) var(--bg-drift-y),
    var(--bg-drift-soft-y) var(--bg-drift-soft-x),
    center center,
    center center,
    center center;
  transform: scale(1.01);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 63%, rgba(255, 153, 0, 0.2), transparent 25%),
    radial-gradient(circle at 85% 24%, rgba(255, 255, 255, 0.05), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  padding: 96px 0 92px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 72px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-copy h1 span {
  color: var(--orange);
  white-space: nowrap;
}

.hero-copy p {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.hero-copy .eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .outline-button {
  margin-top: 0;
}

.label-mobile {
  display: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 153, 0, 0.35);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-badges .hgi-stroke {
  color: var(--orange);
  font-size: 17px;
}

.hero-benefits {
  display: flex;
  align-items: flex-start;
  gap: clamp(26px, 5vw, 62px);
  margin-top: 72px;
}

.hero-benefits div {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 92px;
  text-align: center;
}

.hero-benefits strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.circle-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
}

.circle-icon.large {
  width: 66px;
  height: 66px;
}

.circle-icon .hgi-stroke {
  font-size: 31px;
}

.circle-icon.large .hgi-stroke {
  font-size: 37px;
}

.offer-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 12, 15, 0.94), rgba(22, 24, 28, 0.72));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 36px;
}

.offer-card h2,
.section-heading h2,
.reviews-intro h2,
.cta-strip h2,
.faq-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
}

.offer-card h2 {
  font-size: 42px;
  font-weight: 800;
}

.offer-card h2 span {
  color: var(--orange);
}

.offer-card>p {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.offer-card form {
  display: grid;
  gap: 13px;
}

.offer-card label {
  position: relative;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.86);
}

.field-icon .hgi-stroke {
  font-size: 20px;
}

.offer-card input,
.offer-card select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font: 600 16px var(--font-body);
  padding: 0 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.offer-card select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.offer-card option {
  background: #15171a;
  color: var(--white);
}

.offer-card input:focus,
.offer-card select:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.16);
}

.primary-button,
.outline-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font: 800 15px var(--font-body);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #050505;
}

.primary-button:hover,
.outline-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.primary-button:disabled {
  cursor: wait;
  filter: grayscale(0.25) brightness(0.82);
  transform: none;
}

.primary-button .hgi-stroke,
.outline-button .hgi-stroke {
  font-size: 22px;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.panel-note .hgi-stroke {
  color: var(--orange);
  font-size: 16px;
}

.offer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.offer-note .hgi-stroke {
  color: var(--orange);
  font-size: 16px;
}

.why-band,
.status-section,
.services-section,
.steps-section,
.contact-section,
.reviews-section,
.faq-section,
.site-footer {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.017) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.011) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 153, 0, 0.014) 35px, transparent 36px 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    var(--bg);
  background-position:
    var(--bg-drift-soft-x) var(--bg-scroll),
    var(--bg-drift-x) var(--bg-drift-y),
    var(--bg-drift-soft-y) var(--bg-drift-soft-x),
    0 0,
    0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
  padding: 54px 0;
}

.why-grid article {
  min-height: 136px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.why-grid article:first-child {
  border-left: 0;
}

.why-grid h3,
.status-card h3,
.service-card h3,
.step-card h3,
.site-footer h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.why-grid p,
.status-card p,
.service-card p,
.step-card p,
.contact-copy>p,
.contact-list p,
.testimonial-card blockquote,
.faq-section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.status-section,
.services-section,
.contact-section {
  padding: 72px 0;
}

.steps-section {
  padding: 72px 0 66px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
}

.section-heading .eyebrow,
.reviews-intro>p,
.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading>p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}

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

.status-card,
.service-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(24, 26, 30, 0.82), rgba(12, 13, 15, 0.96));
}

.status-card {
  min-height: 154px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.status-card strong,
.service-card small {
  width: fit-content;
  border: 1px solid rgba(255, 153, 0, 0.36);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 153, 0, 0.08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.status-card strong {
  padding: 8px 10px;
}

.services-section {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 153, 0, 0.016) 35px, transparent 36px 128px),
    linear-gradient(180deg, rgba(255, 153, 0, 0.035), rgba(255, 255, 255, 0)),
    var(--bg);
  background-position:
    var(--bg-drift-soft-x) var(--bg-scroll),
    var(--bg-drift-x) var(--bg-drift-y),
    var(--bg-drift-soft-y) var(--bg-drift-soft-x),
    0 0,
    0 0;
}

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

.service-card {
  min-height: 244px;
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 26px;
}

.service-card small {
  margin-top: auto;
  padding: 8px 11px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 54px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.contact-copy>p {
  max-width: 560px;
  margin-top: 18px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.contact-list .hgi-stroke {
  color: var(--orange);
  font-size: 24px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hidden-field {
  display: none !important;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font: 600 16px var(--font-body);
  padding: 0 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  min-height: 128px;
  padding-top: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.16);
}

.contact-status {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  transition: padding 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-status:not(:empty) {
  padding: 10px 12px;
  border: 1px solid rgba(255, 153, 0, 0.28);
  background: rgba(255, 153, 0, 0.08);
}

.contact-status.is-success {
  color: #7fd88f;
  border-color: rgba(127, 216, 143, 0.38);
  background: rgba(127, 216, 143, 0.1);
}

.contact-status.is-error {
  color: #ff8f7f;
  border-color: rgba(255, 143, 127, 0.38);
  background: rgba(255, 143, 127, 0.1);
}

.form-disclaimer {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: center;
  gap: 28px;
}

.step-card {
  min-height: 202px;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(30, 32, 36, 0.82), rgba(15, 16, 18, 0.96));
}

.step-number {
  position: absolute;
  left: 20px;
  top: 44px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 800;
}

.step-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
}

.step-icon .hgi-stroke {
  font-size: 48px;
}

.step-arrow {
  color: rgba(255, 255, 255, 0.45);
}

.step-arrow .hgi-stroke {
  font-size: 42px;
}

.reviews-section {
  padding: 52px 0;
}

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

.reviews-intro h2 {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 45px);
}

.outline-button {
  min-width: 220px;
  margin-top: 24px;
  padding: 0 22px;
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--white);
}

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

.compact-reviews .reviews-grid {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 36px;
}

.compact-reviews .testimonial-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-reviews .testimonial-card {
  min-height: 186px;
}

.testimonial-card {
  min-height: 198px;
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(31, 33, 37, 0.82), rgba(15, 16, 18, 0.96));
}

.stars {
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.testimonial-card blockquote {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.person {
  display: flex;
  align-items: center;
}

.person p {
  margin: 0;
  color: var(--soft);
  line-height: 1.25;
}

.person strong {
  color: var(--white);
}

.cta-strip {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 3, 4, 0.96), rgba(2, 3, 4, 0.48) 48%, rgba(2, 3, 4, 0.96)),
    radial-gradient(ellipse at 70% 55%, rgba(255, 153, 0, 0.22), transparent 32%);
  background-size: cover;
  background-position: center 60%;
  opacity: 0.78;
}

.cta-inner {
  position: relative;
  min-height: 198px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 250px;
  align-items: center;
  text-align: center;
}

.cta-inner>div:last-child {
  grid-column: 2;
}

.cash-fan {
  position: relative;
  width: 180px;
  height: 105px;
  justify-self: center;
}

.cash-fan span {
  position: absolute;
  left: 54px;
  bottom: 10px;
  width: 52px;
  height: 112px;
  border: 2px solid rgba(8, 18, 8, 0.85);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 50%, rgba(16, 88, 39, 0.28) 0 18px, transparent 19px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(203, 220, 178, 0.95));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transform-origin: 50% 96%;
}

.cash-fan span:nth-child(1) {
  transform: rotate(-52deg);
}

.cash-fan span:nth-child(2) {
  transform: rotate(-27deg);
}

.cash-fan span:nth-child(3) {
  transform: rotate(0deg);
}

.cash-fan span:nth-child(4) {
  transform: rotate(27deg);
}

.cash-fan span:nth-child(5) {
  transform: rotate(52deg);
}

.cta-strip h2 {
  font-size: clamp(31px, 4vw, 43px);
}

.cta-strip p {
  margin: 3px 0 18px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 50px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.primary-button.wide {
  min-width: min(370px, 100%);
  padding: 0 28px;
}

.faq-section {
  padding: 30px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.faq-section h2 {
  margin-top: 6px;
  font-size: 36px;
}

details {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

summary {
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

details p {
  margin-top: 10px;
}

.site-footer {
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 250px repeat(3, 1fr);
  gap: 56px;
  align-items: start;
}

.footer-brand {
  align-items: flex-start;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 14px;
}

.site-footer a,
.site-footer span {
  display: block;
  width: fit-content;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--orange);
}

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

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
}

.copyright {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: center;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1000px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .hero::before {
    background-position:
      58% center,
      58% center,
      var(--bg-drift-soft-x) var(--bg-scroll),
      var(--bg-drift-x) var(--bg-drift-y),
      var(--bg-drift-soft-y) var(--bg-drift-soft-x),
      58% center,
      58% center,
      58% center;
  }

  .offer-card {
    width: min(520px, 100%);
    justify-self: center;
  }

  .why-grid,
  .testimonial-list,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .compact-reviews .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .status-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .step-arrow {
    display: none;
  }

  .cta-inner {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .cta-inner>div:last-child {
    grid-column: 2;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .container {
    width: auto;
    margin-inline: 18px;
  }

  .header-inner {
    min-height: 64px;
    display: block;
    position: relative;
    padding: 8px 0 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

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

  .brand-text span {
    font-size: 15px;
  }

  .brand-text strong {
    font-size: 24px;
  }

  .header-phone {
    position: absolute;
    top: 12px;
    right: 0;
    width: 44px;
    min-width: 44px;
    height: 44px;
    justify-content: center;
    justify-self: end;
    border: 1px solid rgba(255, 153, 0, 0.34);
    border-radius: 50%;
    background: rgba(255, 153, 0, 0.08);
  }

  .header-phone span {
    display: none;
  }

  .header-phone .hgi-stroke {
    font-size: 24px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 6vw, 28px);
    width: 100%;
    margin-top: 7px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-position:
      64% center,
      center center,
      var(--bg-drift-soft-x) var(--bg-scroll),
      var(--bg-drift-x) var(--bg-drift-y),
      var(--bg-drift-soft-y) var(--bg-drift-soft-x),
      64% center,
      64% center,
      64% center;
  }

  .hero-grid {
    min-width: 0;
    gap: 32px;
    padding: 34px 0 42px;
  }

  .hero-copy,
  .offer-card {
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 10.5vw, 41px);
    line-height: 0.94;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy p,
  .offer-card>p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy .eyebrow {
    font-size: 19px;
  }

  .hero-copy p {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .offer-card>p {
    max-width: 33ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(520px, calc(100vw - 52px));
    margin-top: 28px;
  }

  .hero-actions .primary-button,
  .hero-actions .outline-button {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
    font-size: 13px;
  }

  .label-desktop {
    display: none;
  }

  .label-mobile {
    display: inline;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 354px);
    margin-top: 16px;
  }

  .hero-badges span {
    justify-content: center;
    min-width: 0;
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-badges span:last-child {
    grid-column: 1 / -1;
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 48px;
  }

  .hero-benefits div {
    min-width: 0;
  }

  .hero-benefits strong {
    font-size: 12px;
  }

  .circle-icon {
    width: 48px;
    height: 48px;
  }

  .offer-card {
    width: min(520px, calc(100vw - 52px));
    max-width: 100%;
    justify-self: start;
    padding: 28px 22px;
  }

  .offer-card form,
  .offer-card input,
  .offer-card select,
  .offer-card .primary-button {
    width: 100%;
    min-width: 0;
  }

  .offer-card h2 {
    font-size: 36px;
  }

  .panel-topline {
    margin-bottom: 18px;
  }

  .panel-topline span:last-child {
    display: none;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(30px, 10vw, 39px);
    line-height: 0.98;
  }

  .section-heading>p:not(.eyebrow) {
    font-size: 16px;
  }

  .why-grid,
  .status-grid,
  .service-grid,
  .testimonial-list,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 24px 22px;
  }

  .status-card strong {
    margin-top: 2px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .service-card,
  .step-card {
    min-height: auto;
  }

  .step-card {
    padding: 28px 22px;
  }

  .step-number {
    top: 24px;
  }

  .why-grid {
    gap: 28px;
  }

  .why-grid article,
  .why-grid article:first-child {
    min-height: auto;
    padding: 0 0 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .steps-section,
  .status-section,
  .services-section,
  .reviews-section,
  .contact-section,
  .faq-section {
    padding: 48px 0;
  }

  .compact-reviews {
    padding: 42px 0;
  }

  .compact-reviews .reviews-grid {
    gap: 22px;
  }

  .reviews-intro {
    text-align: center;
  }

  .reviews-intro h2 {
    font-size: clamp(30px, 10vw, 39px);
    line-height: 0.98;
  }

  .compact-reviews .testimonial-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .compact-reviews .testimonial-list::-webkit-scrollbar {
    display: none;
  }

  .compact-reviews .testimonial-card {
    flex: 0 0 min(86%, 330px);
    min-height: auto;
    gap: 12px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .testimonial-card blockquote {
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .stars {
    font-size: 17px;
  }

  .cta-inner {
    min-height: 260px;
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .cta-inner>div:last-child {
    grid-column: 1;
  }

  .cash-fan {
    opacity: 0.28;
    position: absolute;
    left: -24px;
    top: 18px;
  }

  .footer-brand {
    justify-content: center;
  }

  .site-footer {
    padding: 30px 0 18px;
  }

  .footer-grid {
    gap: 24px;
  }

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

  .footer-brand .brand-text span {
    font-size: 15px;
  }

  .footer-brand .brand-text strong {
    font-size: 24px;
  }

  .site-footer h3 {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .site-footer h3,
  .site-footer a,
  .site-footer span {
    margin-inline: auto;
    text-align: center;
  }

  .site-footer a,
  .site-footer span {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.25;
  }

  .footer-grid>div:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 14px;
  }

  .footer-grid>div:nth-child(2) h3 {
    width: 100%;
  }

  .footer-grid>div:nth-child(3) {
    display: grid;
    gap: 3px;
  }

  .socials {
    justify-content: center;
    gap: 18px;
  }

  .socials a {
    width: 32px;
    height: 32px;
    margin-top: 0;
  }

  .copyright {
    max-width: 280px;
    margin-top: 16px;
    line-height: 1.35;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(5, 6, 7, 0.92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-cta-call {
    border: 1px solid rgba(255, 153, 0, 0.48);
    color: var(--white);
    background: rgba(255, 153, 0, 0.08);
  }

  .mobile-cta-quote {
    color: #050505;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  }
}

@media (max-width: 380px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
  }

  .mobile-cta-bar {
    grid-template-columns: 1fr;
  }
}
