:root {
  --primary: #feaa00;
  --primary-dark: #cc8800;
  --primary-soft: #fff3d4;
  --ink: #111216;
  --muted: #5d636f;
  --line: #e8eaee;
  --bg: #f7f8fb;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(17, 18, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffef9 0%, #f7f8fb 45%, #ffffff 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 18, 22, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-size: 18px;
  width: 42px;
  height: 42px;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.main-nav a {
  color: #353948;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-dark);
}

.cta-btn,
.ghost-btn,
.download-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-btn {
  background: var(--primary);
  color: #111;
  box-shadow: 0 10px 20px rgba(254, 170, 0, 0.28);
}

.cta-btn:hover,
.cta-btn:focus-visible {
  background: #ffbc2c;
  transform: translateY(-1px);
}

.ghost-btn {
  border: 1px solid #d8dde7;
  color: #303746;
  background: #fff;
}

.ghost-btn:hover,
.ghost-btn:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.page-hero {
  padding: 76px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: var(--primary-soft);
  border: 1px solid #ffe3a5;
  border-radius: 999px;
  color: #5a4302;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.14;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.06rem;
  color: #3f4553;
  max-width: 58ch;
}

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

.hero-image {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  min-height: 340px;
  object-fit: cover;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.metric-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.metric-card strong {
  font-size: 1.28rem;
  display: block;
}

.section {
  padding: 64px 0;
}

.alt-bg {
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  border-top: 1px solid #f0eadf;
  border-bottom: 1px solid #f0eadf;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 4px 14px rgba(17, 18, 22, 0.04);
}

.card p,
.step p,
.list-soft li,
.meta-text,
.legal-body li,
.legal-body p,
.requirements li,
.contact-list li {
  color: var(--muted);
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.step {
  border: 1px solid #efe7d8;
  border-radius: 16px;
  background: #fffdfa;
  padding: 16px;
}

.step .num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: #ffe4a7;
  margin-bottom: 12px;
}

.download-banner {
  border: 1px solid #f4dcc0;
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(130deg, #fff9ed, #ffffff);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.download-chip {
  border: 1px solid #d8dde7;
  background: #fff;
  color: #212734;
}

.download-chip:hover,
.download-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 18, 22, 0.08);
}

.highlight {
  background: #121722;
  color: #f9fbff;
  border-radius: 20px;
  padding: 28px;
}

.highlight p {
  color: rgba(249, 251, 255, 0.82);
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.notice-card {
  padding: 18px;
  border: 1px solid #f1dcb8;
  border-radius: 16px;
  background: #fffaf0;
}

.legal-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.legal-body h3 {
  margin-top: 20px;
}

.legal-body h3:first-child {
  margin-top: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.form-card,
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d7dce6;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: #1c2130;
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #ffd16d;
  border-color: #ffcb58;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 12px 0 16px;
}

.checkbox-row input {
  width: auto;
  margin-top: 4px;
}

.form-alert {
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
  margin-bottom: 12px;
  display: none;
}

.form-alert.ok {
  display: block;
  background: #e9f8ee;
  color: #10633a;
  border: 1px solid #b8eac9;
}

.form-alert.err {
  display: block;
  background: #ffefef;
  color: #8f2323;
  border: 1px solid #ffcfcf;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid #eceff3;
  padding: 12px;
  text-align: left;
}

th {
  background: #f8fafc;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-wrap {
  padding: 28px 0;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-links a {
  color: #444b59;
}

.small {
  font-size: 0.9rem;
  color: #656c79;
}

.contact-list {
  margin: 0;
  padding-left: 18px;
}

.mt-12 {
  margin-top: 12px;
}

.pb-0 {
  padding-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.h5-only {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 18px 48px;
}

.h5-only .simple-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.h5-only .panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .hero-grid,
  .download-banner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .step-row,
  .metrics,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 4vw 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-action {
    display: none;
  }

  .page-hero {
    padding-top: 48px;
  }

  .card-grid,
  .step-row,
  .metrics,
  .form-row {
    grid-template-columns: 1fr;
  }
}
