/* ============================================================
   Nitro4K — luxury black + gold landing site
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-elev: #14140f;
  --card: #1a1a14;
  --card-hover: #20201a;
  --gold: #d4af37;
  --gold-soft: #b8941f;
  --gold-bright: #f0d878;
  --gold-glow: rgba(212, 175, 55, 0.18);
  --gold-line: rgba(212, 175, 55, 0.25);
  --text: #f5f5f0;
  --text-muted: #a8a89c;
  --text-dim: #6f6f66;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --radius: 14px;
  --radius-lg: 20px;
  --max-w: 1100px;
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-bright);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.6em;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

p {
  color: var(--text-muted);
}

/* ---------- Layout helpers ---------- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
}

.brand:hover {
  color: var(--gold-bright);
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--gold);
}

/* On mobile, hide the regular nav links but keep the WhatsApp CTA visible */
.nav > a:not(.nav-cta) {
  display: none;
}

@media (min-width: 768px) {
  .nav > a:not(.nav-cta) {
    display: inline;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--whatsapp);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.nav-cta:hover {
  background: var(--whatsapp-dark);
  color: #fff !important;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: var(--whatsapp-dark);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  color: #0a0a0a;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-glow);
  color: var(--gold-bright);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 80px 0 96px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.04), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-from-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero-from-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-from-label { color: var(--text-muted); }
.hero-from-price { color: var(--gold); font-weight: 800; letter-spacing: 0.01em; }

.hero h1 {
  color: var(--gold-bright);
  background: linear-gradient(135deg, #fff 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 { color: transparent; }
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-cta {
  margin-bottom: 32px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-pills span::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 0 140px;
  }
  .hero .lead {
    font-size: 1.25rem;
  }
}

/* ---------- Grid ---------- */

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.card .icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  color: var(--text);
}

.card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Devices section ---------- */

.devices {
  background: var(--bg-elev);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.device-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s ease;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Pricing ---------- */

.plans-grid {
  align-items: stretch;
}

.plan-card {
  position: relative;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.6);
  box-shadow: var(--shadow-card), 0 16px 48px rgba(212,175,55,0.1);
}

.plan-header {
  padding: 44px 28px 28px;
  background: linear-gradient(170deg, rgba(212,175,55,0.07) 0%, transparent 60%);
}

.plan-duration-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.plan-currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1;
}

.plan-amount {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-pence {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1;
}

.plan-per-month {
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.plan-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  margin: 0 20px;
}

.plan-features {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
  text-align: left;
  flex: 1;
}

.plan-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") no-repeat center / 12px;
  border: 1px solid rgba(212,175,55,0.25);
}

.plan-cta {
  padding: 0 24px 28px;
}

.plan-cta .btn {
  width: 100%;
}

/* Featured card */
.plan-card.featured {
  border-color: var(--gold);
  background: linear-gradient(170deg, rgba(212,175,55,0.12) 0%, var(--card) 65%);
  box-shadow: 0 0 0 1px var(--gold), 0 24px 64px rgba(212,175,55,0.22);
}

.plan-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px var(--gold-bright), 0 28px 72px rgba(212,175,55,0.35);
}

.plan-card.featured .plan-header {
  background: linear-gradient(170deg, rgba(212,175,55,0.18) 0%, transparent 65%);
}

.plan-card.featured .plan-amount {
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.plan-card.featured .plan-currency,
.plan-card.featured .plan-pence {
  color: var(--gold);
}

.plan-card.featured .plan-features li {
  color: var(--text);
}

.plan-card.featured .plan-features li::before {
  background-color: rgba(212,175,55,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0d878' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  border-color: var(--gold);
}

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 0 1px var(--gold), 0 24px 64px rgba(212,175,55,0.18); }
  50%       { box-shadow: 0 0 0 1px var(--gold), 0 24px 64px rgba(212,175,55,0.38); }
}

@media (min-width: 900px) {
  .plan-card.featured {
    transform: scale(1.05);
    z-index: 1;
    animation: cardGlow 3.5s ease-in-out infinite;
  }
  .plan-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
  }
}

.popular-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-savings-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.28);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
}

.plan-savings-badge.featured-savings {
  background: rgba(212,175,55,0.18);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }
.reveal-delay-4 { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq details[open] {
  border-color: var(--gold);
}

.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq .faq-body {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Trust strip ---------- */

.trust {
  background: var(--bg-elev);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trust-item h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #050505;
  border-top: 1px solid var(--gold-line);
  padding: 48px 0 32px;
  text-align: center;
}

.site-footer .brand {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-tag {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ---------- Sticky WhatsApp FAB (used on legal pages) ---------- */

.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

.wa-fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-fab:hover {
  background: var(--whatsapp-dark);
  color: #fff;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

.wa-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.3;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (min-width: 1024px) {
  .wa-fab {
    display: none;
  }
}

/* ---------- Sticky mobile bottom CTA bar ---------- */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.5);
}

.mobile-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  flex-shrink: 1;
  min-width: 0;
}

.mobile-cta-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.mobile-cta-sub {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-cta-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--whatsapp);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  flex-shrink: 0;
  white-space: nowrap;
}

.mobile-cta-action svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 1023px) {
  .mobile-cta-bar { display: flex; }
  body.home { padding-bottom: 84px; }
}

/* ---------- Mobile-first refinements ---------- */

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }

  .hero { padding: 56px 0 64px; }
  .hero .lead { font-size: 0.98rem; margin-bottom: 26px; }
  .hero-cta { margin-bottom: 24px; }
  .hero-cta .btn { width: 100%; max-width: 320px; padding: 16px 24px; }

  .section-subtitle { margin-bottom: 32px; font-size: 0.92rem; }

  .trust-pills { gap: 6px 14px; font-size: 0.82rem; }

  .grid { gap: 14px; }

  .card { padding: 22px 20px; }

  .plan-header { padding: 32px 22px 22px; }
  .plan-amount { font-size: 3rem; }
  .plan-currency, .plan-pence { font-size: 1rem; margin-top: 8px; }
  .plan-features { padding: 16px 20px; }
  .plan-features li { font-size: 0.85rem; padding: 7px 0; }
  .plan-cta { padding: 0 20px 22px; }

  .popular-tag, .plan-savings-badge {
    font-size: 0.6rem;
    padding: 4px 9px;
    top: 12px;
  }
  .popular-tag { right: 12px; }
  .plan-savings-badge { left: 12px; }

  .device-pills { gap: 8px; }
  .pill { padding: 8px 14px; font-size: 0.85rem; }

  .faq summary { padding: 16px 18px; font-size: 0.95rem; }
  .faq .faq-body { padding: 0 18px 18px; font-size: 0.9rem; }

  .trust-item h4 { font-size: 0.9rem; }
  .trust-item p { font-size: 0.8rem; }

  .footer-links { gap: 8px 20px; font-size: 0.88rem; }

  /* Bigger tap targets for any small links */
  a, button { -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2); }
}

@media (max-width: 380px) {
  .mobile-cta-title { font-size: 0.92rem; }
  .mobile-cta-sub { font-size: 0.72rem; }
  .mobile-cta-action { padding: 11px 16px; font-size: 0.85rem; }
}

/* ---------- Legal pages ---------- */

.legal {
  padding: 64px 0 96px;
  max-width: 800px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.legal .updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 32px 0 12px;
}

.legal p,
.legal li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal ul,
.legal ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal a {
  color: var(--gold);
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin-top: 32px;
}

.contact-card h2 {
  margin-top: 0;
  color: var(--gold);
}

.contact-card .wa-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 24px;
  letter-spacing: 0.04em;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
