/* PalmBeachQuotes — Conversion-Optimized CSS */

/* ============================================================================
   ROOT & RESETS
   ============================================================================ */

:root {
  /* Trust palette — green primary, orange CTA */
  --primary: #1B6E3F;
  --primary-dark: #145A32;
  --primary-light: #E8F5E9;
  --cta: #E67E22;
  --cta-hover: #D35400;
  --cta-light: #FFF3E0;
  --success: #06A77D;
  --danger: #C0392B;
  --background: #F5F7FA;
  --white: #FFFFFF;
  --text-dark: #2C3E50;
  --text-body: #4A5568;
  --text-light: #7F8C8D;
  --border: #E0E0E0;
  --border-light: #F0F0F0;

  /* Spacing — fluid scale */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: clamp(2.5rem, 4vw, 3.5rem);
  --sp-3xl: clamp(3rem, 5vw, 5rem);
  --sp-4xl: clamp(4rem, 7vw, 7rem);

  /* Typography */
  --font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-cta: 0 4px 14px rgba(230, 126, 34, 0.35);

  --transition: all 0.2s ease;
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sp-md) 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }

p {
  margin: 0 0 var(--sp-md) 0;
  color: var(--text-body);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================================================
   HEADER
   ============================================================================ */

header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp-md) var(--sp-lg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.header-trust {
  display: none;
  font-size: var(--font-size-xs);
  color: var(--text-light);
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--sp-xl);
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: var(--font-size-sm);
  color: var(--text-body);
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--sp-4xl) var(--sp-lg);
  text-align: center;
  margin: 0 calc(-1 * var(--sp-lg));
  margin-top: 0;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--background) 50%);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-xl);
  font-size: var(--font-size-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.hero p {
  color: var(--white);
}

.hero-sub {
  font-size: var(--font-size-lg);
  margin-bottom: var(--sp-2xl);
  opacity: 0.92;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  color: var(--white);
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm) var(--sp-xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--sp-xl);
  width: 100%;
}

.hero-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-line .check {
  color: #90EE90;
  font-weight: 700;
}

.hero-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--cta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: var(--font-size-lg);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-cta);
}

.hero-cta-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.45);
  color: var(--white);
  text-decoration: none;
}

.hero-cta-btn:active {
  transform: translateY(0);
}

/* ============================================================================
   TRUST BAR (below hero)
   ============================================================================ */

.trust-bar {
  background: var(--background);
  padding: var(--sp-xl) var(--sp-md);
  text-align: center;
}

.trust-bar-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md) var(--sp-xl);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-body);
}

.trust-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sp-lg);
}

section {
  margin: var(--sp-4xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--sp-sm);
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: var(--sp-3xl);
  font-size: var(--font-size-base);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================================
   SERVICE CARDS (Homepage)
   ============================================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-xl) var(--sp-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--sp-md);
  background: var(--primary-light);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
  font-size: var(--font-size-lg);
}

.service-card p {
  color: var(--text-body);
  font-size: var(--font-size-sm);
  margin-bottom: var(--sp-lg);
  line-height: 1.65;
  flex-grow: 1;
}

.service-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: var(--transition);
}

.service-card .card-cta:hover {
  color: var(--primary-dark);
  gap: 10px;
  text-decoration: none;
}

.service-card .card-cta::after {
  content: '\2192';
  transition: var(--transition);
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */

.how-it-works {
  background: var(--white);
  padding: var(--sp-3xl) var(--sp-xl);
  border-radius: var(--radius-lg);
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.steps {
  display: grid;
  gap: var(--sp-2xl);
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: var(--font-size-xl);
  margin-bottom: var(--sp-md);
  box-shadow: 0 4px 12px rgba(27, 110, 63, 0.25);
}

.step h3 {
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
  font-size: var(--font-size-lg);
}

.step p {
  color: var(--text-body);
  font-size: var(--font-size-sm);
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================================================
   SOCIAL PROOF
   ============================================================================ */

.social-proof {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-xl);
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  margin: var(--sp-3xl) 0;
}

.social-proof h2 {
  color: var(--primary-dark);
  margin-bottom: var(--sp-2xl);
}

.proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2xl) var(--sp-3xl);
  margin-bottom: var(--sp-xl);
}

.proof-stat {
  text-align: center;
}

.proof-stat .number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.proof-stat .label {
  font-size: var(--font-size-sm);
  color: var(--text-body);
  font-weight: 500;
}

.proof-note {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

/* ============================================================================
   TRUST SIGNALS (vertical pages)
   ============================================================================ */

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm) var(--sp-md);
  padding: var(--sp-lg);
  margin: var(--sp-lg) 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--primary-light);
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--primary-dark);
}

.trust-badge .badge-icon {
  font-size: 14px;
}

/* ============================================================================
   FORM STYLING
   ============================================================================ */

.form-container {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-xl);
  margin: var(--sp-2xl) 0;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--cta));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-title {
  text-align: center;
  margin-bottom: var(--sp-sm);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-dark);
}

.form-subtitle {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: var(--sp-xl);
}

.form-group {
  margin-bottom: var(--sp-lg);
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--text-dark);
}

.form-group label.required::after {
  content: ' *';
  color: var(--danger);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  font-family: var(--font-base);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  color: var(--text-dark);
  touch-action: manipulation;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 110, 63, 0.12);
  background-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B8C0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
  min-height: 50px;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232C3E50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Honeypot */
.honeypot {
  display: none;
}

/* Error states */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--danger);
  background-color: rgba(192, 57, 43, 0.03);
}

.form-error {
  display: none;
  color: var(--danger);
  font-size: var(--font-size-xs);
  margin-top: 4px;
  font-weight: 500;
}

.form-group.has-error .form-error {
  display: block;
}

.form-privacy {
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--text-light);
  margin-top: var(--sp-md);
  line-height: 1.5;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: 16px 32px;
  min-height: 50px;
  border: none;
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-base);
}

.btn:hover {
  text-decoration: none;
}

.btn-cta {
  background: var(--cta);
  color: var(--white);
  width: 100%;
  box-shadow: var(--shadow-cta);
  font-size: var(--font-size-lg);
  padding: 18px 32px;
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.45);
  color: var(--white);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  width: 100%;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* Button loading state */
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-right-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq {
  margin: var(--sp-3xl) 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--sp-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  background: var(--white);
  padding: var(--sp-lg);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  color: var(--text-dark);
}

.faq-question:hover {
  background: var(--background);
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: var(--font-size-sm);
  font-weight: bold;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: var(--sp-md);
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  display: none;
  padding: 0 var(--sp-lg) var(--sp-lg);
  color: var(--text-body);
  line-height: 1.7;
  font-size: var(--font-size-sm);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================================
   MESSAGES & STATUS
   ============================================================================ */

.message {
  padding: var(--sp-lg);
  border-radius: var(--radius);
  margin: var(--sp-lg) 0;
  display: none;
  line-height: 1.6;
}

.message.show {
  display: block;
}

.message-success {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  color: var(--primary-dark);
}

.message-error {
  background: #FDEDEC;
  border: 1px solid var(--danger);
  color: var(--danger);
}

/* ============================================================================
   STICKY MOBILE CTA
   ============================================================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: var(--sp-md);
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta.show {
  display: block;
}

.sticky-cta button {
  width: 100%;
  padding: 14px;
  min-height: 50px;
  background: var(--cta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-cta);
  font-family: var(--font-base);
}

.sticky-cta button:active {
  background: var(--cta-hover);
}

/* ============================================================================
   PROGRESS INDICATOR
   ============================================================================ */

.progress-container {
  display: none;
  text-align: center;
  margin: var(--sp-lg) 0;
}

.progress-container.show {
  display: block;
}

.progress-text {
  font-size: var(--font-size-sm);
  color: var(--text-body);
  margin-bottom: var(--sp-md);
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--cta));
  border-radius: 2px;
  animation: pulse-width 2s ease-in-out infinite;
}

@keyframes pulse-width {
  0%, 100% { width: 30%; }
  50% { width: 80%; }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--sp-3xl) var(--sp-xl);
  margin-top: var(--sp-4xl);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.footer-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--sp-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-heading {
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--sp-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom {
  text-align: center;
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

/* Tablet (768px) */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .header-trust {
    display: block;
  }

  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }

  .hero {
    padding: var(--sp-4xl) var(--sp-2xl);
  }

  .hero h1 {
    font-size: var(--font-size-4xl);
  }

  .hero-sub {
    font-size: var(--font-size-xl);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-container {
    max-width: 550px;
    margin: var(--sp-2xl) auto;
  }

  .steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-3xl);
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  main {
    padding: var(--sp-3xl) var(--sp-xl);
  }

  .hero {
    padding: var(--sp-4xl) var(--sp-3xl);
  }

  .form-container {
    max-width: 500px;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-xl);
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 3rem;
  }
}

/* Legal Pages */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #2563eb;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1d4ed8;
}

/* ============================================================================
   HERO REASSURANCE
   ============================================================================ */

.hero-reassurance {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--sp-sm);
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================================================
   FORM GUARANTEE (objection micro-copy near submit)
   ============================================================================ */

.form-guarantee {
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--text-light);
  margin-top: var(--sp-sm);
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================================
   GUARANTEE STRIP
   ============================================================================ */

.guarantee-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3xl) var(--sp-xl);
  margin: var(--sp-3xl) 0;
}

.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: var(--sp-xl);
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.guarantee-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
}

.guarantee-item strong {
  display: block;
  color: var(--text-dark);
  font-size: var(--font-size-base);
  margin-bottom: 2px;
}

.guarantee-item p {
  color: var(--text-body);
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================================
   FINAL CTA SECTION
   ============================================================================ */

.final-cta {
  text-align: center;
  padding: var(--sp-4xl) var(--sp-xl);
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0faf4 100%);
  border-radius: var(--radius-lg);
  margin: var(--sp-3xl) 0;
}

.final-cta h2 {
  color: var(--primary-dark);
  margin-bottom: var(--sp-md);
}

.final-cta p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-body);
  margin-bottom: var(--sp-xl);
}

.final-cta .hero-reassurance {
  color: var(--text-light);
}

/* ============================================================================
   EXIT INTENT OVERLAY
   ============================================================================ */

.exit-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
}

.exit-overlay.show {
  display: flex;
}

.exit-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.exit-modal-close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.exit-modal-close:hover {
  background: var(--background);
  color: var(--text-dark);
}

.exit-modal h3 {
  color: var(--text-dark);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--sp-sm);
}

.exit-modal p {
  color: var(--text-body);
  margin-bottom: var(--sp-lg);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.exit-modal .btn-cta {
  display: inline-block;
  width: auto;
  padding: 14px 32px;
  text-decoration: none;
}

.exit-modal .exit-dismiss {
  display: block;
  margin-top: var(--sp-md);
  font-size: var(--font-size-sm);
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-base);
}

.exit-modal .exit-dismiss:hover {
  color: var(--text-body);
}

/* ============================================================================
   URGENCY BAR
   ============================================================================ */

.urgency-bar {
  display: none;
  text-align: center;
  padding: 8px var(--sp-md);
  background: var(--cta-light);
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  margin-bottom: var(--sp-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--cta-hover);
}

.urgency-bar.show {
  display: block;
}

@media (min-width: 768px) {
  .guarantee-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Print */
@media print {
  .sticky-cta, header, .exit-overlay { display: none; }
}
