/* ============================================================
   Caring Hands of the Desert — Design System
   Palette drawn from the tulip logo: rose, deep rose, sage,
   warm cream, charcoal ink.
   ============================================================ */

:root {
  --rose: #b93a4e;
  --rose-deep: #8e2a3c;
  --rose-soft: #f6e7ea;
  --sage: #5f7d52;
  --sage-soft: #eef2ea;
  --cream: #faf7f2;
  --sand: #f0e9de;
  --ink: #2b2523;
  --ink-soft: #5d554f;
  --white: #ffffff;
  --line: #e7dfd6;
  --shadow-sm: 0 2px 10px rgba(43, 37, 35, 0.07);
  --shadow-md: 0 10px 34px rgba(43, 37, 35, 0.12);
  --shadow-lg: 0 24px 60px rgba(43, 37, 35, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--rose-deep); text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--rose);
  display: inline-block;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section-intro { max-width: 700px; margin: 14px 0 0; color: var(--ink-soft); }

section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-rose-soft { background: var(--rose-soft); }

.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(185, 58, 78, 0.35);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--rose);
  color: var(--rose-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--rose-soft); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--rose-deep);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #d9d2cc;
  font-size: 0.83rem;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar .pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7fc97a;
  margin-right: 7px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127, 201, 122, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(127, 201, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 201, 122, 0); }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo img { height: 82px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--rose-deep); }

.header-cta { white-space: nowrap; }
.header-cta .btn { padding: 12px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 110px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.02);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(30, 22, 20, 0.82) 0%, rgba(30, 22, 20, 0.55) 48%, rgba(30, 22, 20, 0.15) 100%);
  z-index: -1;
}
.hero-content { max-width: 640px; }
.hero .eyebrow { color: #f3c7ce; }
.hero .eyebrow::before { background: #f3c7ce; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge { border-left: 3px solid var(--rose); padding-left: 16px; }
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
}
.hero-badge span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 92px 0 84px;
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30, 22, 20, 0.85) 0%, rgba(30, 22, 20, 0.55) 60%, rgba(30, 22, 20, 0.3) 100%);
  z-index: -1;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { max-width: 640px; color: rgba(255, 255, 255, 0.88); font-size: 1.1rem; }
.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.9); }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.media-accent {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--rose);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.35;
}
.split-media .floating-card {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.floating-card .fc-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  flex-shrink: 0;
}
.floating-card strong { display: block; font-size: 0.98rem; }
.floating-card span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Feature list ---------- */
.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: var(--ink-soft);
}
.check-list li strong { color: var(--ink); }
.check-list .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 3px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-top: 52px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { height: 190px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.card-link {
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { gap: 10px; }
.card-link { transition: gap 0.2s ease; }

/* icon cards */
.icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-card .ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.icon-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 32px 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -24px;
  left: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(185, 58, 78, 0.4);
}
.step img.step-icon { height: 54px; width: auto; margin-bottom: 18px; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--rose);
  opacity: 0.55;
}
.testimonial blockquote {
  font-size: 1.02rem;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
}
.testimonial .attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testimonial .attribution img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial .attribution strong { display: block; font-size: 0.95rem; }
.testimonial .attribution span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Trust / logos ---------- */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.logo-row img {
  height: 64px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-row img:hover { filter: none; opacity: 1; }

.doctor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.doctor-chips span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

/* ---------- Service areas ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.area-chips span {
  background: var(--sage-soft);
  color: var(--sage);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(115deg, var(--rose-deep), var(--rose));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 520px; }
.cta-band .btn-light { flex-shrink: 0; font-size: 1.05rem; padding: 18px 36px; }
.cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--white);
  color: var(--ink);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(185, 58, 78, 0.12);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }

.contact-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 42px;
}
.contact-info-list { display: grid; gap: 24px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list .ci-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-list strong { display: block; font-size: 0.95rem; }
.contact-info-list a, .contact-info-list p { color: var(--ink-soft); font-size: 0.95rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #b8afa8;
  padding: 74px 0 0;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-logo {
  background: var(--white);
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.footer-logo img { height: 52px; }
.site-footer a { color: #b8afa8; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--white); }
.footer-links li { margin-bottom: 11px; }
.footer-contact li { margin-bottom: 14px; display: flex; gap: 10px; }
.footer-contact strong { color: var(--white); font-weight: 600; }
.footer-areas {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  font-size: 0.85rem;
  text-align: center;
}
.footer-areas strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sticky mobile call button ---------- */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 90;
}
.mobile-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--rose);
  color: var(--white);
  font-weight: 800;
  padding: 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(142, 42, 60, 0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .split { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .cta-band { flex-direction: column; text-align: center; padding: 50px 32px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 100px 36px 36px;
    z-index: 105;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 110; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .header-cta { display: none; }
  .mobile-call { display: block; }
  .topbar .topbar-left { display: none; }
  .topbar .container { justify-content: center; }
  section { padding: 64px 0; }
  .hero { min-height: 560px; padding: 80px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 30px 24px; }
  .split-media .floating-card { left: 0; }
  .media-accent { display: none; }
  body { padding-bottom: 70px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .logo-row { gap: 30px; }
  .logo-row img { height: 46px; }
  .hero-badges { gap: 22px; }
}


/* ===== SEO additions: FAQ, comparison table, footer social ===== */
.faq-list { max-width: 860px; margin: 44px auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 1.18rem; margin-bottom: 10px; color: var(--rose-deep); }
.faq-item p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.7; margin: 0; }
.faq-item a { color: var(--rose); font-weight: 600; text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

.compare-wrap { overflow-x: auto; margin-top: 44px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.compare { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.95rem; min-width: 640px; }
table.compare th {
  background: var(--rose-deep);
  color: var(--white);
  text-align: left;
  padding: 15px 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
table.compare td { padding: 16px 20px; border-top: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); line-height: 1.6; }
table.compare td:first-child { font-weight: 700; }
table.compare td:first-child a { color: var(--rose-deep); text-decoration: none; }
table.compare td:first-child a:hover { color: var(--rose); text-decoration: underline; }
table.compare tbody tr:nth-child(even) { background: var(--cream); }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }

.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 1.5rem; margin: 42px 0 14px; }
.legal-body p, .legal-body li { color: var(--ink-soft); line-height: 1.75; }
.legal-body ul { padding-left: 22px; margin: 12px 0; }
.legal-body a { color: var(--rose); font-weight: 600; }
