:root {
  --navy: #071f39;
  --ink: #122943;
  --soft: #58677a;
  --orange: #e74416;
  --gold: #f39a30;
  --cream: #fff8ec;
  --surface: #fffdf8;
  --line: #e7dccd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 7%, rgba(243, 154, 48, .22), transparent 28rem),
    linear-gradient(180deg, #fbf4e8 0%, var(--cream) 50%, #f9efe0 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
header { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-size: 1.1rem; font-weight: 780; text-decoration: none; }
.brand-icon { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: 0 7px 20px rgba(7, 31, 57, .22); }
nav { display: flex; gap: 22px; }
nav a { color: var(--soft); font-size: .94rem; font-weight: 680; text-decoration: none; }
.hero { min-height: 570px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); gap: clamp(34px, 7vw, 90px); align-items: center; padding-block: 70px 95px; }
.eyebrow { margin: 0 0 10px; color: var(--orange); font-size: .78rem; font-weight: 810; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.8rem, 6.4vw, 5.7rem); font-weight: 830; }
.lead { max-width: 670px; margin: 25px 0 0; color: var(--soft); font-size: clamp(1.06rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 740; text-decoration: none; }
.primary { background: var(--orange); color: white; box-shadow: 0 13px 28px rgba(231, 68, 22, .22); }
.secondary { border-color: var(--line); background: rgba(255, 253, 248, .78); }
.app-card { overflow: hidden; border: 1px solid rgba(7, 31, 57, .13); border-radius: 30px; background: var(--navy); box-shadow: 0 30px 75px rgba(7, 31, 57, .22); }
.app-card img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.app-card div { display: grid; padding: 20px 23px 23px; color: white; }
.app-card span { color: #ffae50; font-size: .7rem; font-weight: 820; letter-spacing: .14em; }
.app-card strong { margin-top: 3px; font-size: 1.35rem; }
.app-card small { color: #bed0e1; }
.steps, .help { padding-block: 76px 96px; }
.steps h2, .help h2, .contact h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.step-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin: 34px 0 0; padding: 0; list-style: none; }
.step-grid li, .faq { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.step-grid li > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-size: .82rem; font-weight: 800; }
.step-grid h3, .faq h3 { margin: 17px 0 9px; font-size: 1.12rem; }
.step-grid p, .faq p { margin: 0; color: var(--soft); font-size: .95rem; }
.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin-top: 34px; }
.faq h3 { margin-top: 0; }
.contact { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; padding: 46px; border-radius: 28px; background: var(--navy); color: white; }
.contact p:not(.eyebrow) { max-width: 670px; margin-bottom: 0; color: #c8d6e5; }
.contact .eyebrow { color: #ffad4d; }
.email { color: #ffc47c; font-size: clamp(1rem, 2vw, 1.22rem); font-weight: 740; text-align: right; overflow-wrap: anywhere; }
.notice { margin-top: 28px; padding: 20px 22px; border-left: 4px solid var(--orange); background: #f8e3c6; color: #694014; font-size: .92rem; }
footer { min-height: 104px; display: flex; align-items: center; gap: 22px; color: var(--soft); font-size: .9rem; }
footer span { margin-right: auto; }
.policy { max-width: 820px; padding-block: 70px 100px; }
.policy h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.policy .lead { margin: 22px 0 48px; }
.policy h2 { margin: 38px 0 10px; font-size: 1.45rem; }
.policy p { color: var(--soft); }
.policy a:not(.button) { color: var(--orange); font-weight: 680; }
.back { margin-top: 36px; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-block: 48px 72px; }
  .app-card { max-width: 510px; }
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { grid-template-columns: 1fr; padding: 32px; }
  .email { text-align: left; }
}

@media (max-width: 580px) {
  header { min-height: 74px; }
  nav { gap: 13px; }
  nav a:first-child { display: none; }
  h1 { font-size: 2.65rem; }
  .step-grid, .faq-grid { grid-template-columns: 1fr; }
  .steps, .help { padding-block: 54px 70px; }
  footer { flex-wrap: wrap; padding-block: 27px; }
  footer span { width: 100%; }
}
