:root {
  --navy: #0f1b2d;
  --navy-light: #16273f;
  --gold: #c9a24b;
  --gold-light: #e4c97a;
  --ink: #1c2530;
  --paper: #faf8f4;
  --paper-alt: #f1ede4;
  --line: #e2dcd0;
  --muted: #5c6470;
  --radius: 10px;
  font-size: 17px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #cfd8e3;
  font-size: 0.85rem;
}
.topbar .wrap {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { text-decoration: none; color: #e7ecf3; }
.topbar a:hover { color: var(--gold-light); }

/* Header / nav */
header.site {
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: wrap;
  gap: 16px;
}
.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #fff;
}
.brand strong { color: var(--gold-light); }
nav.main a {
  text-decoration: none;
  color: #d9e0ea;
  margin-left: 28px;
  font-weight: 500;
}
nav.main a:hover { color: var(--gold-light); }
.price-badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 64px 0 72px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold-light); }
.hero p.lead {
  font-size: 1.2rem;
  color: #cfd8e3;
  max-width: 640px;
  margin: 0 0 32px;
}
.price-panel {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.5);
  border-radius: var(--radius);
  padding: 18px 26px;
  margin-bottom: 32px;
}
.price-panel .label {
  font-size: 0.95rem;
  color: #cfd8e3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-panel .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-light);
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(201,162,75,0.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.disclaimer {
  margin-top: 28px;
  font-size: 0.9rem;
  color: #a9b3c1;
  max-width: 640px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

/* Sections */
section.block { padding: 64px 0; }
section.block.alt { background: var(--paper-alt); }
section.block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
section.block p.section-sub {
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 640px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step .step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 { margin: 0 0 8px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.seller-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .seller-box { grid-template-columns: 1fr; } }
.seller-box dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}
.seller-box dd { margin: 0 0 16px; font-weight: 600; }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq details p { margin: 12px 0 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--ink);
}
.contact-method:hover { border-color: var(--gold); }
.contact-method .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method .label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method .value { font-weight: 700; font-size: 1.05rem; }

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }

/* Footer */
footer.site {
  background: var(--navy);
  color: #b9c2cf;
  padding: 48px 0 28px;
  margin-top: 40px;
  font-size: 0.92rem;
}
footer.site .foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 640px) { footer.site .foot-grid { grid-template-columns: 1fr; } }
footer.site h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 0.95rem;
}
footer.site p, footer.site address { margin: 0 0 6px; font-style: normal; }
footer.site a { color: #cfd8e3; text-decoration: none; }
footer.site a:hover { color: var(--gold-light); }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.82rem;
  color: #8b95a3;
}
