/* ===== VARIABLES ===== */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-light: #243456;
  --gold: #d4a843;
  --gold-light: #e8c66a;
  --gold-dark: #b8922e;
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --white: #ffffff;
  --text: #1a2744;
  --text-muted: #5a6a80;
  --text-light: #8a96a8;
  --border: #e2e0dc;
  --success: #22c55e;
  --error: #ef4444;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif; line-height: 1.15; color: var(--navy); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius); font-weight: 600;
  font-size: 1rem; transition: all var(--transition); cursor: pointer;
  border: 2px solid transparent; text-decoration: none; line-height: 1.2;
}
.btn-primary {
  background: var(--gold); color: var(--navy-dark); border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy-dark); }
.btn-secondary {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--navy); border-color: var(--white);
}
.btn-white:hover { background: var(--cream); border-color: var(--cream); }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-navy {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-dark); border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 72px;
}
.header-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.header-logo img { height: 40px; width: 40px; border-radius: var(--radius); object-fit: cover; }
.header-logo-text { display: flex; flex-direction: column; justify-content: center; }
.header-logo-text h1 { font-size: 1.25rem; color: var(--gold); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; margin: 0; line-height: 1.2; }
.header-logo-text span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  color: var(--navy-dark); font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition); text-decoration: none;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop .btn { margin-left: 0.5rem; }

/* Mobile menu */
.mobile-menu-btn {
  display: none; background: none; border: none; color: var(--white);
  cursor: pointer; padding: 0.5rem;
}
.mobile-menu {
  display: none; flex-direction: column; background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.5rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.75); padding: 0.75rem 0; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05); text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 5rem 0 4rem;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-left { color: var(--white); }

.hero-trust { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3);
  border-radius: 2rem; padding: 0.375rem 1rem; font-size: 0.8rem; color: var(--gold-light);
}
.hero-trust-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-left h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.hero-left h2 .highlight { color: var(--gold); }
.hero-description { color: rgba(255,255,255,0.75); font-size: 1.125rem; margin-bottom: 2rem; max-width: 540px; }

.hero-benefits { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 2.5rem; }
.hero-benefit-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
}
.hero-benefit-item svg { color: var(--gold); flex-shrink: 0; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-contact-info {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
}

/* Hero right — chat mockup */
.hero-right { position: relative; }
.hero-chat-window {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212,168,67,0.3), 0 0 40px rgba(212,168,67,0.15), 0 20px 60px rgba(0,0,0,0.35);
}
.hero-chat-header {
  background: var(--navy); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0;
}
.hero-chat-info h4 { color: var(--white); font-size: 0.95rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin: 0; }
.hero-chat-info span { color: var(--success); font-size: 0.75rem; display: flex; align-items: center; gap: 0.35rem; }
.hero-chat-info span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success);
}
.hero-chat-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; min-height: 220px; }
.chat-msg {
  max-width: 85%; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.875rem; line-height: 1.5;
}
.chat-msg.ai {
  background: var(--cream); color: var(--text); align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--navy); color: var(--white); align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.hero-chat-input {
  border-top: 1px solid var(--border); padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-chat-input span { color: var(--text-light); font-size: 0.85rem; flex: 1; }
.hero-chat-input svg { color: var(--gold); }

.hero-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--gold); color: var(--navy-dark);
  padding: 0.5rem 1rem; border-radius: 2rem;
  font-size: 0.75rem; font-weight: 700; box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero { padding: 3rem 0; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
}

/* ===== FEATURES / BENEFITS ===== */
.benefits {
  padding: 5rem 0;
  background: var(--white);
}
.benefits-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.benefits-header p { color: var(--text-muted); margin-top: 0.75rem; }

.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.benefit-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.benefit-icon svg { color: var(--gold); }
.benefit-highlight {
  display: inline-block; background: rgba(212,168,67,0.15); color: var(--gold-dark);
  padding: 0.25rem 0.75rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 0.75rem;
}
.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; }
.benefit-footer {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border);
  color: var(--text-light); font-size: 0.8rem;
}
.benefit-footer svg { color: var(--success); }

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefits-cta { margin-top: 3rem; }
.benefits-cta-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg); padding: 3rem; text-align: center; color: var(--white);
}
.benefits-cta-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.benefits-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.benefits-cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 0; background: var(--cream);
}
.how-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.how-header p { color: var(--text-muted); margin-top: 0.75rem; }

.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how-step { text-align: center; padding: 2rem 1.5rem; }
.how-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  font-weight: 800; font-size: 1.125rem; margin-bottom: 1.25rem;
}
.how-step h3 { margin-bottom: 0.5rem; }
.how-step p { color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ===== CONTACT / SIGNUP FORM ===== */
.contact-section { padding: 5rem 0; background: var(--white); }
.contact-form-wrapper { max-width: 720px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 2rem; }
.contact-header p { color: var(--text-muted); margin-top: 0.75rem; }
.contact-checks {
  display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.25rem; flex-wrap: wrap;
}
.contact-check {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; color: var(--text-muted);
}
.contact-check svg { color: var(--success); }

.contact-form-box {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}

/* Form elements */
.form-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.form-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 480px) { .form-grid-2col { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit; background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
.form-group input.error, .form-group textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.error-message { color: var(--error); font-size: 0.8rem; min-height: 0; }
.error-message:not(:empty) { margin-top: 0.25rem; }

/* Honeypot */
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Turnstile */
.turnstile-wrapper { display: flex; justify-content: center; margin: 0.5rem 0; }

/* TCPA / Opt-in */
.optin-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem;
}
.optin-inner { display: flex; gap: 0.75rem; align-items: flex-start; }
.custom-checkbox { flex-shrink: 0; cursor: pointer; }
.custom-checkbox input { display: none; }
.checkbox-box {
  width: 22px; height: 22px; border: 2px solid var(--border);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); background: var(--white);
}
.checkbox-box svg { opacity: 0; color: var(--white); transition: opacity var(--transition); }
.custom-checkbox input:checked + .checkbox-box {
  background: var(--navy); border-color: var(--navy);
}
.custom-checkbox input:checked + .checkbox-box svg { opacity: 1; }
.optin-label { font-size: 0.9rem; font-weight: 600; color: var(--text); cursor: pointer; }
.optin-text { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.35rem; line-height: 1.5; }
.optin-text a { color: var(--gold-dark); text-decoration: underline; }

/* Submit */
.submit-section { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.submit-section .btn { width: 100%; }
.submit-trust {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-light);
}
.submit-trust svg { color: var(--success); }

/* Success state */
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success-icon svg { color: var(--success); margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { color: var(--text-muted); font-size: 0.95rem; }
.ref-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1.25rem; margin: 1rem auto;
  display: inline-block;
}

/* Error banner */
.form-error-banner {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius); padding: 0.75rem 1rem; color: var(--error);
  font-size: 0.875rem; text-align: center; display: none;
}
.form-error-banner.visible { display: block; }

/* ===== CHAT DEMO SECTION ===== */
.chat-demo { padding: 5rem 0; background: var(--cream); }
.chat-demo-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.chat-demo-header p { color: var(--text-muted); margin-top: 0.75rem; }

.chat-demo-window {
  max-width: 560px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.chat-demo-header-bar {
  background: var(--navy); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.chat-demo-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.chat-demo-input {
  border-top: 1px solid var(--border); padding: 0.875rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-demo-input span { color: var(--text-light); font-size: 0.875rem; }

/* ===== FAQS ===== */
.faqs { padding: 5rem 0; background: var(--white); }
.faqs-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.faqs-header p { color: var(--text-muted); margin-top: 0.75rem; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--text); text-align: left;
  font-family: inherit;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-chevron { transition: transform 0.3s; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 1.25rem 1.25rem; color: var(--text-muted); font-size: 0.9rem; }
.faq-answer-inner ul, .faq-answer-inner ol { padding-left: 1.25rem; margin: 0.5rem 0; }
.faq-answer-inner li { margin-bottom: 0.35rem; }
.faq-highlight { color: var(--gold-dark); font-weight: 600; margin-top: 0.75rem; }

.faqs-cta { margin-top: 3rem; }
.faqs-cta-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg); padding: 3rem; text-align: center; color: var(--white);
}
.faqs-cta-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.faqs-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.faqs-cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.faqs-cta-footer { margin-top: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  padding: 5rem 0; background: var(--cream); text-align: center;
}
.bottom-cta-box {
  max-width: 640px; margin: 0 auto;
}
.bottom-cta-box h2 { margin-bottom: 0.75rem; }
.bottom-cta-box p { color: var(--text-muted); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer-cta-bar {
  background: var(--gold); padding: 2rem 0;
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-cta-inner h3 { color: var(--navy-dark); margin: 0; }
.footer-cta-inner p { color: var(--navy); font-size: 0.9rem; }
.footer-cta-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-cta-phone {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--navy-dark); font-weight: 600; font-size: 0.9rem;
}

.footer-main { background: var(--navy-dark); padding: 4rem 0 2rem; color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.footer-company-desc { font-size: 0.85rem; margin-bottom: 1rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badges span {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2rem; padding: 0.35rem 0.75rem; font-size: 0.75rem;
}
.footer-badges svg { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: 0.75rem; }
.footer-contact-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { color: var(--gold); }
.footer-contact-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-contact-value { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-contact-value a { color: rgba(255,255,255,0.8); }
.footer-contact-value a:hover { color: var(--gold); }
.footer-contact-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.footer-disclaimer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-disclaimer p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.footer-bottom {
  background: rgba(0,0,0,0.2); padding: 1rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-copyright { font-size: 0.8rem; color: var(--navy-dark); }
.footer-bottom-links { display: flex; gap: 1rem; font-size: 0.8rem; }
.footer-bottom-links span { color: var(--navy-dark); }
.footer-bottom-links a { color: var(--navy-dark); }

/* ===== STANDALONE SIGNUP PAGE ===== */
.signup-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 3rem 0 2rem; text-align: center; color: var(--white);
}
.signup-hero h2 { color: var(--white); margin-bottom: 0.5rem; }
.signup-hero p { color: rgba(255,255,255,0.7); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 3rem 0 5rem; }
.legal-page .container { max-width: 800px; }
.legal-page h2 { margin-bottom: 1.5rem; }
.legal-page h3 { margin: 2rem 0 0.75rem; font-size: 1.25rem; }
.legal-page p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.95rem; }
