/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-50: #F2F4F5;
  --gray-100: #E8EAED;
  --gray-200: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #374151;
  --near-black: #1A1A1A;
  --green: #3B82F6;
  --green-dark: #2563EB;
  --green-light: #EFF6FF;
  --blue: #3B82F6;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 72px;
  --max-w: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-header: 0 1px 4px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-header);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-text {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--near-black);
}

.brand-text b {
  font-weight: 800;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.main-nav a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover {
  background: var(--gray-50);
  color: var(--near-black);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.15s;
}

.phone-link:hover { color: var(--near-black); }

.phone-number { /* hidden on mobile */ }

/* Primary button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  padding: 10px 22px;
  font-size: 14.5px;
  color: var(--white);
  background: var(--green);
  border-radius: 100px;
}

.btn-primary:hover { background: var(--green-dark); }

.btn-full { width: 100%; justify-content: center; padding: 14px 24px; font-size: 16px; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}

.mobile-menu-actions .phone-link {
  justify-content: center;
  font-size: 16px;
  color: var(--gray-600);
}

/* ===== Hero ===== */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* Dual path cards */
.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 48px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
}

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

.path-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}

.path-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.path-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}

.path-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green);
}

.path-card:hover .path-cta { text-decoration: underline; }

/* Trust line */
.hero-trust {
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.2px;
}

/* ===== Trust bar ===== */
.trust-bar {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  padding: 28px 24px;
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-item strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--near-black);
}

.trust-item span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .main-nav { display: none; }
  .header-actions { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 56px; }

  .hero-paths {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .trust-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
  }

  .trust-item { min-width: 120px; }
}

@media (max-width: 480px) {
  .hero-paths { gap: 16px; }
  .path-card { padding: 24px 20px; }
}

/* ===== Sections (shared) ===== */
.section {
  padding: 80px 24px;
}

.section-gray {
  background: var(--off-white);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

/* ===== How It Works ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.step p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 48px;
  flex-shrink: 0;
}

/* ===== Why CashWorx ===== */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.15s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.benefit-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--gray-400);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--near-black);
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-400);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
}

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

.faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Final CTA ===== */
.cta-final {
  background: var(--near-black);
  color: var(--white);
  padding: 96px 24px;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-inner > p {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-outline {
  padding: 16px 32px;
  font-size: 16px;
  color: var(--white);
  background: transparent;
  border: 1.5px solid var(--gray-600);
  border-radius: 100px;
  font-weight: 600;
  font-family: var(--font);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.cta-note {
  font-size: 13px;
  color: var(--gray-600);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14.5px;
  color: var(--gray-600);
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--near-black); }

.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding: 20px 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== Page Hero (subpages) ===== */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 64px;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  text-align: center;
}

.page-hero .section-inner {
  padding: 0 24px;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  padding: 16px 32px;
  font-size: 16px;
  color: var(--near-black);
  background: transparent;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-weight: 600;
  font-family: var(--font);
}

.btn-outline-dark:hover {
  border-color: var(--near-black);
}

/* Active nav link */
.main-nav a.active {
  color: var(--green);
  font-weight: 600;
}

/* ===== What You Get grid ===== */
.what-you-get {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wyg-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.wyg-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.wyg-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--near-black);
  letter-spacing: -0.3px;
}

.wyg-value:hover {
  color: var(--green);
}

/* ===== Situations grid ===== */
.situations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.situation-card {
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.situation-card:hover {
  box-shadow: var(--shadow-sm);
}

.situation-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.situation-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.situation-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Guarantee Block (List With Us) ===== */
.guarantee-block {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.guarantee-content h2 {
  margin-bottom: 24px;
}

.guarantee-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.guarantee-content p strong {
  color: var(--near-black);
}

.guarantee-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--green-light);
}

.gc-header {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 24px;
}

.gc-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
}

.gc-row:last-child { border-bottom: none; }
.gc-row span { color: var(--gray-600); }
.gc-row strong { color: var(--near-black); }
.gc-row strong.green { color: var(--green); }

/* ===== Comparison Table (List With Us) ===== */
.compare-table {
  max-width: 720px;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 4px;
}

.compare-col-label {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: var(--gray-50);
  color: var(--gray-600);
}

.compare-col-label.green-bg {
  background: var(--green);
  color: var(--white);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  border-bottom: 1px solid var(--gray-100);
}

.compare-feature {
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--near-black);
}

.compare-val {
  padding: 16px 20px;
  font-size: 14px;
  text-align: center;
  color: var(--gray-600);
  background: var(--white);
}

.compare-val.green-val {
  color: var(--green);
  font-weight: 600;
  background: var(--green-light);
}

/* ===== About Page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  background: var(--near-black);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-headshot {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 14px;
}

.about-content h2 {
  margin-bottom: 8px;
}

.about-title {
  font-size: 15px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 28px;
}

.about-content > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat strong {
  font-size: 15px;
  color: var(--near-black);
}

.about-stat span {
  font-size: 13px;
  color: var(--gray-400);
}

/* Area cards */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.area-card.primary {
  border-color: var(--green);
  border-width: 2px;
}

.area-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.area-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-card ul.county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}

@media (max-width: 768px) {
  .area-card ul.county-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.area-card li {
  font-size: 15px;
  color: var(--gray-800);
  padding-left: 20px;
  position: relative;
}

.area-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.area-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Reviews Page ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.review-card.featured {
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  font-size: 18px;
  color: #F59E0B;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card blockquote {
  font-size: 15.5px;
  color: var(--gray-800);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
  margin-bottom: 20px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-meta cite {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--near-black);
}

.review-type {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== County List ===== */
.county-list {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== Legal Content Pages ===== */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--near-black);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--near-black);
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
}

.legal-content li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--green);
}

.legal-content .contact-list {
  list-style: none;
  margin-left: 0;
}

/* ===== Footer Legal Links ===== */
.footer-legal-links {
  margin-top: 8px;
  font-size: 13px;
}

.footer-legal-links a {
  color: var(--gray-400);
  text-decoration: none;
}

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

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== Opt-In Form ===== */
.optin-form-wrapper {
  max-width: 640px;
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

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

.form-group.full-width {
  flex-basis: 100%;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
}

.required {
  color: #DC2626;
}

.optional-label {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--near-black);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}

.form-group textarea {
  resize: vertical;
}

/* Consent Checkbox */
.consent-group {
  margin-top: 4px;
}

.consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 400 !important;
}

.consent-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--green);
}

.consent-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.consent-links {
  margin-top: 8px;
  padding-left: 32px;
  font-size: 14px;
}

.consent-links a {
  color: var(--green);
  text-decoration: none;
}

.consent-links a:hover {
  text-decoration: underline;
}

/* Disclosure Block */
.optin-disclosure {
  margin-top: 32px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.optin-disclosure h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--near-black);
}

.optin-disclosure ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.optin-disclosure li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.optin-disclosure li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--gray-400);
}

/* ===== Responsive — new sections ===== */
@media (max-width: 768px) {
  .section { padding: 56px 24px; }
  .section h2 { margin-bottom: 32px; }

  .steps { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }

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

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; flex-wrap: wrap; }

  .cta-final { padding: 64px 24px; }

  .page-hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 48px; }
  .what-you-get { grid-template-columns: repeat(2, 1fr); }
  .situations { grid-template-columns: 1fr; }
  .guarantee-block { grid-template-columns: 1fr; }
  .guarantee-card { max-width: 400px; }
  .compare-table { overflow-x: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .photo-placeholder { max-width: 240px; aspect-ratio: 1; }
  .about-stats { flex-wrap: wrap; }
  .area-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .form-row { flex-direction: column; }
  .consent-links { padding-left: 0; }
}
