/* ============================================
   LOCAL HOME PRO — LANDING PAGE
   Dark premium aesthetic, masteryos-inspired
   ============================================ */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --bg: #0C0C0C;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-card: #141414;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.25);
  --text: #E8E8E8;
  --text-muted: #888;
  --text-dim: #555;
  --white: #FFFFFF;
  --green: #3ECF8E;
  --red: #FF4444;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius: 12px;
  --radius-sm: 8px;

  --max-w: 1100px;
  --narrow: 760px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===================== UTILS ===================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: var(--narrow); margin: 0 auto; }
.center { text-align: center; }

.gold-text { color: var(--gold); }
.gold-link { color: var(--gold); text-decoration: none; }
.gold-link:hover { text-decoration: underline; }

em { font-style: italic; color: var(--gold-light); }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; }

.body-large {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.eyebrow.center { text-align: center; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0C0C0C;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn-nav {
  background: var(--gold);
  color: #0C0C0C;
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn-nav:hover {
  background: var(--gold-light);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img, .footer-logo img {
  border-radius: 6px;
}
.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-headline {
  margin: 0 0 24px;
  max-width: 820px;
  line-height: 1.1;
}
.hero-headline .gold {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  background: rgba(201,168,76,0.04);
  overflow: hidden;
  flex-wrap: wrap;
}

.proof-stat {
  flex: 1;
  min-width: 200px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  background: var(--border-gold);
  flex-shrink: 0;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-2);
}

.section-problem { background: var(--bg); }
.section-model { background: var(--bg-3); }
.section-objections { background: var(--bg); }
.section-proof { background: var(--bg-2); }
.section-fit { background: var(--bg-3); }
.section-about { background: var(--bg-2); }
.section-faq { background: var(--bg); }
.section-apply { background: var(--bg-3); position: relative; overflow: hidden; }

/* ===================== PROBLEM ===================== */
.section-problem h2 { margin-bottom: 32px; }

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.problem-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.problem-item:hover { border-color: var(--border-gold); }

.problem-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.callout-box {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
}
.callout-gold {
  border-left-color: var(--gold);
}

.callout-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* ===================== PILLARS ===================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pillar-proof {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ===================== MODEL ===================== */
.model-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 48px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.model-row {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.model-row:last-child { border-bottom: none; }
.model-row:hover { background: rgba(201,168,76,0.03); }

.model-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
}

.model-row strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.model-row div {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== OBJECTIONS ===================== */
.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.objection-card:hover { border-color: var(--border-gold); }

.objection-q {
  background: var(--bg-3);
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
  font-style: italic;
}

.objection-a {
  padding: 24px;
}
.objection-a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.objection-a p:last-child { margin-bottom: 0; }

.objection-closer {
  color: var(--gold) !important;
  font-style: italic;
  font-size: 0.875rem !important;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ===================== RESULTS ===================== */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.result-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.result-card-featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.result-location {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.result-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.result-stat.gold-text { color: var(--gold); }

.result-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.result-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 8px 0 16px;
  opacity: 0.6;
}

.result-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: left;
}

/* ===================== FIT ===================== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.fit-col {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.fit-yes { background: rgba(62,207,142,0.04); border-color: rgba(62,207,142,0.2); }
.fit-no  { background: rgba(255,68,68,0.04);  border-color: rgba(255,68,68,0.15); }

.fit-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fit-title.yes { color: var(--green); }
.fit-title.no  { color: var(--red); }

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fit-yes .fit-list li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.fit-no  .fit-list li::before { content: '✗ '; color: var(--red); font-weight: 700; }
.fit-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 4px;
}

/* ===================== ABOUT ===================== */
.team-row {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.team-member {
  flex: 1;
  min-width: 160px;
  padding: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.team-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ===================== FAQ ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
  user-select: none;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: 4px 28px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===================== APPLY ===================== */
.apply-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-top: 48px;
  text-align: center;
}
.apply-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.apply-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.apply-note {
  font-size: 0.82rem !important;
  color: var(--text-dim) !important;
  margin-bottom: 32px !important;
}

.apply-contact {
  margin-top: 20px !important;
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
}

.apply-glow {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; }
  .proof-divider { width: 100%; height: 1px; }
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 72px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .apply-box { padding: 32px 24px; }
  .faq-q { padding: 18px 20px; }
  .faq-a-inner { padding: 4px 20px 20px; }
  .fit-col { padding: 24px; }
  .model-row { padding: 18px 20px; }
}

/* ===================== STICKY NAV SCROLL ===================== */
.nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.1);
}

/* ===================== APPLICATION FORM ===================== */

.apply-header {
  margin-bottom: 48px;
}
.apply-header h2 { margin-bottom: 16px; }

/* Form card wrapper */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
}

/* Step indicators */
.form-steps {
  display: flex;
  align-items: center;
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
  gap: 0;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.38;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.form-step.active  { opacity: 1; }
.form-step.done    { opacity: 0.7; }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: all 0.3s;
}
.form-step.active .step-num {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.form-step.done .step-num {
  border-color: var(--green);
  color: var(--green);
  background: rgba(62,207,142,0.1);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.form-step.active .step-label { color: var(--white); }

.step-connector {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 12px;
  min-width: 20px;
}

/* Panels */
.form-panel {
  display: none;
  padding: 36px 40px;
  animation: panelIn 0.3s ease;
}
.form-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.form-panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* Field layout */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
input::placeholder,
textarea::placeholder { color: var(--text-dim); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
select option { background: #1a1a1a; color: var(--text); }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

input.error,
select.error,
textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,68,68,0.1);
}

textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.field-error {
  font-size: 0.78rem;
  color: var(--red);
  min-height: 16px;
  display: block;
}

/* Radio group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.radio-option:hover {
  border-color: var(--border-gold);
  background: var(--gold-dim);
}
.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--gold);
}
.radio-option input[type="radio"]:checked + span {
  color: var(--white);
}

/* Checkbox consent */
.consent-row {
  margin-top: 4px;
}
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
}

/* Form navigation */
.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Submit error */
.submit-error {
  background: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #ff8080;
  margin-top: 16px;
}

/* Success state */
.success-state {
  text-align: center;
  padding: 20px 0 8px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(62,207,142,0.12);
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-state h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.success-state p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 14px;
  line-height: 1.7;
}
.success-sub {
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
}

/* Trust bar */
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Responsive */
@media (max-width: 640px) {
  .form-steps { padding: 20px 20px; gap: 0; }
  .step-label { display: none; }
  .form-panel { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .form-trust { gap: 16px; padding: 16px 20px; flex-direction: column; }
  .form-nav { flex-direction: column-reverse; gap: 12px; }
  .form-nav .btn { width: 100%; justify-content: center; }
}
