:root {
  --yellow: #f6ad05;
  --yellow-light: #ffc83d;
  --black: #070707;
  --black-soft: #111111;
  --surface: #171717;
  --surface-2: #202020;
  --white: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.11);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 8%, rgba(246, 173, 5, 0.12), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  color: #e5e5e5;
}

.nav-links a:not(.button):hover {
  color: var(--yellow);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: #fff;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 56px;
}

.hero::after {
  position: absolute;
  inset: 8% auto auto 56%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(246, 173, 5, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--yellow-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  content: "";
  background: var(--yellow);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: .91;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

h1 span {
  color: var(--yellow);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: #d1d1d1;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .97rem;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  box-shadow: 0 14px 35px rgba(246, 173, 5, .2);
}

.button-secondary {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}

.button-small {
  min-height: 44px;
  padding: 9px 17px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 27px 0 0;
  padding: 0;
  color: #d5d5d5;
  font-size: .92rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(246,173,5,.12);
}

.hero-visual {
  position: relative;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(246,173,5,.24);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(20,20,20,.92);
  box-shadow: 0 18px 44px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}

.hero-badge strong {
  display: block;
  color: var(--yellow);
  font-size: 1.05rem;
}

.hero-badge span {
  color: #d3d3d3;
  font-size: .86rem;
}

.trustbar {
  padding: 22px 0 62px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}

.trust-item {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

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

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--yellow);
  font-size: 1.1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: .92rem;
}

.section {
  padding: 86px 0;
}

.section-dark {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.022);
}

.section-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.section-head h2,
.contact-copy h2,
.cta-box h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.card {
  min-height: 260px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  transition: transform .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(246,173,5,.45);
}

.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  border-radius: 12px;
  color: #090909;
  background: var(--yellow);
  font-size: .82rem;
  font-weight: 950;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.23rem;
}

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

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

.step {
  position: relative;
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.step::before {
  display: block;
  width: 62px;
  height: 4px;
  margin-bottom: 32px;
  content: "";
  background: var(--yellow);
}

.step small {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.step h3 {
  margin: 8px 0 8px;
  font-size: 1.35rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.cta-section {
  padding: 35px 0 90px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border-radius: 30px;
  color: #090909;
  background: linear-gradient(135deg, #ffc83d, #f6ad05);
}

.cta-box::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 410px;
  height: 410px;
  border: 70px solid rgba(0,0,0,.07);
  border-radius: 50%;
  content: "";
}

.cta-box p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 18px 0 26px;
  font-size: 1.07rem;
}

.cta-box .actions {
  position: relative;
  z-index: 2;
}

.cta-box .button-primary {
  color: #fff;
  background: #090909;
  box-shadow: none;
}

.cta-box .button-secondary {
  border-color: rgba(0,0,0,.2);
  color: #090909;
  background: rgba(255,255,255,.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  color: #0b0b0b;
  background: var(--yellow);
  font-weight: 950;
}

.contact-item small {
  display: block;
  color: var(--muted);
}

.contact-item strong {
  font-size: 1.05rem;
  word-break: break-word;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: #a8a8a8;
  font-size: .9rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.legal {
  min-height: calc(100vh - 180px);
  padding: 72px 0 95px;
}

.legal article {
  max-width: 850px;
  padding: clamp(24px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}

.legal h1 {
  margin-bottom: 34px;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.legal h2 {
  margin-top: 34px;
  color: var(--yellow);
}

.legal p,
.legal li {
  color: #d3d3d3;
}

.legal a {
  color: var(--yellow-light);
}

.back-link {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--yellow);
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: #090909;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 15px;
  }

  .nav-links .button {
    margin-top: 10px;
  }

  .hero-grid,
  .section-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-visual {
    width: min(100%, 640px);
    margin-inline: auto;
  }

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

  .section-head {
    gap: 18px;
  }
}

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

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 165px;
  }

  .nav-links {
    inset: 74px 0 auto;
  }

  .hero {
    padding: 44px 0 34px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .actions {
    flex-direction: column;
  }

  .actions .button {
    width: 100%;
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .trust-grid,
  .cards,
  .process {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .card {
    min-height: 220px;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
