/* ============ Design tokens ============ */
:root {
  --navy-900: #0a1531;
  --navy-800: #0f1f4b;
  --navy-700: #16295e;
  --navy-600: #22397a;
  --navy-500: #2f4a97;

  --gold-700: #9c7226;
  --gold-600: #b8863a;
  --gold-500: #cc9c4d;
  --gold-300: #e8c988;
  --gold-100: #f7ecd6;

  --gray-900: #12151c;
  --gray-700: #444b58;
  --gray-600: #5b6472;
  --gray-400: #8b93a1;
  --gray-200: #e4e7ec;
  --gray-50: #f7f8fa;
  --white: #ffffff;

  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-input: 8px;

  --shadow-sm: 0 2px 10px rgba(15, 31, 75, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 31, 75, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 31, 75, 0.18);

  --font-display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container-w: 1240px;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
svg { flex-shrink: 0; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.icon { width: 1.5rem; height: 1.5rem; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: rgba(255, 255, 255, 0.82);
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section-dark .eyebrow { color: var(--gold-300); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
h2.section-title { font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.6rem); font-weight: 700; }
.section-sub { margin-top: 14px; font-size: 1.05rem; color: var(--gray-600); }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.72); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(15, 31, 75, 0.18);
  color: var(--navy-800);
}
.btn-outline:hover { border-color: var(--navy-800); background: rgba(15, 31, 75, 0.04); }
.section-dark .btn-outline,
.hero .btn-outline { border-color: rgba(255, 255, 255, 0.3); color: var(--white); }
.section-dark .btn-outline:hover,
.hero .btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn .icon { width: 1.1rem; height: 1.1rem; }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 31, 75, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 42px; width: auto; }
.nav-brand-text { font-family: var(--font-display); line-height: 1.15; }
.nav-brand-text .name { display: block; font-weight: 700; font-size: 1.02rem; color: var(--navy-900); }
.nav-brand-text .tag { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy-900); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-900);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.mobile-drawer-close { background: none; border: none; color: var(--white); width: 40px; height: 40px; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-drawer nav a.active { color: var(--gold-300); }
.mobile-drawer .btn-primary { margin-top: 32px; align-self: flex-start; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right .btn { display: none; }
}

/* ============ Hero (Home) ============ */
.hero {
  padding: 64px 0 120px;
  overflow: hidden;
  background: var(--navy-900);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 82% 12%, rgba(184, 134, 58, 0.28), transparent 60%),
    radial-gradient(50% 45% at 10% 90%, rgba(47, 74, 151, 0.45), transparent 65%);
  pointer-events: none;
}
.hero-slash {
  position: absolute;
  top: -10%;
  left: 61%;
  width: 2px;
  height: 130%;
  background: linear-gradient(180deg, transparent, var(--gold-500) 30%, var(--gold-300) 50%, var(--gold-500) 70%, transparent);
  transform: rotate(14deg);
  opacity: 0.55;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(232, 201, 136, 0.1);
  border: 1px solid rgba(232, 201, 136, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem);
  font-weight: 800;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 22px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 12px; margin-top: 44px; flex-wrap: wrap; }
.hero-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}
.hero-chip .icon { width: 1rem; height: 1rem; color: var(--gold-300); }

.hero-visual { position: relative; height: 460px; }
.stat-card {
  position: absolute;
  width: 240px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.stat-card .icon-badge {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  margin-bottom: 14px;
}
.stat-card .icon-badge .icon { width: 1.2rem; height: 1.2rem; }
.stat-card .amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.stat-card .label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.62); margin-top: 2px; }

.stat-card--1 { top: 0; left: 0; }
.stat-card--2 { top: 120px; left: 190px; }
.stat-card--3 { top: 260px; left: 20px; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
}
@media (max-width: 560px) {
  .stat-card { width: 200px; }
  .stat-card--2 { left: 120px; }
}

/* ============ Trust strip (sits below hero, not inside it) ============ */
.trust-strip { padding: 40px 0; border-bottom: 1px solid var(--gray-200); }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.trust-chip {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.86rem; font-weight: 500; color: var(--navy-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
}
.trust-chip .icon { width: 1.05rem; height: 1.05rem; color: var(--gold-600); }

/* ============ Page hero (inner pages) ============ */
.page-hero {
  padding: 72px 0 88px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -6%;
  width: 46%; height: 160%;
  background: linear-gradient(180deg, transparent, rgba(232, 201, 136, 0.16), transparent);
  transform: rotate(14deg);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb .icon { width: 0.8rem; height: 0.8rem; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem); position: relative; z-index: 1; max-width: 22ch; }
.page-hero .section-sub { color: rgba(255, 255, 255, 0.72); max-width: 56ch; position: relative; z-index: 1; margin-top: 16px; font-size: 1.05rem; }

/* ============ Cards ============ */
.grid { display: grid; gap: 28px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800);
  color: var(--gold-300);
  margin-bottom: 20px;
}
.card .icon-badge .icon { width: 1.5rem; height: 1.5rem; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.96rem; color: var(--gray-600); }
.card a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: 0.9rem; color: var(--navy-800); }
.card a.card-link .icon { width: 1rem; height: 1rem; transition: transform 0.25s ease; }
.card a.card-link:hover .icon { transform: translateX(4px); }

.feature-list { margin-top: 16px; display: grid; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: var(--gray-600); }
.feature-list li .icon { width: 1rem; height: 1rem; color: var(--gold-600); margin-top: 3px; flex-shrink: 0; }

/* Funding scheme cards */
.scheme-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scheme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.scheme-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.scheme-card .icon-badge {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-100); color: var(--gold-700);
}
.scheme-card .icon-badge .icon { width: 1.3rem; height: 1.3rem; }
.scheme-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.scheme-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.scheme-card .scheme-full { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 12px; }
.scheme-card p { font-size: 0.92rem; color: var(--gray-600); }

/* ============ Process / timeline ============ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process::before {
  content: "";
  position: absolute;
  top: 26px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--gray-200);
}
.process-step { text-align: center; padding: 0 16px; position: relative; }
.process-step .num {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  position: relative; z-index: 1;
}
.process-step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--gray-600); }
@media (max-width: 800px) {
  .process { grid-template-columns: 1fr; gap: 32px; }
  .process::before { display: none; }
}

/* ============ Why choose us list ============ */
.check-list { display: grid; gap: 18px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-item .icon-badge {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--navy-800); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-item .icon-badge .icon { width: 0.95rem; height: 0.95rem; }
.check-item p { font-weight: 500; color: var(--gray-700); }

/* ============ CTA banner ============ */
.cta-banner {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 90% 20%, rgba(232, 201, 136, 0.22), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); max-width: 20ch; }
.cta-banner p { color: rgba(255, 255, 255, 0.7); margin-top: 10px; }
@media (max-width: 760px) { .cta-banner { flex-direction: column; text-align: center; padding: 44px 28px; } }

/* ============ Contact layout ============ */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-card); padding: 32px; margin-bottom: 24px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-item .icon-badge { width: 42px; height: 42px; border-radius: 11px; background: var(--gray-50); color: var(--gold-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item .icon-badge .icon { width: 1.2rem; height: 1.2rem; }
.info-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 0.9rem; color: var(--gray-600); }

.map-frame { width: 100%; height: 280px; border: 0; border-radius: var(--radius-card); overflow: hidden; }

/* ============ Forms ============ */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-input);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184, 134, 58, 0.15);
}
.field .error-text {
  font-size: 0.8rem;
  color: #b3261e;
  margin-top: 6px;
  display: none;
}
.field.invalid input,
.field.invalid select { border-color: #b3261e; }
.field.invalid .error-text { display: block; }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--gray-400); margin-top: 14px; text-align: center; }

/* ============ Footer ============ */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.65); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 40px; }
.footer-brand .name { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1rem; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.02em; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 14px; }
.footer-contact-item .icon { width: 1.05rem; height: 1.05rem; color: var(--gold-300); margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold-300); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ Floating WhatsApp ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 300;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}
.whatsapp-float .icon { width: 1.8rem; height: 1.8rem; }
.whatsapp-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 560px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* ============ Legal pages ============ */
.legal-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--gray-600); font-size: 0.98rem; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; }
.legal-content ul li { margin-bottom: 8px; }
.legal-updated { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 40px; }

/* ============ Reveal animation base state ============ */
.reveal { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-slash, .whatsapp-float::before { animation: none; }
}
