:root {
  --bg: #070a0f;
  --bg-soft: #0b0f16;
  --surface: #0e131b;
  --surface-raised: #121823;
  --surface-gold: #17140d;
  --text: #f4f1e9;
  --text-soft: #b7b7b2;
  --muted: #7f838a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --gold: #f5a623;
  --gold-bright: #ffc55c;
  --gold-dark: #b66c00;
  --green: #38cf78;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --container: 1180px;
  --header-height: 76px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% -10%, rgba(245, 166, 35, 0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  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: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #12100b;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.6);
  border-radius: 8px 2px 8px 2px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.02));
  color: var(--gold-bright);
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 0 16px rgba(245, 166, 35, 0.08);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.header-nav a,
.footer-nav a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color 180ms ease;
}

.header-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #171108;
  box-shadow: 0 12px 34px rgba(245, 166, 35, 0.18);
}

.button-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 16px 38px rgba(245, 166, 35, 0.25);
}

.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-outline:hover {
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.05);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(56, 207, 120, 0.12);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.025) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, 0.02) 50%, transparent 50.1%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-block: 92px 112px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(54vw, 720px);
}

.eyebrow,
.section-index {
  margin: 0 0 24px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 166, 35, 0.24);
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.06);
  letter-spacing: 0.09em;
}

.eyebrow > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.1rem, 5.6vw, 5.35rem);
  font-weight: 760;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

h1 em {
  color: var(--gold-bright);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.55vw, 1.17rem);
  line-height: 1.75;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.68);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  list-style: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.68);
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list li span {
  color: var(--gold);
  font-weight: 800;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(7, 10, 15, 0.92) 0%,
      rgba(7, 10, 15, 0.9) 24%,
      rgba(7, 10, 15, 0.87) 42%,
      rgba(7, 10, 15, 0.82) 52%,
      rgba(7, 10, 15, 0.66) 62%,
      rgba(7, 10, 15, 0.45) 74%,
      rgba(7, 10, 15, 0.28) 88%,
      rgba(7, 10, 15, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 10, 15, 0.16) 0%,
      transparent 38%,
      rgba(7, 10, 15, 0.18) 100%
    );
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% center;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: 18%;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(245, 166, 35, 0.08);
  box-shadow:
    inset 0 0 100px rgba(245, 166, 35, 0.025),
    0 0 140px rgba(245, 166, 35, 0.025);
}

.hero-glow-two {
  right: 18%;
  bottom: 8%;
  width: 120px;
  height: 120px;
  background: rgba(245, 166, 35, 0.08);
  filter: blur(70px);
}

.hero-footnote {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #42474e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 9px;
}

.scroll-cue i {
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
}

.section {
  position: relative;
  padding-block: 118px;
}

.section-heading,
.process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading > div,
.process-header > div {
  max-width: 720px;
}

.section-heading > p,
.process-header > p {
  max-width: 390px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  font-weight: 710;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section h2 span {
  color: #74777c;
}

.situations {
  background: var(--bg-soft);
}

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

.situation-card {
  position: relative;
  min-height: 390px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.situation-card:hover {
  z-index: 2;
  border-color: rgba(245, 166, 35, 0.34);
  background: rgba(245, 166, 35, 0.035);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  transform: translateY(-7px);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #41454b;
  font-size: 10px;
  font-weight: 800;
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 66px;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.06);
}

.icon-window {
  position: relative;
  width: 24px;
  height: 19px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
}

.icon-window::before {
  position: absolute;
  top: 4px;
  right: 3px;
  left: 3px;
  height: 1px;
  content: "";
  background: var(--gold);
  box-shadow: 0 4px rgba(245, 166, 35, 0.5), 0 8px rgba(245, 166, 35, 0.3);
}

.icon-magnifier {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.icon-magnifier::after {
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 9px;
  height: 1.5px;
  content: "";
  background: var(--gold);
  transform: rotate(45deg);
}

.icon-bars {
  display: flex;
  height: 25px;
  align-items: flex-end;
  gap: 4px;
}

.icon-bars i {
  width: 5px;
  border-radius: 2px 2px 0 0;
  background: var(--gold);
}

.icon-bars i:nth-child(1) {
  height: 8px;
  opacity: 0.4;
}

.icon-bars i:nth-child(2) {
  height: 16px;
  opacity: 0.65;
}

.icon-bars i:nth-child(3) {
  height: 24px;
}

.situation-card h3 {
  max-width: 280px;
  margin: 0;
  font-size: 22px;
  font-weight: 690;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.situation-card > p {
  margin: 18px 0 30px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.text-link i {
  color: var(--gold);
  font-style: normal;
  transition: transform 180ms ease;
}

.situation-card:hover .text-link i,
.text-link:hover i {
  transform: translate(3px, -3px);
}

.offer-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 40%, rgba(245, 166, 35, 0.065), transparent 24rem),
    var(--bg);
}

.offer-section::after {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: min(36%, 430px);
  border-inline: 1px solid rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 100px;
  align-items: center;
}

.offer-main h2 {
  max-width: 690px;
}

.offer-main h2 span {
  display: block;
  color: var(--gold-bright);
}

.offer-intro {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 48px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.offer-list li {
  min-height: 145px;
  padding: 24px 20px;
  background: var(--bg);
}

.list-check {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 19px;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.offer-list strong {
  font-size: 13px;
}

.offer-list p {
  margin: 2px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.offer-closing {
  margin: 34px 0 0;
  padding-left: 17px;
  border-left: 2px solid var(--gold);
  color: var(--text-soft);
  font-size: 14px;
  font-style: italic;
}

.price-card {
  position: relative;
  z-index: 2;
  padding: 38px;
  border: 1px solid rgba(245, 166, 35, 0.33);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(245, 166, 35, 0.085), transparent 42%),
    rgba(14, 17, 20, 0.96);
  box-shadow: var(--shadow);
}

.price-card::before {
  position: absolute;
  top: -1px;
  right: 30px;
  left: 30px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  line-height: 1;
}

.price strong {
  font-size: 52px;
  letter-spacing: -0.06em;
}

.price span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.price-detail {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}

.price-divider {
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

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

.delivery-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.06);
  color: var(--gold-bright);
  font-size: 17px;
  font-weight: 800;
}

.delivery div {
  display: flex;
  flex-direction: column;
}

.delivery small {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.delivery strong {
  font-size: 16px;
}

.decision-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0;
  color: var(--text);
  font-size: 14px;
}

.decision-note span {
  color: var(--green);
  font-size: 8px;
}

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

.tabs-shell {
  border: 1px solid var(--line);
  background: var(--surface);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-button {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.tab-button span {
  color: #51555c;
  font-size: 9px;
}

.tab-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.018);
}

.tab-button.is-active {
  color: var(--text);
  background: rgba(245, 166, 35, 0.035);
}

.tab-button.is-active::after {
  transform: scaleX(1);
}

.tab-button.is-active span {
  color: var(--gold);
}

.tab-panel {
  display: grid;
  min-height: 420px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 90px;
  padding: 70px;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel.is-active {
  animation: panel-in 300ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.panel-copy h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.panel-copy > p:not(.panel-kicker) {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.panel-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text-soft);
  font-size: 10px;
}

.panel-graphic {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 250px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(245, 166, 35, 0.08), transparent 55%),
    #0a0e14;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.graphic-toolbar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 5px;
  padding-inline: 12px;
  border-bottom: 1px solid var(--line);
}

.graphic-toolbar span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #40454c;
}

.graphic-toolbar span:first-child {
  background: var(--gold);
}

.graphic-hero {
  width: 61%;
  height: 9px;
  margin: 43px auto 17px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 0 -2px rgba(255, 255, 255, 0.1),
    0 30px 0 -3px rgba(255, 255, 255, 0.07);
}

.graphic-columns {
  display: flex;
  gap: 8px;
  margin: 63px 25px 0;
}

.graphic-columns i {
  flex: 1;
  height: 47px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.map-graphic {
  background:
    linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.035) 49%, rgba(255, 255, 255, 0.035) 51%, transparent 52%),
    linear-gradient(130deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
    #0a0e14;
  background-size: 70px 70px, 90px 90px;
}

.map-line {
  position: absolute;
  height: 1px;
  background: rgba(245, 166, 35, 0.28);
  transform-origin: left;
}

.line-a {
  top: 63px;
  left: 25px;
  width: 180px;
  transform: rotate(26deg);
}

.line-b {
  top: 177px;
  left: 85px;
  width: 210px;
  transform: rotate(-29deg);
}

.line-c {
  top: 31px;
  left: 258px;
  width: 150px;
  transform: rotate(80deg);
}

.map-pin,
.map-center {
  position: absolute;
  border-radius: 50%;
}

.map-pin {
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.35);
}

.pin-a {
  top: 72px;
  left: 83px;
}

.pin-b {
  right: 55px;
  bottom: 45px;
}

.map-center {
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.32);
  background: rgba(245, 166, 35, 0.05);
  transform: translate(-50%, -50%);
}

.map-center::before,
.map-center::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(245, 166, 35, 0.12);
  border-radius: 50%;
}

.map-center::before {
  width: 88px;
  height: 88px;
}

.map-center::after {
  width: 120px;
  height: 120px;
}

.map-center i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}

.chart-graphic {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding: 35px 35px 28px;
}

.chart-graphic i {
  position: relative;
  z-index: 1;
  width: 29px;
  height: var(--height);
  border-top: 2px solid var(--gold);
  background: linear-gradient(to top, rgba(245, 166, 35, 0.04), rgba(245, 166, 35, 0.35));
  box-shadow: 0 -8px 25px rgba(245, 166, 35, 0.08);
}

.chart-grid {
  position: absolute;
  inset: 24px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
}

.process-section {
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 27px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(245, 166, 35, 0.25), var(--gold));
}

.timeline-step {
  position: relative;
  text-align: center;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 32px;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.38);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 9px var(--bg);
}

.timeline-marker::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
}

.timeline-marker span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.timeline-card {
  padding: 0 25px;
}

.timeline-card p {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.timeline-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.timeline-card span {
  display: block;
  max-width: 240px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 13px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.45rem);
}

.faq-intro > p:not(.section-index) {
  max-width: 430px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  max-width: 590px;
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.faq-question i {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 220ms ease;
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question:hover i {
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.05);
}

.faq-question[aria-expanded="true"] i {
  border-color: var(--gold);
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] i::before,
.faq-question[aria-expanded="true"] i::after {
  background: #171108;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer:not([hidden]) {
  animation: answer-in 220ms ease both;
}

@keyframes answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  max-width: 620px;
  margin: -6px 60px 30px 4px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.contact-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245, 166, 35, 0.025), transparent 50%),
    var(--bg);
}

.contact-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--line);
}

.contact-glow {
  position: absolute;
  top: -250px;
  left: -280px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(245, 166, 35, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(245, 166, 35, 0.025);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy h2 span {
  color: var(--gold-bright);
}

.contact-lead {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 16px;
}

.contact-promises {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-promises li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
}

.contact-promises li span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

.form-card {
  position: relative;
  z-index: 1;
  padding: 38px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.form-heading p {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.form-heading h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.form-heading > span {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input {
  height: 50px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 115px;
  padding: 13px 15px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #555a62;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.025);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.06);
}

.form-submit {
  margin-top: 5px;
}

.form-note {
  margin: 14px 0 0;
  color: #646970;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(56, 207, 120, 0.28);
  border-radius: 7px;
  background: rgba(56, 207, 120, 0.06);
  color: #a4e8bf;
  font-size: 12px;
}

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

.form-success span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #07130c;
  font-size: 9px;
  font-weight: 900;
}

.form-error {
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(234, 92, 92, 0.32);
  border-radius: 7px;
  background: rgba(234, 92, 92, 0.07);
  color: #f0b2b2;
  font-size: 12px;
}

.form-error[hidden] {
  display: none;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05070b;
}

.footer-main {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #575c63;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--text-soft);
}

.footer-bottom a span {
  margin-left: 7px;
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(56, 207, 120, 0.3);
  border-radius: 999px;
  background: rgba(9, 16, 13, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  border-color: rgba(56, 207, 120, 0.65);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
  transform: translateY(-3px);
}

.whatsapp-icon {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.whatsapp-icon::after {
  position: absolute;
  right: 2px;
  bottom: 1px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--green);
  clip-path: polygon(0 0, 100% 100%, 0 75%);
}

.whatsapp-icon i {
  width: 16px;
  height: 16px;
  border: 2px solid #07130c;
  border-radius: 50%;
}

.whatsapp-icon i::before {
  position: absolute;
  top: 11px;
  left: 13px;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid #07130c;
  border-bottom: 2px solid #07130c;
  border-radius: 0 0 8px;
  transform: rotate(35deg);
}

.whatsapp-label {
  color: #bde7ce;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .offer-shell {
    gap: 55px;
  }

  .faq-layout,
  .contact-layout {
    gap: 70px;
  }

  .tab-panel {
    gap: 50px;
    padding: 55px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .hero-visual::after {
    background:
      linear-gradient(
        90deg,
        rgba(7, 10, 15, 0.92) 0%,
        rgba(7, 10, 15, 0.9) 22%,
        rgba(7, 10, 15, 0.87) 40%,
        rgba(7, 10, 15, 0.82) 49%,
        rgba(7, 10, 15, 0.65) 60%,
        rgba(7, 10, 15, 0.44) 72%,
        rgba(7, 10, 15, 0.28) 86%,
        rgba(7, 10, 15, 0.18) 100%
      ),
      linear-gradient(
        180deg,
        rgba(7, 10, 15, 0.16) 0%,
        transparent 38%,
        rgba(7, 10, 15, 0.18) 100%
      );
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 76px 90px;
  }

  .hero-copy {
    width: 100%;
    max-width: 700px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: min(100%, 560px);
    height: auto;
    margin: 0 auto;
  }

  .hero-visual::after {
    display: none;
  }

  .hero-visual img {
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading,
  .process-header {
    display: block;
  }

  .section-heading > p,
  .process-header > p {
    margin-top: 20px;
  }

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

  .situation-card {
    min-height: 300px;
  }

  .card-icon {
    margin-bottom: 40px;
  }

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

  .price-card {
    width: min(100%, 480px);
  }

  .tab-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .panel-graphic {
    justify-self: start;
  }

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

  .faq-intro {
    position: static;
  }

  .contact-section::before {
    display: none;
  }

  .form-card {
    width: min(100%, 650px);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .header-cta {
    min-height: 39px;
    padding-inline: 12px;
  }

  .hero-grid {
    gap: 42px;
    padding-block: 62px 74px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .hero-footnote {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .section h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .section-heading,
  .process-header {
    margin-bottom: 38px;
  }

  .situation-card {
    min-height: 0;
    padding: 28px;
  }

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

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-list li {
    display: flex;
    min-height: 0;
    align-items: center;
    gap: 15px;
    padding: 18px;
  }

  .list-check {
    flex: 0 0 24px;
    margin: 0;
  }

  .price-card {
    padding: 28px;
  }

  .price strong {
    font-size: 46px;
  }

  .tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .tab-button {
    min-width: 152px;
    padding-inline: 16px;
  }

  .tab-panel {
    min-height: 0;
    gap: 38px;
    padding: 34px 24px;
  }

  .panel-graphic {
    height: 210px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
  }

  .timeline::before {
    top: 28px;
    bottom: 28px;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 25px;
    padding-bottom: 40px;
    text-align: left;
  }

  .timeline-step:last-child {
    padding-bottom: 0;
  }

  .timeline-marker {
    margin: 0;
  }

  .timeline-card {
    padding: 3px 0 0;
  }

  .timeline-card span {
    margin: 9px 0 0;
  }

  .faq-layout,
  .contact-layout {
    gap: 52px;
  }

  .faq-question {
    min-height: 96px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    margin-right: 12px;
  }

  .form-card {
    padding: 26px 20px;
  }

  .form-heading h3 {
    font-size: 21px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    padding-block: 34px;
  }

  .footer-nav {
    gap: 12px 20px;
  }

  .footer-bottom {
    padding-block: 24px 90px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 8px;
  }

  .whatsapp-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

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

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