:root {
  --black: #0a0a0c;
  --panel: #141416;
  --gold: #d49434;
  --gold-light: #f6c45c;
  --gold-deep: #96501e;
  --white: #f0f0f0;
  --gray: #9b9b9b;
  --grad: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: 1080px; margin: 0 auto;
}
nav img { height: 54px; }
nav .links { display: flex; gap: 28px; align-items: center; }
nav a { color: var(--white); text-decoration: none; font-size: 15px; }
nav a:hover { color: var(--gold-light); }

.btn {
  display: inline-block; background: var(--grad); color: #1a1206;
  font-weight: 700; padding: 14px 32px; border-radius: 40px;
  text-decoration: none; border: none; font-size: 16px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,148,52,.35); }
.btn-outline {
  background: none; color: var(--gold-light);
  border: 1.5px solid var(--gold); box-shadow: none;
}

.hero { text-align: center; padding: 90px 24px 70px; }
.hero .tag {
  display: inline-block; border: 1.5px solid var(--gold); color: var(--gold-light);
  border-radius: 40px; padding: 8px 22px; font-size: 14px; letter-spacing: .06em;
  margin-bottom: 28px;
}
.hero h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.12; font-weight: 800; }
.hero p.sub { color: var(--gray); font-size: 19px; max-width: 620px; margin: 22px auto 34px; }

.checks { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.checks span { color: var(--gray); font-size: 15px; }
.checks b { color: var(--gold-light); margin-right: 6px; }

section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .kicker { color: var(--gold); letter-spacing: .14em; font-size: 13px; font-weight: 600; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 8px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: var(--panel); border: 1px solid #26262a; border-radius: 14px; padding: 28px;
}
.card h3 { font-size: 18px; margin: 14px 0 8px; }
.card p { color: var(--gray); font-size: 14.5px; }
.card .icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(212,148,52,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 20px; font-weight: 700;
}

.steps { counter-reset: step; max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid #222; }
.step:last-child { border-bottom: none; }
.step .num {
  font-size: 40px; font-weight: 800; min-width: 52px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 19px; }
.step p { color: var(--gray); font-size: 15px; }

.cta-band { text-align: center; background: var(--panel); border-radius: 20px; padding: 56px 32px; }
.cta-band h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
.cta-band p { color: var(--gray); margin-bottom: 28px; }

footer { border-top: 1px solid #222; padding: 36px 24px; text-align: center; color: var(--gray); font-size: 13.5px; }
footer img { height: 44px; margin-bottom: 14px; }
footer a { color: var(--gold-light); text-decoration: none; margin: 0 10px; }

/* ---- form ---- */
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--panel); border: 1px solid #26262a; border-radius: 16px; padding: 36px; }
.form-wrap h1 { font-size: clamp(26px, 4vw, 34px); text-align: center; }
.form-wrap p.sub { color: var(--gray); text-align: center; margin: 10px 0 30px; font-size: 15px; }
label.field { display: block; font-size: 14px; font-weight: 600; margin: 20px 0 8px; color: var(--white); }
input[type=text], input[type=email], input[type=tel], select {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid #333;
  background: #0e0e10; color: var(--white); font-size: 15px; font-family: inherit;
}
input:focus, select:focus { outline: none; border-color: var(--gold); }
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-group label {
  border: 1px solid #333; border-radius: 30px; padding: 9px 18px; font-size: 14px;
  cursor: pointer; color: var(--gray); user-select: none;
}
.pill-group input { display: none; }
.pill-group label:has(input:checked) { border-color: var(--gold); color: var(--gold-light); background: rgba(212,148,52,.1); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 22px; font-size: 13px; color: var(--gray); }
.consent input { margin-top: 4px; accent-color: var(--gold); }
.submit-btn { width: 100%; margin-top: 28px; }
.error-msg { color: #e24b4a; font-size: 13.5px; margin-top: 10px; display: none; }

/* thank-you */
.thanks { text-align: center; max-width: 640px; margin: 60px auto; padding: 0 24px; }
.thanks .big { font-size: clamp(30px, 5vw, 44px); font-weight: 800; }
.thanks p { color: var(--gray); margin: 16px 0 30px; }
.calendly-inline-widget { min-width: 320px; height: 700px; }

@media (max-width: 640px) {
  nav .links a:not(.btn) { display: none; }
  .hero { padding: 56px 20px 40px; }
}
