.privacy { background: var(--cream-2); }

.privacy-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(34px, 6vw, 80px);
}

.privacy-points { display: grid; gap: 14px; }
.privacy-point { padding: 22px 24px; background: #fff; }
.privacy-point h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -0.02em; }
.privacy-point p { margin: 0; color: var(--muted); font-size: 16px; }

.proof-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-card { padding: 26px; background: var(--cream); }
.proof-card strong { display: block; font-size: 42px; line-height: 1; letter-spacing: -0.04em; color: var(--field-dark); }
.proof-card span { display: block; margin-top: 12px; color: var(--muted); font-size: 15px; font-weight: 900; }

.final-cta {
  padding-bottom: clamp(46px, 7vw, 86px);
  text-align: center;
}

.final-cta .section-title, .final-cta .section-copy { margin-left: auto; margin-right: auto; }
.final-actions { margin-top: 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.footer {
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-contact a,
.footer-links a {
  color: var(--green-deep);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.country-home {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 110px clamp(18px, 4vw, 56px) 56px;
  background:
    linear-gradient(90deg, rgba(245,251,239,0.95), rgba(245,251,239,0.74)),
    var(--hero-image);
  background-size: cover;
  background-position: center right;
}

.country-panel {
  max-width: 980px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.country-panel h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.country-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.country-card {
  display: block;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.country-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.info-page {
  padding-top: 70px;
}

.info-hero {
  padding-top: clamp(86px, 11vw, 150px);
}

.info-actions {
  justify-content: flex-start;
}

.privacy-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) clamp(54px, 8vw, 96px);
}

.legal-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 900;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.legal-table th {
  color: var(--ink);
  font-weight: 900;
}

.success, .error {
  display: none;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 14px;
}

.success { color: #124c29; background: #dff6cb; }
.error { color: #7a1f1f; background: #ffe2df; }

.waitlist-security-check {
  width: 100%;
  min-height: 65px;
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.waitlist-security-check.is-unavailable {
  min-height: 0;
  padding: 11px 13px;
  border: 1px solid rgba(122, 31, 31, 0.2);
  border-radius: var(--radius);
  background: #fff2f0;
  color: #7a1f1f;
}

@media (max-width: 920px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .brand { font-size: 18px; }
  .country-switcher { margin-left: auto; }
  .hero {
    min-height: 92vh;
    padding-top: 96px;
    padding-bottom: 42px;
    background-image:
      linear-gradient(90deg, rgba(13,51,29,0.78) 0%, rgba(13,51,29,0.58) 55%, rgba(13,51,29,0.28) 100%),
      linear-gradient(0deg, rgba(13,51,29,0.62) 0%, rgba(13,51,29,0.04) 50%),
      var(--hero-image);
    background-position: 58% center;
  }
  .hero-content { padding-bottom: 210px; }
  .hero-strip {
    grid-template-columns: 1fr;
    left: 10px;
    right: auto;
    width: calc(100vw - 20px);
    /* Lifted onto the image (was -150px, which hung the whole stack below it).
       Slight overhang keeps the hero from getting unworkably tall on phones. */
    bottom: -28px;
  }
  .strip-item { padding: 18px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .strip-label { font-size: 14px; }
  .strip-text { font-size: 21px; line-height: 1.18; }
  .after-hero { padding-top: 72px; }
  .split, .tester-grid, .privacy-grid { grid-template-columns: 1fr; }
  .steps, .proof-grid, .check-grid, .faq-grid, .country-grid, .privacy-page-grid { grid-template-columns: 1fr; }
  .proof-card strong { font-size: 34px; }
}
