/* ============================================
   SHARED STYLES — LegalZen Clone
   ============================================ */
:root {
  --lz-orange: #ff5b22;
  --lz-orange-deep: #e64818;
  --lz-navy: #002855;
  --lz-navy-deep: #001a3d;
  --lz-cream: #fdf8f1;
  --lz-cream-warm: #f5ebd9;
  --lz-text: #1a2233;
  --lz-text-muted: #5a6478;
  --lz-border: #e5e0d4;
  --lz-success: #00875a;
  --lz-yellow: #ffd84a;
  --lz-purple: #6b46c1;
  --lz-teal: #0891b2;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--lz-text);
  background: var(--lz-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: var(--lz-navy-deep);
  color: #d8dde7;
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  align-items: center;
}
.utility-bar a { transition: color .15s; }
.utility-bar a:hover { color: var(--lz-yellow); }

/* ===== HEADER ===== */
header.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--lz-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 0;
}
.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--lz-navy);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.logo .dot {
  width: 10px;
  height: 10px;
  background: var(--lz-orange);
  border-radius: 50%;
  display: inline-block;
  margin-left: 4px;
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: var(--lz-text);
  padding: 8px 0;
  position: relative;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lz-orange); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--lz-orange);
  transform: scaleX(0);
  transition: transform .2s ease;
  transform-origin: left;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .2s, background .2s;
  font-family: inherit;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--lz-orange);
  color: #fff;
  box-shadow: 0 4px 0 var(--lz-orange-deep);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--lz-orange-deep), 0 8px 24px rgba(255, 91, 34, 0.25);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--lz-orange-deep);
}
.btn-outline {
  background: transparent;
  color: var(--lz-navy);
  border: 2px solid var(--lz-navy);
}
.btn-outline:hover {
  background: var(--lz-navy);
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section-cream { background: var(--lz-cream); }
.section-white { background: #fff; }
.section-navy { background: var(--lz-navy); color: #fff; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--lz-navy);
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 800px;
}
.section-navy .section-title { color: #fff; }
.section-subtitle {
  font-size: 18px;
  color: var(--lz-text-muted);
  margin-bottom: 56px;
  max-width: 640px;
}
.section-navy .section-subtitle { color: rgba(255,255,255,0.75); }

/* ===== HERO (shared) ===== */
.hero {
  background: linear-gradient(135deg, var(--lz-cream) 0%, var(--lz-cream-warm) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 91, 34, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 40, 85, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--lz-navy);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--lz-orange);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--lz-yellow);
  z-index: -1;
  opacity: 0.5;
  border-radius: 4px;
}
.hero p.lead {
  font-size: 19px;
  color: var(--lz-text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-cta-row .btn-primary {
  padding: 16px 40px;
  font-size: 17px;
}
.hero-phone { font-size: 14px; color: var(--lz-text-muted); }
.hero-phone a {
  color: var(--lz-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--lz-orange);
  text-underline-offset: 4px;
}

/* breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  color: var(--lz-text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs a:hover { color: var(--lz-orange); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--lz-navy); font-weight: 600; }

/* ===== TRUSTPILOT ===== */
.trustpilot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.trustpilot-label {
  font-weight: 600;
  color: var(--lz-navy);
  font-size: 14px;
}
.stars { display: flex; gap: 2px; }
.star {
  width: 22px;
  height: 22px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  border-radius: 2px;
}
.trustpilot-meta { font-size: 13px; color: var(--lz-text-muted); }
.trustpilot-meta strong { color: var(--lz-navy); }

/* ===== HERO VISUAL ===== */
.hero-visual { position: relative; height: 500px; }
.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 26, 61, 0.12), 0 4px 12px rgba(0, 26, 61, 0.06);
  position: absolute;
  top: 40px;
  left: 0;
  width: 90%;
  z-index: 3;
  border: 1px solid var(--lz-border);
}
.testimonial-card .quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--lz-orange);
  margin-bottom: 16px;
  height: 30px;
}
.testimonial-card p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--lz-navy);
  font-weight: 500;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lz-orange) 0%, var(--lz-orange-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--serif);
}
.author-info strong {
  display: block;
  color: var(--lz-navy);
  font-size: 15px;
}
.author-info span { color: var(--lz-text-muted); font-size: 13px; }

.floating-shape {
  position: absolute;
  background: var(--lz-orange);
  border-radius: 24px;
  opacity: 0.85;
}
.shape-1 {
  width: 180px; height: 180px;
  background: var(--lz-yellow);
  top: 0; right: 30px;
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.shape-2 {
  width: 120px; height: 120px;
  background: var(--lz-navy);
  bottom: 60px; right: 0;
  border-radius: 30px;
  transform: rotate(15deg);
  z-index: 2;
  animation: float 7s ease-in-out infinite reverse;
}
.shape-3 {
  width: 80px; height: 80px;
  background: var(--lz-orange);
  bottom: 20px; left: 40%;
  border-radius: 50%;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-15px) rotate(var(--r, 0deg)); }
}
.shape-2 { --r: 15deg; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.price-card {
  background: #fff;
  border: 2px solid var(--lz-border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 26, 61, 0.1);
  border-color: var(--lz-orange);
}
.price-card.recommended {
  border-color: var(--lz-orange);
  box-shadow: 0 12px 32px rgba(255, 91, 34, 0.15);
  transform: scale(1.02);
}
.recommended-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--lz-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
}
.tier-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--lz-navy);
  font-weight: 600;
  margin-bottom: 16px;
}
.tier-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.tier-price .currency {
  font-size: 24px;
  color: var(--lz-navy);
  font-weight: 600;
}
.tier-price .amount {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--lz-navy);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier-fees { font-size: 13px; color: var(--lz-text-muted); margin-bottom: 20px; }
.tier-desc {
  font-size: 15px;
  color: var(--lz-text);
  margin-bottom: 28px;
  min-height: 48px;
}
.tier-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  background: #fff;
  color: var(--lz-orange);
  border: 2px solid var(--lz-orange);
  margin-bottom: 28px;
  transition: background .15s, color .15s;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}
.tier-cta:hover { background: var(--lz-orange); color: #fff; }
.price-card.recommended .tier-cta { background: var(--lz-orange); color: #fff; }
.price-card.recommended .tier-cta:hover { background: var(--lz-orange-deep); border-color: var(--lz-orange-deep); }

.includes-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--lz-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--lz-text);
  line-height: 1.45;
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #e8f5ee;
  color: var(--lz-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* ===== WHY/REASONS GRID ===== */
.why-grid, .reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.why-card { padding: 8px; }
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--lz-cream);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--lz-border);
}
.why-icon svg { width: 32px; height: 32px; stroke: var(--lz-orange); }
.why-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--lz-navy);
  font-weight: 600;
  margin-bottom: 12px;
}
.why-card p { color: var(--lz-text-muted); font-size: 16px; line-height: 1.55; }

/* dark reasons */
.reason-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px 32px;
  border-radius: 20px;
  transition: transform .2s, background .2s;
}
.reason-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.reason-icon {
  width: 56px;
  height: 56px;
  background: var(--lz-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}
.reason-icon svg { width: 28px; height: 28px; }
.reason-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}
.reason-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== GUARANTEE BANNER ===== */
.guarantee-banner {
  background: var(--lz-cream-warm);
  border-radius: 24px;
  padding: 40px 48px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--lz-border);
}
.guarantee-shield {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--lz-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(255, 91, 34, 0.3);
}
.guarantee-text h4 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--lz-navy);
  margin-bottom: 8px;
  font-weight: 600;
}
.guarantee-text h4 em { color: var(--lz-orange); font-style: italic; }
.guarantee-text p {
  color: var(--lz-text-muted);
  font-size: 15px;
  max-width: 720px;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--lz-border) 0, var(--lz-border) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--lz-orange);
  color: var(--lz-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}
.step-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lz-navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.step-card p {
  color: var(--lz-text-muted);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== HOW-TO GRID ===== */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.howto-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--lz-border);
  transition: transform .2s, box-shadow .2s;
}
.howto-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 26, 61, 0.08); }
.howto-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--lz-cream-warm) 0%, var(--lz-cream) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lz-orange);
  margin-bottom: 20px;
}
.howto-icon svg { width: 28px; height: 28px; }
.howto-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lz-navy);
  font-weight: 600;
  margin-bottom: 10px;
}
.howto-card p { color: var(--lz-text-muted); font-size: 14px; line-height: 1.55; }

/* ===== COMPARE GRID (LLC vs Corp) ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.compare-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--lz-border);
  position: relative;
  overflow: hidden;
}
.compare-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.compare-card.llc::before { background: var(--lz-orange); }
.compare-card.corp::before { background: var(--lz-navy); }
.compare-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lz-text-muted);
  margin-bottom: 8px;
}
.compare-card h3 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--lz-navy);
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.compare-icon-lg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.compare-card.llc .compare-icon-lg { background: var(--lz-orange); }
.compare-card.corp .compare-icon-lg { background: var(--lz-navy); }
.compare-icon-lg svg { width: 28px; height: 28px; }
.compare-features { display: flex; flex-direction: column; gap: 24px; }
.compare-feature { display: flex; gap: 16px; }
.compare-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--lz-cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lz-orange);
}
.compare-card.corp .compare-feature-icon { color: var(--lz-navy); }
.compare-feature-icon svg { width: 20px; height: 20px; }
.compare-feature h4 {
  font-size: 17px;
  color: var(--lz-navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.compare-feature p { color: var(--lz-text-muted); font-size: 14px; line-height: 1.5; }

/* ===== FAQ ===== */
.faq-list { margin-top: 48px; max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--lz-border); padding: 4px 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lz-navy);
  font-weight: 600;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--lz-orange); }
.faq-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid var(--lz-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, background .15s;
  color: var(--lz-navy);
}
.faq-item[open] .faq-toggle {
  background: var(--lz-orange);
  border-color: var(--lz-orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 8px 28px;
  color: var(--lz-text);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}
.faq-content p { margin-bottom: 12px; }
.faq-content ul { margin-left: 20px; margin-top: 8px; }
.faq-content li { margin-bottom: 6px; }

/* ===== STATES GRID ===== */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 48px;
}
.state-card {
  background: #fff;
  border: 1px solid var(--lz-border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .15s;
  font-size: 14px;
  font-weight: 500;
  color: var(--lz-navy);
}
.state-card:hover {
  border-color: var(--lz-orange);
  background: var(--lz-cream);
  transform: translateY(-2px);
}
.state-flag {
  width: 32px;
  height: 32px;
  background: var(--lz-cream-warm);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--lz-orange);
  font-size: 13px;
  flex-shrink: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--lz-navy) 0%, var(--lz-navy-deep) 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 91, 34, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 216, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta-inner { text-align: center; position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 20px;
}
.final-cta h2 em { color: var(--lz-yellow); font-style: italic; }
.final-cta p {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-primary { padding: 18px 48px; font-size: 17px; }

/* ===== FOOTER ===== */
footer {
  background: #fff;
  border-top: 1px solid var(--lz-border);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--lz-text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 300px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--lz-cream);
  border: 1px solid var(--lz-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lz-navy);
  transition: all .15s;
}
.social-links a:hover {
  background: var(--lz-orange);
  color: #fff;
  border-color: var(--lz-orange);
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--lz-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--lz-text-muted); font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--lz-orange); }
.footer-bottom {
  border-top: 1px solid var(--lz-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--lz-text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== CHOOSE YOUR ENTITY (homepage / hub) ===== */
.entity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.entity-card {
  background: #fff;
  border: 2px solid var(--lz-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .25s;
  display: block;
  position: relative;
  overflow: hidden;
}
.entity-card:hover {
  border-color: var(--lz-orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,40,85,0.08);
}
.entity-card .ent-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lz-cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lz-orange);
  margin-bottom: 20px;
}
.entity-card .ent-icon svg { width: 28px; height: 28px; }
.entity-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lz-navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.entity-card p { color: var(--lz-text-muted); font-size: 14px; margin-bottom: 16px; }
.entity-card .ent-arrow {
  color: var(--lz-orange);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.entity-card .ent-arrow::after {
  content: '→';
  transition: transform .15s;
}
.entity-card:hover .ent-arrow::after { transform: translateX(4px); }

/* ===== FORMATION FLOW ===== */
.flow-page {
  min-height: 100vh;
  background: var(--lz-cream);
  display: flex;
  flex-direction: column;
}
.flow-header {
  background: #fff;
  border-bottom: 1px solid var(--lz-border);
  padding: 16px 0;
}
.flow-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progress-bar-wrap {
  background: var(--lz-cream-warm);
  height: 4px;
  width: 100%;
  position: relative;
}
.progress-bar-fill {
  background: var(--lz-orange);
  height: 100%;
  transition: width .4s ease;
}
.flow-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px 100px;
}
.flow-card {
  background: #fff;
  border-radius: 24px;
  padding: 56px;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,26,61,0.08);
  border: 1px solid var(--lz-border);
}
.flow-step-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lz-orange);
  margin-bottom: 16px;
}
.flow-card h1 {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--lz-navy);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.flow-card p.intro {
  color: var(--lz-text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lz-navy);
  margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--lz-border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--lz-text);
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--lz-orange);
  box-shadow: 0 0 0 4px rgba(255,91,34,0.1);
}
.form-help { font-size: 13px; color: var(--lz-text-muted); margin-top: 6px; }
.flow-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
}
.flow-actions .btn-primary { padding: 16px 36px; font-size: 16px; }
.flow-back {
  color: var(--lz-text-muted);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.flow-back:hover { color: var(--lz-orange); }

/* radio cards (state picker, package picker) */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.radio-card {
  border: 2px solid var(--lz-border);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: all .15s;
  background: #fff;
  font-size: 15px;
  color: var(--lz-text);
  text-align: center;
  font-weight: 500;
}
.radio-card:hover { border-color: var(--lz-orange); }
.radio-card.selected {
  border-color: var(--lz-orange);
  background: rgba(255,91,34,0.06);
  color: var(--lz-orange);
  font-weight: 700;
}

/* summary card */
.summary-card {
  background: linear-gradient(135deg, var(--lz-cream) 0%, var(--lz-cream-warm) 100%);
  border: 1px solid var(--lz-border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 32px;
}
.summary-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--lz-navy);
  margin-bottom: 16px;
  font-weight: 600;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--lz-border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row span:first-child { color: var(--lz-text-muted); }
.summary-row span:last-child { color: var(--lz-navy); font-weight: 600; }
.summary-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--lz-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-total .label {
  font-size: 16px;
  font-weight: 600;
  color: var(--lz-navy);
}
.summary-total .total {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--lz-orange);
}

/* success */
.success-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #00b67a 0%, var(--lz-success) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,135,90,0.3);
  animation: pop .5s cubic-bezier(.34,1.56,.64,1);
}
.success-icon svg { width: 48px; height: 48px; }
@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.flow-card.success-card { text-align: center; }
.flow-card.success-card h1 { text-align: center; }
.flow-card.success-card p.intro { text-align: center; max-width: 440px; margin-left: auto; margin-right: auto; }

/* attorney cards */
.attorney-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.attorney-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--lz-border);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.attorney-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,26,61,0.08);
}
.attorney-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lz-orange) 0%, var(--lz-orange-deep) 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
}
.attorney-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lz-navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.attorney-card .specialty {
  color: var(--lz-orange);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.attorney-card .bio {
  color: var(--lz-text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.attorney-card .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--lz-navy);
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links, .utility-bar { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .pricing-grid, .why-grid, .steps-grid, .reasons-grid, .compare-grid, .howto-grid {
    grid-template-columns: 1fr;
  }
  .price-card.recommended { transform: none; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .section { padding: 64px 0; }
  .hero { padding: 50px 0 70px; }
  .flow-card { padding: 36px 24px; }
  .flow-card h1 { font-size: 28px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-right .btn-outline { display: none; }
  .container { padding: 0 18px; }
  .testimonial-card { padding: 24px; }
  .testimonial-card p { font-size: 18px; }
  .flow-actions { flex-direction: column-reverse; gap: 12px; }
  .flow-actions .btn-primary { width: 100%; }
}

/* hero entry animation */
.hero h1, .hero p.lead, .hero-cta-row, .hero .trustpilot, .testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.8s ease-out forwards;
}
.hero p.lead { animation-delay: 0.1s; }
.hero-cta-row { animation-delay: 0.2s; }
.hero .trustpilot { animation-delay: 0.3s; }
.testimonial-card { animation-delay: 0.4s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
