:root {
  --bg: #efede7;
  --navy: #1c3d60;
  --yellow: #ffd429;
  --yellow-logo: #f4c842;
  --ink: #16161a;
  --body: #565657;
  --muted: #9b9a9b;
  --muted-2: #8d8c8a;
  --nav: #787777;
  --light: #b3b8c0;
  --line: #d4d2ce;
  --gold: #7f6209;
  --gold-2: #7a5c00;
  --white: #ffffff;

  --container: 1600px;
  --pad: 40px;

  --f-display: 'Unbounded', system-ui, sans-serif;
  --f-body: 'Onest', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font: 500 15px/18px var(--f-mono);
  letter-spacing: 1.5px;
  color: var(--muted-2);
}
.kicker::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--muted-2);
  border-radius: 2px;
  flex: none;
}
.kicker--both::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--muted-2);
  border-radius: 2px;
  flex: none;
}

.h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.section-head .kicker { margin-bottom: 10px; }
.section-head .lead { max-width: 560px; }

.lead {
  font: 400 20px/28px var(--f-body);
  letter-spacing: 0.8px;
  color: var(--body);
}

.lead, .hero__lead, .stats__text, .step__text, .step__list li,
.doc__title, .doc__text, .sec__title, .sec__text, .guar__title,
.guar__text, .press__quote, .acc__head span, .acc__body p,
.security__text, .footer__legal, .hero__note-sub, .hero__card-sub {
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 500 20px/28px var(--f-body);
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  background: var(--yellow);
  transition: .3s ease-in-out;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--dark { background: var(--ink); color: #fefefe; }
.btn--outline { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }
.btn--sm { font: 500 15px/15px var(--f-body); padding: 15px 20px; border-radius: 5px; }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  height: 70px;
  border-bottom: 1px solid transparent;
}
.header__inner {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 20px/24px var(--f-display);
  color: var(--ink);
}
.logo img { width: 40px; height: 40px; }
.logo--light { color: var(--white); }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav a {
  font: 400 15px/21px var(--f-body);
  color: var(--nav);
  transition: color .2s;
}
.nav a:hover { color: var(--ink); }

.header .btn { margin-left: 10px; padding: 15px 20px; font-size: 15px; line-height: 18px; transition: .3s ease-in-out}

.burger {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  background: none; border: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding: 60px 0 100px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
}
.hero__content { min-width: 0; container-type: inline-size; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 5.3cqi, 58px);
  line-height: 1.18;
  color: var(--ink);
  hyphens: none;
}
.hero__title-row { display: block; }
.hero__title-soft { font-weight: 400; color: var(--body); }
.hero__title .hl {
  display: inline-block;
  background: var(--yellow);
  border-radius: 5px;
  padding: 0.12em 0.2em;
  margin: 0.14em 0;
  white-space: nowrap;
}
.hero__lead { margin-top: 30px; max-width: 540px; }

.hero__steps {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  max-width: 560px;
}
.hero__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font: 400 15px/21px var(--f-body);
  letter-spacing: 0.3px;
  color: var(--body);
}
.hero__step:last-child { border-bottom: 1px solid var(--line); }
.hero__step .num {
  flex: none;
  width: 12px;
  font: 700 15px/21px var(--f-mono);
  color: var(--gold);
}
.hero__step b{
  font-weight: 500;
  color: var(--ink);
}
.hero__actions { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }

.hero__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 20px;
  padding: 15px;
  margin-top: 30px;
  max-width: 560px;
}
.icon-badge {
  flex: none;
  width: 20px; height: 20px;
  color: var(--gold-2);
}
.hero__note-title { font: 600 15px/21px var(--f-body); letter-spacing: 0.3px; color: var(--ink); }
.hero__note-sub { font: 400 13px/18px var(--f-body); color: var(--muted); letter-spacing: 0.26px; }

.hero__media { display: flex; flex-direction: column; gap: 20px; height: fit-content}
.hero__video {
  width: 100%;
  aspect-ratio: 520 / 728;
  border-radius: 30px;
  overflow: hidden;
  background: #232c44;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 10px;
  padding: 15px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.hero__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(28, 61, 96, .12);
}
.hero__card-ic {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.hero__card-title { font: 500 15px/21px var(--f-body); color: var(--ink); }
.hero__card-sub { font: 400 13px/18px var(--f-body); color: var(--muted); }

.section { padding: 70px 0; }
.press__title { margin: 20px 0 40px; }
.press__list { border-top: 1px solid var(--line); }
.press__row {
  display: grid;
  grid-template-columns: 218px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.press__row:hover { background: rgba(255,255,255,.5); }
.press__src { font: 700 20px/24px var(--f-display); color: var(--ink); }
.press__quote { font: 400 15px/18px var(--f-body); letter-spacing: 0.6px; color: var(--muted); }
.press__read {
  display: inline-flex; align-items: center; gap: 5px;
  font: 400 15px/18px var(--f-mono); letter-spacing: 1.5px; color: var(--body);
  white-space: nowrap;
}
.press__read svg { width: 15px; height: 15px; }
.press__row:hover .press__read { color: var(--ink); }

.stats__inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 60px;
  align-items: center;
}
.stats__title { margin: 20px 0 30px; }
.stats__text { margin-bottom: 30px; }
.stats__actions { display: flex; gap: 20px; flex-wrap: wrap; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 385px));
  justify-content: end;
  gap: 20px;
}
.stat {
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.stat--accent { background: var(--yellow); }
.stat__label { font: 500 13px/16px var(--f-mono); letter-spacing: 1.3px; color: var(--muted-2); }
.stat--accent .stat__label { color: #9f7d0b; }
.stat__value-wrap { padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.stat--accent .stat__value-wrap { border-color: #d4b126; }
.stat__value { font: 700 40px/48px var(--f-display); color: var(--ink); }
.stat__unit { font: 500 20px/24px var(--f-display); letter-spacing: 0.8px; color: var(--muted); }
.stat--accent .stat__unit { color: var(--gold-2); }
.stat__desc { font: 400 15px/18px var(--f-body); letter-spacing: 0.6px; color: var(--body); }
.stat--accent .stat__desc { color: #564a1e; }

.cards-3 {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-4 {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pill {
  align-self: flex-start;
  background: var(--yellow);
  border-radius: 20px;
  padding: 7px 10px;
  font: 500 13px/13px var(--f-mono);
  letter-spacing: 0.52px;
  color: var(--ink);
}
.step__title { font: 500 25px/30px var(--f-display); letter-spacing: 1px; color: var(--ink); }
.step__text { font: 400 15px/21px var(--f-body); letter-spacing: 0.6px; color: var(--body); }
.step__list { display: flex; flex-direction: column; gap: 10px; }
.step__list li {
  display: flex; gap: 10px;
  font: 400 13px/18px var(--f-body); color: var(--muted);
  align-items: baseline;
}
.step__list .n { font: 500 13px/16px var(--f-mono); color: var(--gold); flex: none; }
.step .btn { margin-top: auto; align-self: flex-start; transition: .3s ease-in-out}

.doc {
  position: relative;
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 263px;
}
.doc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top-right-radius: 20px;
  background: linear-gradient(225deg, var(--bg) 50%, transparent 50%);
  box-shadow: inset 1.5px -1.5px 0 rgba(0, 0, 0, 0.05);
}
.doc__step { font: 500 15px/15px var(--f-mono); letter-spacing: 1.5px; color: var(--gold); }
.doc__title { font: 500 20px/24px var(--f-display); letter-spacing: 0.8px; color: var(--ink); }
.doc__text { font: 400 15px/21px var(--f-body); letter-spacing: 0.6px; color: var(--body); }

.guar {
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 263px;
}
.guar__label { font: 400 15px/21px var(--f-mono); letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; }
.guar__title { font: 500 20px/24px var(--f-display); letter-spacing: 0.8px; color: var(--ink); }
.guar__text { font: 400 15px/21px var(--f-body); letter-spacing: 0.6px; color: var(--body); }
.guarantee__foot {
  text-align: center;
  margin-top: 34px;
  font: 400 15px/21px var(--f-body);
  color: var(--body);
}
.guarantee__foot a {
  color: var(--gold);
  padding-bottom: 1px;
  transition: .3s ease-in-out;
}
.guarantee__foot a:hover { opacity: .7; }

.security {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0;
}
.security .kicker,
.security .kicker::before { color: var(--muted-2); }
.security__inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;
  align-items: center;
}
.security__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.15;
  color: var(--white);
  margin: 20px 0;
}
.security__text { font: 400 20px/28px var(--f-body); letter-spacing: 0.8px; color: var(--light); margin-bottom: 30px; }
.security__chip {
  display: inline-flex;
  padding: 10px;
  padding-left: 20px;
  border-left: 1px solid var(--yellow);
  font: 400 13px/18px var(--f-mono);
  letter-spacing: 0.26px;
  color: rgba(179,184,192,.7);
  max-width: 320px;
}
.security__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 385px));
  justify-content: end;
  gap: 20px;
}
.sec {
  min-width: 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec__ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,212,41,.1);
  border: 1px solid rgba(255,212,41,.5);
  display: grid;
  place-items: center;
  color: var(--yellow);
}
.sec__ic svg { width: 20px; height: 20px; }
.sec__title { font: 400 20px/24px var(--f-display); color: var(--white); }
.sec__text { font: 400 15px/21px var(--f-body); letter-spacing: 0.6px; color: var(--light); }

.faq__inner { max-width: 1060px; margin: 0 auto; }
.faq__head { margin-bottom: 10px; }
.accordion { margin-top: 40px; }
.acc { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 20px;
  background: none;
  border: none;
  text-align: left;
  font: 500 20px/24px var(--f-display);
  color: var(--ink);
}
.acc__head svg { width: 20px; height: 20px; flex: none; transition: transform .3s ease; color: var(--ink); }
.acc.is-open .acc__head svg { transform: rotate(180deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__body p {
  padding-bottom: 30px;
  max-width: 1060px;
  font: 400 20px/28px var(--f-body);
  letter-spacing: 0.8px;
  color: var(--body);
}

.footer {
  background: var(--navy);
  color: var(--light);
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer__legal {
  margin-top: 20px;
  font: 400 15px/21px var(--f-mono);
  letter-spacing: 0.3px;
  color: rgba(179,184,192,.5);
  max-width: 420px;
}
.footer__col-title {
  font: 400 15px/21px var(--f-mono);
  letter-spacing: 0.6px;
  color: rgba(179,184,192,.5);
  margin-bottom: 20px;
}
.footer__col a:not(.btn) {
  display: block;
  font: 400 15px/21px var(--f-body);
  color: var(--light);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer__col a:not(.btn):hover { color: var(--white); }
.footer__contact-text { font: 400 15px/21px var(--f-body); color: var(--light); margin-bottom: 20px; }
.btn--footer { font: 500 15px/18px var(--f-body); padding: 15px 30px; }
.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(245,245,245,.3);
  font: 400 15px/18px var(--f-body);
  color: rgba(179,184,192,.5);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 26, .7);
  backdrop-filter: blur(2px);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: 88vh;
  background: var(--white);
  border-radius: 20px;
  padding: 5px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  transition: transform .15s ease;
}
.modal__close:hover { transform: scale(1.08); }
.modal__close svg { width: 22px; height: 22px; }
.modal__media {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}
.modal__media img,
.modal__media video {
  width: 100%;
  height: auto;
  max-height: calc(88vh - 32px);
  object-fit: contain;
  border-radius: 12px;
}
.media-placeholder {
  width: 100%;
  min-width: 240px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border: 2px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  font: 500 15px/21px var(--f-body);
}

@media (max-width: 1280px) {
  :root { --container: 1120px; }
  .hero__inner { grid-template-columns: 1fr 440px; }
  .stats__inner, .security__inner { grid-template-columns: 1fr; gap: 40px; }
  .stats__grid, .security__grid { grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --pad: 24px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; }
  .cards-3 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    padding: 8px 24px 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .burger { display: flex; }
  .header .btn { display: none; }
}

@media (max-width: 640px) {
  .section, .hero { padding: 48px 0; }
  .security { padding: 56px 0; }
  .cards-4, .stats__grid, .security__grid { grid-template-columns: 1fr; }
  .press__row { grid-template-columns: 1fr; gap: 8px; }
  .press__read { justify-self: start; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .lead, .security__text, .acc__body p { font-size: 16px; line-height: 24px; }
  .acc__head { font-size: 17px; line-height: 22px; }
  .hero__actions .btn, .stats__actions .btn { flex: 1 1 auto; }
  .btn { font-size: 16px; }
}

@media (max-width: 400px) {
  :root { --pad: 16px; }
  .hero__title .hl { padding: 0.1em 0.14em; }
}
