@font-face {
  font-family: "Fraunces";
  src: url(../fonts/JetBrainsMono-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url(../fonts/JetBrainsMono-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --navy: #0B1F3A;
  --navy-deep: #07142A;
  --navy-soft: #1A2F4A;
  --terracotta: #C8553D;
  --terracotta-dark: #A5432F;
  --gold: #D4A574;
  --gold-soft: #E8C89A;
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --sand: #E8E4DD;
  --text: #2A2A2A;
  --text-soft: #555555;
  --white: #FFFFFF;
  --success: #2D7A4F;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.12);
  --shadow-xl: 0 30px 60px rgba(11, 31, 58, 0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 600;
}

p { color: var(--text-soft); font-size: 1.02rem; }
strong { color: var(--navy); font-weight: 600; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.kicker.center { display: block; text-align: center; }

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}

.section-eyebrow .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-title { margin-bottom: 40px; }
.section-title.center { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }

header {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.logo img {
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.logo span {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.update-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  padding: 6px 12px;
  background: var(--cream-dark);
  color: var(--navy-soft);
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.ad-badge {
  background: var(--navy);
  color: var(--gold-soft);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

main { flex: 1; }

section {
  padding: 70px 0;
  position: relative;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pill-accent {
  background: var(--terracotta);
  color: var(--white);
}

.pill-outline {
  background: transparent;
  border: 1.5px solid rgba(11, 31, 58, 0.2);
  color: var(--navy);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(200, 85, 61, 0.3);
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200, 85, 61, 0.4);
}

.btn-primary.btn-lg { padding: 20px 40px; font-size: 1.1rem; }

.btn-primary.btn-full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 50px;
  transition: var(--transition);
  border: 1.5px solid rgba(11, 31, 58, 0.15);
  background: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-decor {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 85, 61, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--navy);
}

.hero h1 em { color: var(--terracotta); font-style: italic; }

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-item i {
  color: var(--terracotta);
  background: rgba(200, 85, 61, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 31, 58, 0.05);
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}

.fc-savings {
  top: 30px;
  left: -30px;
  background: var(--white);
}

.fc-savings .fc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  font-weight: 600;
}

.fc-savings .fc-value {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
  margin: 4px 0;
}

.fc-savings .fc-sub {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.fc-time {
  bottom: 40px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  animation-delay: 1.5s;
}

.fc-time i {
  color: var(--gold);
  font-size: 1.5rem;
}

.fc-time strong {
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.fc-time span {
  font-size: 0.78rem;
  color: var(--gold-soft);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-ribbon {
  background: var(--navy);
  padding: 50px 0;
  color: var(--white);
  position: relative;
}

.stat-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--terracotta));
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

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

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.problem-text p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.problem-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
}

.problem-quote blockquote i.fa-quote-left {
  color: var(--gold);
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.problem-quote p {
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 20px;
}

.problem-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-soft);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

.law-deep {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.law-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.law-visual {
  position: relative;
}

.law-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.law-stamp {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-12deg);
  border: 3px dashed rgba(255, 255, 255, 0.4);
  font-family: 'Fraunces', serif;
}

.law-stamp span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
}

.law-stamp strong {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
}

.law-content h2 {
  margin-bottom: 20px;
}

.law-content > p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.law-points {
  display: grid;
  gap: 18px;
}

.law-point {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.06);
  transition: var(--transition);
}

.law-point:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}

.law-point i {
  background: var(--terracotta);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.law-point h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.law-point p {
  font-size: 0.95rem;
  margin: 0;
}

.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--cream);
  padding: 32px 26px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  background: var(--white);
  border-color: rgba(11, 31, 58, 0.08);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.how-it-works {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

.step-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(11, 31, 58, 0.05);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 20px;
  font-size: 1.6rem;
  border: 2px dashed rgba(11, 31, 58, 0.15);
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 2rem;
  opacity: 0.5;
}

.quiz-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quiz-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.quiz-section .kicker { color: var(--gold); }
.quiz-section h2 { color: var(--white); }
.quiz-section h2 em { color: var(--gold); }
.quiz-section p { color: rgba(255, 255, 255, 0.8); }

.quiz-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

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

.quiz-sub {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  width: 25%;
  border-radius: 50px;
  transition: width 0.4s ease;
}

.progress-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--gold-soft);
  font-weight: 600;
  white-space: nowrap;
}

.quiz-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  color: var(--text);
  position: relative;
  z-index: 2;
  transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
  overflow: hidden;
}

.quiz-container.hidden {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  pointer-events: none;
}

.quiz-step { display: none; animation: fadeIn 0.5s ease; }
.quiz-step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  text-align: center;
  color: var(--navy);
}

.quiz-options {
  display: grid;
  gap: 14px;
}

.quiz-option {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-family: inherit;
  color: var(--text);
  position: relative;
  padding-left: 56px;
}

.quiz-option::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid var(--navy-soft);
  border-radius: 50%;
  transition: var(--transition);
}

.quiz-option:hover {
  border-color: var(--terracotta);
  background: var(--white);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.quiz-option:hover::before {
  border-color: var(--terracotta);
  background: var(--terracotta);
  box-shadow: inset 0 0 0 4px var(--white);
}

.form-container {
  display: none;
  max-width: 720px;
  margin: 0 auto 0;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  border: 2px solid var(--gold);
}

.form-container.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.form-widget {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.widget-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #4CAF8C);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(45, 122, 79, 0.3);
}

.form-widget h3 {
  color: var(--success);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.form-widget p {
  color: var(--text-soft);
  font-size: 1rem;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--cream);
  color: var(--text);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 85, 61, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  accent-color: var(--terracotta);
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.checkbox-group label a {
  color: var(--terracotta);
  text-decoration: underline;
}

.form-note {
  text-align: center;
  font-size: 0.85rem !important;
  color: var(--text-soft) !important;
  margin-top: 8px;
}

.form-note i {
  color: var(--success);
  margin-right: 4px;
}

.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(11, 31, 58, 0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.avatar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.avatar-icon.ai-rose {
  background: linear-gradient(135deg, #C8553D 0%, #E8A598 100%);
}

.avatar-icon.ai-blue {
  background: linear-gradient(135deg, #0B1F3A 0%, #1A2F4A 100%);
}

.avatar-icon.ai-gold {
  background: linear-gradient(135deg, #B8860B 0%, #E8C89A 100%);
}

.tc-info { flex: 1; min-width: 120px; }

.tc-info strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
}

.tc-info span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.tc-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.8rem;
}

.tc-text {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
  flex: 1;
}

.tc-result {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 122, 79, 0.1);
  color: var(--success);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'JetBrains Mono', monospace;
}

.regions {
  background: var(--white);
}

.regions-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.05rem;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.region-chip {
  background: var(--cream);
  padding: 16px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
  min-height: 54px;
  width: 100%;
}

.region-chip i {
  color: var(--terracotta);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.region-chip:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.region-chip:hover i { color: var(--white); }

.why-silence {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.silence-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.silence-content h2 {
  margin-bottom: 22px;
}

.silence-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.silence-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.silence-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  color: var(--text);
  border-left: 3px solid var(--terracotta);
}

.silence-item i {
  color: var(--success);
  background: rgba(45, 122, 79, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.silence-visual {
  position: relative;
}

.silence-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.silence-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--terracotta);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.calculator {
  background: var(--white);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.calc-card {
  padding: 30px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.calc-card:hover {
  background: var(--white);
  border-color: rgba(11, 31, 58, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.calc-card i {
  font-size: 2.2rem;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.calc-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.calc-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.calc-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.calc-cta p {
  color: var(--gold-soft);
  font-size: 1rem;
  margin: 0;
}

.calc-cta p i { color: var(--gold); margin-right: 8px; }

.final-cta {
  background: transparent;
  padding: 0;
  margin-top: 70px;
}

.final-cta .container {
  padding: 0 24px;
}

.final-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 70px 50px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.final-decor {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 85, 61, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.final-card > * { position: relative; z-index: 2; }

.final-card .pill-accent {
  background: var(--terracotta);
  margin-bottom: 18px;
}

.final-card h2 {
  color: var(--white);
  margin-bottom: 22px;
  max-width: 720px;
}

.final-card h2 em { color: var(--gold); }

.final-card > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-card > p strong { color: var(--gold); }

.final-tags {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.final-tags span {
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-tags span i { color: var(--gold); }

.faq-embedded {
  background: var(--white);
  padding-top: 70px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 4px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.faq-item[open] {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
  color: var(--terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 26px 22px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}

footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img {
  border-radius: 10px;
}

.footer-logo span {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
}

.footer-contacts p,
.footer-legal-info p {
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.footer-contacts i {
  color: var(--gold);
  margin-right: 8px;
  width: 14px;
  display: inline-block;
}

.fc-company {
  font-weight: 700;
  color: var(--white) !important;
  font-size: 1.1rem !important;
  margin-bottom: 14px !important;
  font-family: 'Fraunces', serif;
}

.footer-legal-info strong {
  color: var(--gold-soft);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  margin-right: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 1000px;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.legal-body {
  background: var(--cream);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 30px;
  margin-bottom: 30px;
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--navy);
  border-bottom: 3px solid var(--terracotta);
  padding-bottom: 14px;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--navy);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--navy);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  margin: 14px 0 14px 1.5rem;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-content strong {
  color: var(--navy);
  font-weight: 600;
}

.legal-content .legal-update {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: block;
}

.legal-content .legal-intro {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-soft);
  padding: 18px 22px;
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
}

.thanks-body {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  min-height: 100vh;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.thanks-card {
  background: var(--white);
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.05);
}

.thanks-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 85, 61, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.thanks-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(11, 31, 58, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.thanks-logo {
  border-radius: 12px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #4CAF8C);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  font-size: 2.4rem;
  box-shadow: 0 15px 35px rgba(45, 122, 79, 0.35);
  position: relative;
  z-index: 2;
  animation: thanksPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes thanksPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-card h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--navy);
  position: relative;
  z-index: 2;
}

.thanks-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-card p strong {
  color: var(--terracotta);
  font-weight: 600;
}

.thanks-next {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--terracotta);
  text-align: left;
  position: relative;
  z-index: 2;
}

.thanks-next h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.thanks-next p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-soft);
}

@media (max-width: 992px) {
  section { padding: 50px 0; }

  .hero-grid,
  .problem-grid,
  .law-grid,
  .silence-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrap { max-width: 450px; margin: 0 auto; }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stat-divider { display: none; }

  .benefits-grid,
  .calc-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { transform: rotate(90deg); justify-self: center; }

  .testimonials-grid,
  .faq-grid { grid-template-columns: 1fr; }

  .regions-grid { grid-template-columns: repeat(2, 1fr); }

  .final-card { padding: 50px 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }

  .header-meta { flex-direction: column; align-items: center; gap: 6px; }
  .update-badge { font-size: 0.7rem; }
  .ad-badge { font-size: 0.7rem; padding: 6px 12px; }

  .hero { padding: 50px 0 70px; }

  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }

  .hero-trust { flex-direction: column; gap: 14px; }

  .fc-savings { top: 10px; left: 10px; }
  .fc-time { bottom: 10px; right: 10px; }

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

  .benefits-grid,
  .calc-grid { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }

  .quiz-container,
  .form-container { padding: 28px 22px; }

  .problem-quote { padding: 28px 24px; }
  .problem-quote p { font-size: 1.15rem; }

  .law-stamp {
    position: static;
    margin: -50px auto 0;
    transform: rotate(-12deg);
  }

  .final-card { padding: 40px 22px; }
  .final-tags { flex-direction: column; gap: 12px; }

  .footer-links { flex-direction: column; gap: 12px; }

  .thanks-card { padding: 40px 24px; }
  .thanks-card h1 { font-size: 1.7rem; }
  .thanks-card p { font-size: 1rem; }

  .legal-content { padding: 32px 22px; }
  .legal-content h1 { font-size: 1.7rem; }
  .legal-content h2 { font-size: 1.35rem; }

    .header-inner {
      flex-direction: column;
    }
        .silence-item {
          flex-direction: column;
        }
}