/* ============================================
   WindowsRenew — Complete Rebuild
   Design: Forest green + amber | Fraunces + Plus Jakarta Sans
   Mobile-first | Meta ads traffic
   ============================================ */

:root {
  --green-900:  #0F2D1F;
  --green-800:  #1E4D3A;
  --green-700:  #2D6B52;
  --green-600:  #3A8A69;
  --green-100:  #EAF4EF;
  --amber:      #E8A838;
  --amber-dark: #C8901E;
  --off-white:  #F7F5F0;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-muted: #5A5A5A;
  --border:     #E5E0D8;
  --max:        1180px;
  --radius:     12px;
  --radius-lg:  20px;
}

/* ---- Version Tag ---- */
.version-tag {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.85);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  pointer-events: none;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--green-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 144, 30, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-header {
  display: inline-block;
  background: var(--amber);
  color: var(--green-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-header:hover {
  background: var(--amber-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  text-decoration: none;
  color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--green-600); }

@media (min-width: 768px) {
  .logo-text { font-size: 1.5rem; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-nav {
  display: none;
  gap: 1.5rem;
}
.header-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}
.header-nav a:hover { color: var(--green-700); text-decoration: none; }

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.nav-links.open { display: flex; }
.nav-links li a {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-links li:last-child a { border-bottom: none; }
.nav-links li a:hover { color: var(--green-700); text-decoration: none; }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .header-nav { display: flex; }
  .nav-links { display: none !important; }
  .btn-header { font-size: 0.9rem; padding: 0.6rem 1.5rem; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background-image: url('../assets/hero-bg-mobile.webp');
  background-size: cover;
  background-position: center top;
}
@media (min-width: 960px) {
  .hero { background-image: url('../assets/hero-bg.webp'); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10, 30, 20, 0.88) 0%,
    rgba(15, 45, 31, 0.80) 50%,
    rgba(10, 25, 18, 0.65) 100%
  );
  z-index: 1;
}

/* hero-inner: centers columns within the full-bleed background */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Full-screen hero only on desktop */
@media (min-width: 960px) {
  .hero { min-height: 100svh; }
  .hero-inner { min-height: 100svh; }
}

/* Mobile: stacked layout */
.hero-content {
  padding: 2.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.2px;
}
.hero-badge svg { flex-shrink: 0; color: var(--amber); }

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.80);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.hero-trust svg { color: rgba(255,255,255,0.5); flex-shrink: 0; }

/* Form panel */
.hero-form-panel {
  padding: 1.5rem 1.25rem 2.5rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.form-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}
.form-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.quiz-container {
  min-height: 320px;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  line-height: 1.4;
}
.form-privacy svg { flex-shrink: 0; color: var(--green-600); }

/* Desktop: side-by-side hero */
@media (min-width: 960px) {
  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-content {
    flex: 1 1 0;
    min-width: 0;
    padding: 5rem 2rem 4rem 3.5rem;
    justify-content: center;
  }

  .hero-form-panel {
    flex: 0 0 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1.5rem 3rem 2.5rem;
    background: linear-gradient(to left, rgba(0,0,0,0.18) 0%, transparent 100%);
  }

  .form-card {
    width: 100%;
    max-width: 460px;
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding: 5rem 2.5rem 4rem 4rem;
  }
  .hero-form-panel {
    flex: 0 0 560px;
    padding: 3rem 2rem 3rem 3rem;
  }
  .form-card {
    max-width: 480px;
  }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.25rem;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  max-width: var(--max);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.trust-item svg { flex-shrink: 0; color: var(--green-700); }
.trust-item strong { color: var(--text); }

@media (min-width: 480px) {
  .trust-items { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}
@media (min-width: 760px) {
  .trust-items { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-header { margin-bottom: 2.5rem; }
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.6rem;
}
.section-header h2,
.why-text h2,
.faq-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--off-white);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .how-it-works { padding: 5rem 1.25rem; }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  /* scroll reveal start state */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-card:nth-child(2) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  min-width: 2.5rem;
  flex-shrink: 0;
}
.step-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.4rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 700px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step-card { flex-direction: column; gap: 0.85rem; }
}

/* ============================================
   PHOTO BANNER
   ============================================ */
.photo-banner {
  background-size: cover;
  background-position: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
  /* background-attachment: fixed is intentionally omitted — broken on iOS Safari */
}
.photo-banner.loaded {
  background-image: url('../assets/banner-bg-mobile.webp');
}

@media (min-width: 960px) {
  .photo-banner.loaded { background-image: url('../assets/banner-bg.webp'); background-attachment: fixed; }
}

.photo-banner-inner {
  background: rgba(10, 30, 20, 0.58);
  padding: 4rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.photo-banner-inner blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  max-width: 680px;
  margin: 0;
}

/* ============================================
   WHY WINDOWSRENEW
   ============================================ */
.why-section {
  background: var(--white);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .why-section { padding: 5rem 1.25rem; }
}

.why-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
}

.why-text {
  max-width: 480px;
}
.why-text .eyebrow { display: block; }
.why-text .section-desc {
  margin: 0 0 2rem;
  max-width: none;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr;   /* single column on mobile */
  gap: 1rem;
}
@media (min-width: 520px) {
  .why-cards { grid-template-columns: 1fr 1fr; }
}

.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  /* scroll reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.why-card:nth-child(2) { transition-delay: 0.08s; }
.why-card:nth-child(3) { transition-delay: 0.16s; }
.why-card:nth-child(4) { transition-delay: 0.24s; }

.why-card-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--green-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.why-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.3rem;
}
.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 900px) {
  .why-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .why-text {
    flex: 0 0 340px;
    position: sticky;
    top: 5rem;
  }
  .why-cards {
    flex: 1;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--off-white);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .faq-section { padding: 5rem 1.25rem; }
}

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.faq-header .eyebrow { display: block; }
.faq-header .section-desc {
  margin: 0;
  max-width: none;
}

.faq-list {
  flex: 1;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  /* scroll reveal */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
details.visible {
  opacity: 1;
  transform: translateY(0);
}
details:nth-child(2) { transition-delay: 0.07s; }
details:nth-child(3) { transition-delay: 0.14s; }
details:nth-child(4) { transition-delay: 0.21s; }

details[open] { border-color: var(--green-600); }
details[open] summary { border-bottom: 1px solid var(--border); }

summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
  line-height: 1.4;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-700);
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
}
details[open] summary::after { content: '−'; }

.faq-body {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-body strong { color: var(--text); }

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 860px) {
  .faq-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .faq-header {
    flex: 0 0 300px;
    position: sticky;
    top: 5rem;
  }
  .faq-list { flex: 1; }
  .faq-cta { text-align: left; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green-900);
  padding: 3rem 1.25rem 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.footer-logo span { color: var(--amber); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.footer-nav a:hover { color: var(--white); text-decoration: none; }

.disclaimer {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: var(--max);
  margin: 0 auto 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.copyright {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  max-width: var(--max);
  margin: 0 auto;
}

/* Legacy footer wrapper (used in legal/contact pages) */
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-inner .footer-logo { margin-bottom: 1.25rem; }
.footer-inner .footer-nav { margin-bottom: 1.5rem; }

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--green-900);
  padding: 3rem 1.25rem 2.5rem;
}
.legal-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.legal-hero .updated {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}
.legal-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 2.25rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.legal-body p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-body li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--green-700); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 1.75rem;
}
.legal-back:hover { text-decoration: underline; color: var(--amber-dark); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: var(--green-900);
  padding: 3rem 1.25rem 2.5rem;
}
.contact-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.contact-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  text-align: center;
}
.contact-wrap h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.contact-wrap .intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.contact-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.contact-card a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
}
.disclaimer-box {
  background: var(--off-white);
  border-left: 3px solid var(--amber);
  padding: 1rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.65;
}

/* ============================================
   DO NOT SELL
   ============================================ */
.opt-out-cta {
  background: var(--off-white);
  border: 1px solid var(--amber);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
.opt-out-cta a { color: var(--green-900); font-weight: 600; }
