:root {
  --background: #ffffff;
  --foreground: #172033;
  --muted: #f5f7f8;
  --muted-foreground: #657082;
  --primary: #142033;
  --primary-foreground: #f8fafc;
  --gold: #c89b3c;
  --gold-dark: #a77c24;
  --border: #e5e9ef;
  --card: #ffffff;
  --green: #16a34a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.font-headline,
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.gold {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:not(.button) {
  color: var(--muted-foreground);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: 9px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 0 18px;
}

.mobile-menu a {
  display: block;
  padding: 10px 4px;
  color: var(--muted-foreground);
  font-weight: 700;
}

.mobile-menu a.active {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--gold);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.button:hover {
  background: var(--gold-dark);
}

.button.round {
  border-radius: 999px;
  padding-inline: 32px;
  min-height: 56px;
}

.button.outline {
  background: white;
  color: var(--gold);
  border-color: var(--gold);
}

.button.outline:hover {
  color: white;
  background: var(--gold);
}

.button.green {
  background: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 88px 0;
}

.hero.home {
  min-height: 520px;
  display: grid;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.home .hero-content {
  margin-inline: auto;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero.sub h1 {
  font-size: clamp(38px, 5vw, 56px);
}

.hero p {
  margin: 0;
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(18px, 2.4vw, 22px);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-list {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(248, 250, 252, 0.66);
  font-size: 14px;
}

.trust-list span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 155, 60, 0.16);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.section {
  padding: 80px 0;
}

.section.muted {
  background: var(--muted);
}

.section.primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.section.center {
  text-align: center;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title h2,
.section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-title p,
.section p {
  color: var(--muted-foreground);
}

.primary p {
  color: rgba(248, 250, 252, 0.72);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 32, 51, 0.1);
}

.card-img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 24px;
}

.icon-box {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(200, 155, 60, 0.12);
  color: var(--gold);
}

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
}

.feature-image {
  width: 100%;
  min-height: 400px;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(20, 32, 51, 0.2);
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 16px;
}

.feature h3,
.protection-item h3 {
  margin: 0 0 6px;
}

.feature p,
.protection-item p {
  margin: 0;
}

.protection-list {
  display: grid;
  gap: 16px;
}

.protection-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.18s ease;
}

.protection-item:hover {
  border-color: var(--gold);
}

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.15fr 1.1fr;
  gap: 32px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(248, 250, 252, 0.68);
}

.footer h4 {
  margin: 0 0 14px;
  color: white;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.42);
  text-align: center;
  font-size: 12px;
}

.form-wrap {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted-foreground);
  font-size: 13px;
  font-weight: 700;
}

.progress {
  height: 8px;
  border-radius: 999px;
  background: #e8edf3;
  overflow: hidden;
  margin-top: 10px;
}

.progress > span {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--primary);
  transition: width 0.25s ease;
}

.form-card {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(20, 32, 51, 0.09);
}

.form-head,
.form-body,
.form-actions {
  padding: 24px;
}

.form-head {
  border-bottom: 1px solid var(--border);
}

.form-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.form-head p {
  margin: 0;
}

.fields {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--foreground);
  background: white;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(200, 155, 60, 0.28);
  border-color: var(--gold);
}

.form-actions {
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
}

.form-actions .button {
  flex: 1;
}

.result {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
}

.result.show {
  display: block;
}

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

.score div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.score strong {
  display: block;
  font-size: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.8fr;
  gap: 36px;
  align-items: start;
}

.info-card,
.notice {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.info-list {
  display: grid;
  gap: 22px;
  margin: 24px 0;
}

.info-list > div {
  display: flex;
  gap: 14px;
}

.notice {
  margin-top: 20px;
  background: rgba(200, 155, 60, 0.07);
  border-color: rgba(200, 155, 60, 0.25);
}

.disclaimer {
  padding: 14px;
  border-radius: 8px;
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 12px;
}

.privacy {
  max-width: 900px;
  padding: 72px 0;
}

.privacy section {
  margin-top: 32px;
}

.privacy h1 {
  font-size: clamp(34px, 5vw, 48px);
}

.privacy h2 {
  color: var(--foreground);
  font-size: 26px;
}

.quote {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: var(--muted);
  color: var(--foreground);
  font-style: italic;
}

.tiny {
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: center;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .grid-3,
  .grid-2,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 26px;
  }

  .feature-image {
    min-height: 320px;
  }

  .two,
  .score {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 14px;
  }

  .hero {
    padding: 64px 0;
  }

  .section {
    padding: 56px 0;
  }

  .button.round {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
  }
}
