:root {
  /* Mirrors lib/core/constants/app_colors.dart — same brand tokens as the app */
  --primary: #0891b2;
  --primary-light: #22d3ee;
  --primary-dark: #0e7490;
  --primary-container: #cffafe;
  --accent: #6366f1;
  --surface: #f8fafc;
  --card: #ffffff;
  --sidebar: #0f172a;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --divider: #e2e8f0;
  --success: #10b981;
  --error: #ef4444;

  /* Mirrors AppColors.estado* — used only on the case-track signature element */
  --estado-solicitud: #64748b;
  --estado-recibido: #3b82f6;
  --estado-diseno: #8b5cf6;
  --estado-aprobacion: #0891b2;
  --estado-trabajo: #f59e0b;
  --estado-finalizado: #059669;
  --estado-cerrado: #475569;

  --font-body: "Outfit", -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

h1, h2, h3 { margin: 0; text-wrap: balance; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.eyebrow-on-dark { color: rgba(255, 255, 255, 0.55); }

/* ---------- Nav ---------- */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--card);
  border-bottom: 1px solid var(--divider);
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 40px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-container);
  flex-shrink: 0;
}

.nav-brand strong { font-weight: 700; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover { background: var(--primary-container); color: var(--primary-dark); }

@media (min-width: 720px) {
  .nav-links { display: flex; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-sm { padding: 9px 18px; font-size: 14px; }

.btn-ghost {
  color: var(--primary-dark);
  border-color: var(--primary);
  background: transparent;
}

.btn-ghost:hover { background: var(--primary-container); }

.btn-primary {
  background: var(--primary-dark);
  color: #fff;
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--primary-dark) 85%, black);
  box-shadow: 0 6px 16px rgba(8, 145, 178, 0.25);
}

.btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.15s ease;
}

.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 40px) 48px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, var(--primary-container) 0%, transparent 70%);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

.plus-mark {
  display: none;
  position: absolute;
  font-size: 20px;
  color: var(--text-secondary);
  opacity: 0.45;
}

.hero-copy { max-width: 560px; position: relative; }

.hero h1 {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 44ch;
  margin: 0 0 30px;
}

/* ---------- Case track (signature element) ---------- */

.case-track {
  margin-top: 48px;
}

.case-track-card {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 20px 22px 18px;
}

.case-track-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--divider);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.case-track-count {
  color: var(--primary-dark);
  font-weight: 700;
}

.case-track-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-track-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 14px;
  font-weight: 500;
}

.case-track-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 24px;
  bottom: -3px;
  width: 1px;
  background: var(--divider);
}

.case-track-list .dot {
  position: absolute;
  left: 0;
  top: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mark, var(--divider));
}

/* Each row's real state color — mirrors AppColors.estado* in app_colors.dart */
.case-track-list li:nth-child(1) { --mark: var(--estado-solicitud); color: var(--mark); }
.case-track-list li:nth-child(2) { --mark: var(--estado-recibido); color: var(--mark); }
.case-track-list li:nth-child(3) { --mark: var(--estado-diseno); color: var(--mark); }
.case-track-list li:nth-child(4) { --mark: var(--estado-aprobacion); color: var(--mark); }
.case-track-list li:nth-child(5) { --mark: var(--estado-trabajo); color: var(--mark); }
.case-track-list li:nth-child(6) { --mark: var(--estado-finalizado); color: var(--mark); }
.case-track-list li:nth-child(7) { --mark: var(--estado-cerrado); color: var(--mark); font-weight: 700; }

.case-track-list li:nth-child(7) .dot {
  width: 11px;
  height: 11px;
  left: -1px;
  top: 12px;
  box-shadow: 0 0 0 4px rgba(71, 85, 105, 0.18);
}

.case-track-caption {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 260px;
  margin: 20px auto 0;
}

@keyframes track-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mark {
  from { color: var(--divider); }
  to { color: var(--mark); }
}

@keyframes mark-dot {
  from { background: var(--divider); }
  to { background: var(--mark); }
}

@keyframes mark-dot-final {
  from {
    width: 9px;
    height: 9px;
    left: 0;
    top: 13px;
    background: var(--divider);
    box-shadow: 0 0 0 0 rgba(71, 85, 105, 0);
  }
  to {
    width: 11px;
    height: 11px;
    left: -1px;
    top: 12px;
    background: var(--mark);
    box-shadow: 0 0 0 4px rgba(71, 85, 105, 0.18);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .case-track-list li {
    animation-name: track-in, mark;
    animation-duration: 0.4s, 0.3s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), ease;
    animation-fill-mode: both, both;
  }

  .case-track-list li:nth-child(1) { animation-delay: 40ms, 200ms; }
  .case-track-list li:nth-child(2) { animation-delay: 90ms, 700ms; }
  .case-track-list li:nth-child(3) { animation-delay: 140ms, 1200ms; }
  .case-track-list li:nth-child(4) { animation-delay: 190ms, 1700ms; }
  .case-track-list li:nth-child(5) { animation-delay: 240ms, 2200ms; }
  .case-track-list li:nth-child(6) { animation-delay: 290ms, 2700ms; }
  .case-track-list li:nth-child(7) { animation-delay: 340ms, 3000ms; }

  .case-track-list .dot {
    animation-name: mark-dot;
    animation-duration: 0.3s;
    animation-timing-function: ease;
    animation-fill-mode: both;
  }

  .case-track-list li:nth-child(1) .dot { animation-delay: 200ms; }
  .case-track-list li:nth-child(2) .dot { animation-delay: 700ms; }
  .case-track-list li:nth-child(3) .dot { animation-delay: 1200ms; }
  .case-track-list li:nth-child(4) .dot { animation-delay: 1700ms; }
  .case-track-list li:nth-child(5) .dot { animation-delay: 2200ms; }
  .case-track-list li:nth-child(6) .dot { animation-delay: 2700ms; }
  .case-track-list li:nth-child(7) .dot {
    animation-name: mark-dot-final;
    animation-delay: 3000ms;
  }
}

@media (min-width: 780px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 76px;
    padding-bottom: 68px;
  }

  .case-track { margin-top: 0; flex-shrink: 0; }

  .plus-mark { display: block; }
}

/* ---------- Gallery ---------- */

.gallery {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--divider);
}

.gallery h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 28px;
  max-width: 20ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.gallery-card {
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 28px 24px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.gallery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--primary-container);
  color: var(--primary-dark);
  transition: transform 0.2s ease;
}

.gallery-card:hover .gallery-icon { transform: scale(1.08); }

.gallery-icon svg { width: 23px; height: 23px; }

.gallery-card h3 {
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 9px;
}

.gallery-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Lab band ---------- */

.lab-band {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--divider);
}

.lab-band-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 28px clamp(20px, 4vw, 32px);
}

.lab-band-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary-container);
}

.lab-band-copy { max-width: 640px; }

.lab-band-copy h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 10px;
}

.lab-band-copy p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 18px;
}

.lab-band-price-hint {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.lab-band-price-hint a {
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: underline;
}

.lab-band-invite {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 18px;
}

.lab-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.lab-band-login {
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: underline;
}

.lab-band-login:hover { color: var(--text-primary); }

@media (max-width: 599px) {
  .lab-band-card { flex-direction: column; }
}

/* ---------- Process ---------- */

.process {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 40px);
}

.process h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 28px;
  max-width: 22ch;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  position: relative;
  border-top: 2px solid var(--divider);
  padding-top: 16px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.process-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 10px;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 699px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 439px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------- */

.pricing {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 40px);
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--card);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  z-index: -1;
}

.pricing h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 10px;
}

.pricing-sub {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0 0 32px;
}

.pricing-tabs {
  text-align: center;
}

.pricing-tab-nav {
  display: inline-flex;
  max-width: 100%;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}

.pricing-tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pricing-tab-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease;
}

@media (max-width: 480px) {
  .pricing-tab-nav { display: flex; width: 100%; }
  .pricing-tab-btn { flex: 1; padding: 9px 10px; font-size: 12.5px; align-self: center; }
}

.pricing-tab-input:checked + .pricing-tab-btn {
  background: var(--primary-dark);
  color: #fff;
}

.pricing-tab-input:focus-visible + .pricing-tab-btn {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pricing-panel-laboratorio { display: none; }

.pricing-tabs:has(#tab-laboratorio:checked) .pricing-panel-clinica { display: none; }
.pricing-tabs:has(#tab-laboratorio:checked) .pricing-panel-laboratorio { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.price-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.price-tag {
  font-weight: 700;
  font-size: 48px;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.price-tag span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.price-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.price-card .btn { align-self: center; }

.price-card-featured {
  background: var(--primary-container);
  border-color: var(--primary-container);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-badge svg { width: 11px; height: 11px; }

/* ---------- Contact ---------- */

.contact {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--divider);
}

.contact h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 10px;
  max-width: 20ch;
}

.contact-sub {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0 0 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 28px clamp(20px, 4vw, 32px);
}

.contact-field-wide { grid-column: 1 / -1; }

.contact-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 11px 13px;
}

.contact-field textarea { resize: vertical; }

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.contact-status {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-status[data-state="success"] { color: var(--success); font-weight: 600; }
.contact-status[data-state="error"] { color: var(--error); font-weight: 600; }

@media (max-width: 599px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--divider);
}

.faq h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 24px;
}

.faq-list {
  border-top: 1px solid var(--divider);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

.faq-item summary:hover { color: var(--primary-dark); }

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 18px;
  color: var(--primary-dark);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0;
  padding: 0 2px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 62ch;
}

/* ---------- Mission ---------- */

.mission {
  position: relative;
  background: var(--sidebar);
  color: #fff;
  padding: 72px clamp(20px, 4vw, 40px);
  text-align: center;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mission .eyebrow,
.mission-line {
  position: relative;
}

.mission .eyebrow { text-align: center; }

.mission-line {
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.35;
  max-width: 26ch;
  margin: 0 auto;
}

.mission-line em {
  font-style: normal;
  font-weight: 700;
  color: var(--primary-light);
}

/* ---------- Footer ---------- */

.footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 40px) 48px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--divider);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-brand strong { font-weight: 700; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 13.5px;
}

.footer-links a { text-decoration: none; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

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

/* ---------- Responsive ---------- */

@media (max-width: 759px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { order: -1; }
}

@media (min-width: 760px) and (max-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card-featured { grid-column: span 2; }
}
