:root {
  --color-navy: #0b1b33;
  --color-navy-dark: #061020;
  --color-blue: #0b1b33;
  --color-blue-dark: #061020;
  --color-amber: #f59e0b;
  --color-amber-dark: #d9840a;
  --color-red: #b3261e;
  --color-bg: #ffffff;
  --color-bg-warm: #f7f7f5;
  --color-text: #1a2333;
  --color-muted: #5a6472;
  --color-border: #e5e3de;
  --radius: 12px;
  --shadow: 0 12px 28px rgba(11, 27, 51, 0.1);
  --shadow-hover: 0 16px 32px rgba(11, 27, 51, 0.16);
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
}

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

h1, h2, h3 {
  color: var(--color-navy);
  line-height: 1.2;
  font-family: var(--font-serif);
  font-weight: 700;
}

h2 {
  font-size: 34px;
}

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

.btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--color-amber);
  color: #1a1206;
}

.btn-primary:hover {
  background: var(--color-amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--color-navy);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-large {
  padding: 18px 38px;
  font-size: 18px;
}

.btn-small {
  padding: 11px 20px;
  font-size: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 12px rgba(11, 27, 51, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--color-navy);
}

.header-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  color: var(--color-text);
  font-weight: 500;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: #fff;
  padding: 110px 0 96px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero h1 {
  color: #fff;
  font-size: 60px;
  line-height: 1.1;
  max-width: 640px;
  margin: 0 0 22px;
}

.hero-sub {
  max-width: 520px;
  margin: 0 0 36px;
  color: #cfd8e6;
  font-size: 18px;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-price-note {
  color: #cfd8e6;
  font-size: 14px;
}

.urgency-note {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 32px 0 0;
  padding: 12px 18px;
  border-left: 3px solid #e05c52;
  background: rgba(255, 255, 255, 0.08);
  color: #eef2f7;
  border-radius: 6px;
  font-size: 14px;
}

.urgency-note .urgency-icon {
  flex-shrink: 0;
  color: #e05c52;
}

/* Notice mockup */
.notice-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.notice-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  width: 340px;
  padding: 24px 24px 20px;
  transform: rotate(-3deg);
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #d8d5cf;
  padding-bottom: 12px;
  margin-bottom: 10px;
}

.notice-agency {
  display: flex;
  flex-direction: column;
}

.notice-agency-name {
  font-size: 11px;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: 0.01em;
}

.notice-agency-sub {
  font-size: 10px;
  color: #6b6b6b;
}

.notice-tag {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.notice-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.notice-body-text {
  font-size: 11px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0 0 14px;
}

.notice-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(179, 38, 30, 0.08);
  border: 1px solid rgba(179, 38, 30, 0.3);
  border-radius: 6px;
}

.notice-amount-label {
  font-size: 11px;
  font-weight: 600;
  color: #7a1c16;
}

.notice-amount-value {
  color: var(--color-red);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.notice-footer-text {
  font-size: 10px;
  color: #8a8a8a;
  margin: 12px 0 0;
}

.notice-resolved {
  position: absolute;
  bottom: 8px;
  right: 4px;
  background: #fff;
  border: 1px solid #cfe8d8;
  border-left: 3px solid #1e8a4c;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1e8a4c;
  transform: rotate(2deg);
}

/* Qualifier */
.qualifier {
  padding: 64px 0;
}

.qualifier-panel {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: left;
}

.qualifier-heading {
  font-size: 26px;
  margin-bottom: 24px;
}

.qualifier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qualifier-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text);
}

.qualifier-check {
  color: var(--color-navy);
  font-weight: 700;
  flex-shrink: 0;
}

/* Social proof */
.social-proof {
  padding: 64px 0;
  background: var(--color-bg-warm);
  text-align: center;
}

.social-proof-line {
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-navy);
}

.stat-label {
  color: var(--color-muted);
  font-size: 14px;
  margin-top: 4px;
}

/* How it works */
.how-it-works {
  padding: 96px 0;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 64px;
  font-size: 34px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step p {
  color: var(--color-muted);
}

.how-it-works-cta {
  margin-top: 56px;
}

/* Pricing */
.pricing {
  padding: 96px 0;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 48px;
  font-size: 34px;
}

.pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 400px;
  width: 100%;
  margin: 0;
  padding: 44px 38px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-top: 3px solid var(--color-amber);
  padding: 52px 42px;
  box-shadow: var(--shadow-hover);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 42px;
  background: var(--color-amber);
  color: #1a1206;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 21px;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: var(--color-navy);
}

.pricing-label {
  color: var(--color-muted);
  margin: 8px 0 28px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-features li::before {
  content: "\2713";
  color: var(--color-blue);
  font-weight: 700;
  margin-right: 10px;
}

.pricing-card .btn {
  width: 100%;
}

/* What you receive */
.what-you-receive {
  padding: 96px 0;
  background: var(--color-bg-warm);
}

.receive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.receive-copy h2 {
  font-size: 32px;
  margin-bottom: 28px;
}

.receive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.receive-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text);
}

.doc-stack {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-page {
  background: #fff;
  border-radius: 6px;
  width: 270px;
  height: 350px;
  box-shadow: 0 18px 40px rgba(11, 27, 51, 0.16);
}

.doc-page-back {
  position: absolute;
  transform: rotate(-5deg) translate(-14px, 6px);
  background: #f2f0eb;
}

.doc-page-mid {
  position: absolute;
  transform: rotate(3deg) translate(10px, 2px);
  background: #faf9f6;
}

.doc-page-front {
  position: relative;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.doc-letterhead {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.doc-text {
  font-size: 9.5px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0 0 10px;
}

.doc-signature {
  margin-top: auto;
  padding-top: 20px;
}

.doc-signature-line {
  border-bottom: 1px solid var(--color-navy);
  width: 70%;
  margin-bottom: 6px;
}

.doc-signature span {
  font-size: 11px;
  color: var(--color-muted);
}

/* Guarantee */
.guarantee {
  padding: 96px 0;
}

.guarantee-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 48px 44px;
  text-align: center;
}

.guarantee-icon {
  color: var(--color-navy);
  margin-bottom: 16px;
}

.guarantee-panel h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.guarantee-panel p {
  color: var(--color-text);
  margin: 0;
  line-height: 1.7;
}

/* Honesty */
.honesty {
  padding: 96px 0;
}

.honesty h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 34px;
}

.honesty-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.honesty-col {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 30px;
}

.honesty-col h3 {
  font-size: 19px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.honesty-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.honesty-col li {
  color: var(--color-muted);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.honesty-col li:last-child {
  border-bottom: none;
}

.honesty-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(179, 38, 30, 0.1);
  color: var(--color-red);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.honesty-note {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--color-muted);
  line-height: 1.7;
}

.honesty-note a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
}

/* FAQ */
.faq {
  padding: 96px 0;
  background: var(--color-bg-warm);
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 34px;
}

.accordion {
  max-width: 760px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  font-size: 19px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  font-size: 20px;
  font-family: var(--font-sans);
  color: var(--color-navy);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel p {
  padding: 0 0 26px;
  color: var(--color-muted);
  margin: 0;
  max-width: 620px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 12px;
}

.final-cta p {
  color: #cfd8e6;
  margin-bottom: 32px;
}

/* Footer */
.site-footer {
  background: var(--color-navy-dark);
  color: #a9b4c4;
  padding: 40px 0;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-contact a {
  color: #cfd8e6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #cfd8e6;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-line {
  font-size: 13px;
  color: #a9b4c4;
  margin: 0 0 6px;
}

/* Legal pages */
.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.legal-brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
}

.legal-page {
  padding: 64px 0 96px;
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.legal-page p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-page ul {
  margin: 0 0 14px 22px;
  line-height: 1.7;
  color: var(--color-text);
}

.legal-page a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
}

.legal-back {
  display: inline-block;
  margin-top: 40px;
}

.footer-disclaimer {
  font-size: 12px;
  max-width: 720px;
  margin: 14px auto 0;
  color: #7c8a9e;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 23, 41, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-muted);
}

.modal-sub {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-privacy-note {
  font-size: 12px;
  color: var(--color-muted);
  margin: 4px 0 8px;
}

.modal-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-muted);
  margin: 18px 0 0;
}

.lead-form label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.lead-form input,
.lead-form textarea {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

.lead-form button {
  margin-top: 20px;
}

.form-error {
  color: #c0392b;
  font-size: 14px;
  margin-top: 8px;
}

.modal-confirmation {
  text-align: center;
  padding: 12px 0;
}

.modal-confirmation h3 {
  margin-bottom: 12px;
}

.modal-confirmation p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.modal-confirmation .btn {
  width: 100%;
}

/* Thank you / login / 404 pages */
.thank-you, .stats-login, .not-found {
  padding: 120px 0;
  text-align: center;
}

.thank-you-inner, .not-found-inner {
  max-width: 560px;
  margin: 0 auto;
}

.stats-login-inner {
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}

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

.stats-login-form input {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 15px;
}

/* Stats page */
.stats-page {
  padding: 48px 0 96px;
}

.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.stats-summary-row {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 14px;
}

.stats-table th, .stats-table td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
}

.stats-table th {
  background: var(--color-bg);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .notice-mockup {
    order: 2;
    transform: scale(0.8);
    min-height: 260px;
    margin-top: -20px;
  }

  .hero-copy {
    order: 1;
  }

  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 720px) {
  .header-nav {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .timeline::before {
    display: none;
  }

  .stats-row {
    gap: 32px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card,
  .pricing-card-featured {
    max-width: 440px;
    padding: 40px 32px;
  }

  .how-it-works, .pricing, .faq, .final-cta, .what-you-receive, .guarantee {
    padding: 64px 0;
  }

  .qualifier, .social-proof {
    padding: 48px 0;
  }

  .receive-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .doc-stack {
    min-height: 320px;
    transform: scale(0.85);
  }

  .guarantee-panel {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo {
    font-size: 16px;
  }

  .hero {
    padding: 28px 0 36px;
  }

  .hero h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-cta-row {
    gap: 8px;
  }

  .btn-large {
    padding: 13px 24px;
    font-size: 15px;
  }

  .hero-price-note {
    font-size: 12px;
  }

  .urgency-note {
    margin-top: 16px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .notice-mockup {
    display: none;
  }

  .qualifier {
    padding: 32px 0;
  }
}
