/* ============================================================
   LUNAXIS — style.css v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1A3C5E;
  --orange: #E8820C;
  --white:  #FFFFFF;
  --bg:     #F5F6F8;
  --text:   #1A1A2E;
  --muted:  #5A6A7A;
  --border: #DDE3EA;
  --radius: 6px;
  --max:    1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img { height: 52px; width: auto; }

.nav-wordmark {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.80);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  transition: color .2s;
}

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

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 24px 80px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
  border: none;
}

.btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }

.btn-primary  { background: var(--orange); color: var(--white); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); }
.btn-dark     { background: var(--navy); color: var(--white); }

.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Sections ─────────────────────────────────────────────── */
section { padding: 72px 24px; }
section.bg-light { background: var(--bg); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── Cards ────────────────────────────────────────────────── */
.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,130,12,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p { color: var(--muted); font-size: 15px; }

.card-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .04em;
}

/* ── Maturity Strip ───────────────────────────────────────── */
.maturity-strip {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 48px 0 0;
}

.maturity-step {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
}

.maturity-step:nth-child(1) { background: #E8EAED; }
.maturity-step:nth-child(2) { background: #C8D8E8; }
.maturity-step:nth-child(3) { background: #8AAEC8; }
.maturity-step:nth-child(4) { background: #4A7A9E; color: var(--white); }
.maturity-step:nth-child(5) { background: var(--navy); color: var(--white); }

.maturity-num {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.maturity-label {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  display: block;
  opacity: .8;
}

/* ── Process Steps ────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-content p { color: var(--muted); font-size: 15px; }

/* ── Profile ──────────────────────────────────────────────── */
.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--orange);
  margin-bottom: 20px;
}

/* ── Form ─────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #0F2338;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
}

footer a { color: rgba(255,255,255,.6); }
footer a:hover { color: var(--white); text-decoration: none; }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Divider ──────────────────────────────────────────────── */
.orange-bar {
  height: 3px;
  background: var(--orange);
  width: 48px;
  margin-bottom: 20px;
}

/* ── Benchmark Form ───────────────────────────────────────── */
.benchmark-form { max-width: 780px; margin: 0 auto; }
.progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 48px; }
.progress-fill { height: 100%; background: var(--orange); border-radius: 2px; transition: width .3s; }
.q-block { display: none; }
.q-block.active { display: block; }
.q-number { font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: .08em; margin-bottom: 8px; }
.q-text { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.q-hint { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.answer-grid { display: grid; gap: 12px; }

.answer-btn {
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 14px;
}

.answer-btn:hover { border-color: var(--orange); background: rgba(232,130,12,.04); }
.answer-btn.selected { border-color: var(--orange); background: rgba(232,130,12,.08); color: var(--navy); font-weight: 600; }

.answer-score {
  width: 28px; height: 28px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--muted);
  flex-shrink: 0;
  transition: all .15s;
}

.answer-btn.selected .answer-score { background: var(--orange); color: var(--white); }
.nav-btns { display: flex; gap: 12px; margin-top: 32px; }
.contact-section { display: none; }
.contact-section.active { display: block; }

.result-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.result-score { font-size: 56px; font-weight: 700; color: var(--orange); line-height: 1; }
.result-label { font-size: 18px; font-weight: 600; margin-top: 8px; }
.result-desc { color: rgba(255,255,255,.72); margin-top: 12px; font-size: 15px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .maturity-strip { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
}
