@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --blue: #264A72;
  --coral: #E96F66;
  --cream: #F4EFD9;
  --accent: #3D6B9C;
  --gray: #FBFBFC;
  --bg-gray: #F3F4F6;
}

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

html { font-size: 16px; }

body {
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  background: var(--gray);
  color: var(--blue);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--blue);
  color: var(--cream);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .625rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .625rem; }
.brand-logo {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: 1.0625rem; font-weight: 600; color: var(--cream); }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: rgba(244,239,217,.8);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); }

.btn-order {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--cream);
  color: var(--blue);
  font-weight: 700;
  font-size: .875rem;
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-order:hover { background: rgba(244,239,217,.88); transform: translateY(-1px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  padding: .5rem 1.5rem;
  font-family: inherit;
  font-size: .875rem;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.btn-primary { background: var(--blue); color: var(--cream); }
.btn-primary:hover { background: var(--accent); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #d45e55; }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid rgba(38,74,114,.1); margin: 2rem 0; }

/* ── Section common ── */
.section { padding: 4rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ── Hero ── */
.hero { background: var(--gray); padding: 2rem 0 4rem; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-title { font-size: 2.5rem; font-weight: 600; line-height: 1.25; color: var(--blue); }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.5rem; } }
.hero-coral { color: var(--coral); font-size: 1.5rem; font-weight: 700; display: block; }
.hero-desc { margin-top: 1.25rem; font-size: .875rem; line-height: 1.75; color: rgba(38,74,114,.8); max-width: 28rem; }
.hero-btns { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-img { border-radius: 1rem; overflow: hidden; }
.hero-img img { border-radius: 1rem; width: 100%; }

/* ── Three Steps ── */
.steps-section {
  background: var(--bg-gray);
  border-radius: 1.5rem;
  padding: 3rem 1.5rem;
  margin: 0 1.25rem;
}
@media (min-width: 768px) { .steps-section { padding: 3.5rem 3rem; margin: 0 2rem; } }
.steps-inner { max-width: 1280px; margin: 0 auto; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .steps-inner { grid-template-columns: 20rem 1fr; align-items: start; } }
.steps-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bg-gray);
  padding: .25rem 1rem;
  border-radius: 9999px;
  font-size: .75rem; font-weight: 500; color: rgba(38,74,114,.8);
}
.steps-heading { font-size: 1.875rem; font-weight: 600; margin-top: .75rem; line-height: 1.3; }
@media (min-width: 640px) { .steps-heading { font-size: 2.25rem; } }
.steps-desc { font-size: .875rem; line-height: 1.75; color: rgba(38,74,114,.7); margin-top: .75rem; }
.step-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.step-card:hover { border-color: rgba(233,111,102,.3); box-shadow: 0 20px 45px -28px rgba(38,74,114,.5); }
.step-icon {
  width: 3rem; height: 3rem; flex-shrink: 0;
  background: var(--bg-gray);
  border-radius: .75rem;
  display: grid; place-items: center;
  color: var(--blue);
}
.step-icon svg { width: 1.5rem; height: 1.5rem; }
.step-title { font-size: 1.0625rem; font-weight: 600; }
.step-body { font-size: .8125rem; line-height: 1.7; color: rgba(38,74,114,.7); margin-top: .375rem; }

/* ── Services ── */
.services-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff;
  border: 1px solid rgba(38,74,114,.1);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(31,41,55,.04);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(38,74,114,.12); }
.service-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--bg-gray);
  border-radius: .75rem;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(38,74,114,.1);
}
.service-icon svg { width: 1.25rem; height: 1.25rem; color: var(--blue); }
.service-title { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.service-desc { font-size: .8125rem; line-height: 1.7; color: rgba(38,74,114,.7); flex: 1; }
.service-cta { margin-top: 1.5rem; }

/* ── Health Certificate ── */
.health-section { background: var(--bg-gray); padding: 4rem 0; }
@media (min-width: 640px) { .health-section { padding: 5rem 0; } }
.health-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .health-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; } }
.health-heading { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
@media (min-width: 640px) { .health-heading { font-size: 1.875rem; } }
@media (min-width: 1024px) { .health-heading { font-size: 2.25rem; } }
.health-body { font-size: 1rem; line-height: 2; color: rgba(38,74,114,.8); }
.health-img { border-radius: 1.5rem; overflow: hidden; min-height: 22rem; position: relative; box-shadow: 0 2px 8px rgba(38,74,114,.08); }
.health-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Subscription ── */
.sub-section { background: var(--bg-gray); padding: 4rem 0; }
.sub-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.sub-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff;
  padding: .25rem 1rem;
  border-radius: 9999px;
  font-size: .75rem; font-weight: 500;
  box-shadow: 0 1px 4px rgba(38,74,114,.08);
  margin-bottom: 1rem;
}
.sub-heading { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
@media (min-width: 640px) { .sub-heading { font-size: 1.875rem; } }
@media (min-width: 1024px) { .sub-heading { font-size: 2.25rem; } }
.sub-body { font-size: .875rem; line-height: 2; color: rgba(38,74,114,.7); max-width: 40rem; margin: 0 auto 1.5rem; }

/* ── Why Choose Us ── */
.why-section { background: var(--bg-gray); padding: 4rem 0; }
.why-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.why-badge {
  display: inline-flex;
  background: #fff;
  padding: .25rem 1rem;
  border-radius: 9999px;
  font-size: .75rem; font-weight: 500;
  margin-bottom: .75rem;
  box-shadow: 0 1px 4px rgba(38,74,114,.08);
}
.why-heading { font-size: 1.875rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.3; }
@media (min-width: 640px) { .why-heading { font-size: 2.25rem; } }
.why-desc { font-size: .875rem; line-height: 1.75; color: rgba(38,74,114,.7); max-width: 28rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(31,41,55,.04);
  transition: transform .2s;
  border: 1px solid rgba(38,74,114,.05);
}
.feature-card:hover { transform: translateY(-3px); }
.feature-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--bg-gray);
  border-radius: .75rem;
  display: grid; place-items: center;
  margin-bottom: .75rem;
}
.feature-icon svg { width: 1.25rem; height: 1.25rem; color: var(--coral); }
.feature-title { font-size: .9375rem; font-weight: 600; margin-bottom: .375rem; }
.feature-body { font-size: .8125rem; line-height: 1.7; color: rgba(38,74,114,.7); }
.why-img { border-radius: 1rem; overflow: hidden; min-height: 24rem; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Footer ── */
footer {
  background: var(--blue);
  color: var(--cream);
  margin-top: 4rem;
}
.footer-main { max-width: 1280px; margin: 0 auto; padding: 3rem 1.25rem; }
@media (min-width: 768px) { .footer-main { padding: 3rem 2rem; } }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo { width: 4rem; height: 4rem; border-radius: 50%; overflow: hidden; background: var(--cream); }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name { font-size: 1.0625rem; font-weight: 600; }
.footer-about { font-size: .875rem; line-height: 1.75; color: rgba(244,239,217,.8); }
.footer-col-title { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .875rem; color: rgba(244,239,217,.8); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(244,239,217,.8); margin-bottom: .75rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .1rem; }
.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s, transform .15s;
}
.social-link:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.social-link svg { width: 1rem; height: 1rem; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto; padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-size: .875rem; color: rgba(244,239,217,.8); text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; padding: 1.5rem 2rem; }
}
.footer-bottom-links { display: flex; align-items: center; gap: 1rem; }
.footer-bottom-links a { color: rgba(244,239,217,.8); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--cream); }
.footer-sep { opacity: .4; }

/* ── Page Hero (inner pages) ── */
.page-hero { padding: 3rem 0; }
.page-hero-card {
  background: rgba(255,255,255,.95);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 35px 90px -45px rgba(15,23,42,.35);
  border: 1px solid rgba(38,74,114,.1);
}
@media (min-width: 768px) { .page-hero-card { padding: 2.5rem; } }
.page-hero-tag { font-size: .75rem; color: var(--coral); display: block; margin-bottom: 1rem; }
.page-hero-title { font-size: 2rem; font-weight: 900; line-height: 1.2; color: var(--blue); }
@media (min-width: 640px) { .page-hero-title { font-size: 2.75rem; } }
.page-hero-body { font-size: .875rem; line-height: 1.9; color: rgba(38,74,114,.8); margin-top: 1.25rem; max-width: 44rem; }

/* ── Services page ── */
.services-hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .services-hero-grid { grid-template-columns: 5fr 7fr; } }
.services-full-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .services-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .services-full-grid { grid-template-columns: repeat(3, 1fr); } }
.service-full-card {
  background: #fff;
  border-radius: 2rem;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(31,41,55,.04);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  border: 1px solid transparent;
  display: flex; flex-direction: column;
}
.service-full-card:hover { border-color: rgba(233,111,102,.2); transform: translateY(-4px); }

/* ── Contact ── */
.contact-card { background: rgba(255,255,255,.5); border-radius: 2rem; padding: 2rem; box-shadow: 0 12px 40px rgba(38,74,114,.1); border: 1px solid rgba(38,74,114,.1); }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { width: 2.5rem; height: 2.5rem; background: rgba(38,74,114,.06); border-radius: .75rem; display: grid; place-items: center; flex-shrink: 0; }
.contact-icon svg { width: 1.125rem; height: 1.125rem; color: var(--blue); }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .375rem; color: var(--blue); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: .625rem 1rem;
  border: 1px solid rgba(38,74,114,.2);
  border-radius: .75rem;
  font-family: inherit;
  font-size: .875rem;
  background: rgba(255,255,255,.8);
  color: var(--blue);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--blue); }
.form-field textarea { resize: vertical; min-height: 7rem; }

/* ── FAQ ── */
.faq-card { background: #fff; border-radius: 1rem; border: 1px solid rgba(38,74,114,.1); box-shadow: 0 30px 60px -30px rgba(38,74,114,.2); }
.faq-inner { display: grid; gap: 2rem; padding: 2rem; }
@media (min-width: 768px) { .faq-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 2.5rem; } }
.faq-categories { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.faq-cat-btn {
  padding: .25rem .875rem;
  border-radius: 9999px;
  font-size: .8125rem;
  border: 1px solid rgba(38,74,114,.2);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  transition: background .15s, color .15s;
  font-family: inherit;
}
.faq-cat-btn.active { background: var(--blue); color: var(--cream); border-color: var(--blue); }
.faq-item { padding: 1rem 0; border-bottom: 1px solid rgba(38,74,114,.1); }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-size: .9375rem; font-weight: 500; color: var(--blue); margin-bottom: .5rem; display: flex; justify-content: space-between; align-items: start; gap: 1rem; cursor: pointer; }
.faq-answer { font-size: .8125rem; line-height: 1.9; color: rgba(38,74,114,.75); display: none; margin-top: .375rem; }
.faq-item.open .faq-answer { display: block; }

/* ── Pricing ── */
.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid rgba(38,74,114,.1);
  box-shadow: 0 4px 24px rgba(38,74,114,.06);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(38,74,114,.12); }
.pricing-card.featured { border-color: var(--coral); box-shadow: 0 20px 50px rgba(233,111,102,.2); }
.pricing-badge { font-size: .6875rem; font-weight: 600; background: var(--coral); color: #fff; padding: .2rem .75rem; border-radius: 9999px; display: inline-block; margin-bottom: 1rem; }
.pricing-name { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--blue); margin: .75rem 0; }
.pricing-price sup { font-size: 1rem; font-weight: 600; vertical-align: super; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: rgba(38,74,114,.6); }
.pricing-desc { font-size: .8125rem; line-height: 1.7; color: rgba(38,74,114,.7); margin-bottom: 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: .75rem; flex: 1; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: .625rem; font-size: .8125rem; }
.pricing-feature svg { width: 1rem; height: 1rem; color: var(--coral); flex-shrink: 0; margin-top: .1rem; }

/* ── Process ── */
.process-timeline { display: flex; flex-direction: column; gap: 2rem; position: relative; }
.process-item { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .process-item { grid-template-columns: 1fr 1fr; align-items: stretch; } }
@media (min-width: 768px) { .process-item:nth-child(even) .process-text { order: 2; } }
@media (min-width: 768px) { .process-item:nth-child(even) .process-img { order: 1; } }
.process-card {
  background: rgba(255,255,255,.9);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(38,74,114,.08);
  border: 1px solid rgba(38,74,114,.08);
  display: flex; flex-direction: column;
}
.process-step { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.process-title { font-size: 1.125rem; font-weight: 700; color: var(--blue); margin-bottom: .75rem; }
.process-body { font-size: .875rem; line-height: 1.8; color: rgba(38,74,114,.75); }
.process-img-wrap { border-radius: 1.25rem; overflow: hidden; min-height: 16rem; }
.process-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── About ── */
.about-actions { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .about-actions { flex-direction: row; align-items: center; } }

/* ── Gathering ── */
.gathering-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .gathering-grid { grid-template-columns: repeat(2, 1fr); } }
.gathering-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(38,74,114,.1);
  box-shadow: 0 10px 40px rgba(38,74,114,.08);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.gathering-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(38,74,114,.14); }
.gathering-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.gathering-icon svg { width: 1.25rem; height: 1.25rem; }

/* ── Entertainment ── */
.entertainment-hero { padding: 3rem 0; text-align: center; }

/* ── Legal pages ── */
.legal-wrap { max-width: 56rem; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
@media (min-width: 768px) { .legal-wrap { padding: 2rem 2rem 4rem; } }
.legal-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(38,74,114,.1); }
.legal-title { font-size: 2rem; font-weight: 800; color: var(--blue); }
.legal-meta { font-size: .8125rem; color: rgba(38,74,114,.5); margin-top: .5rem; }
.legal-lang-tabs { display: flex; gap: .75rem; margin-top: 1rem; }
.lang-tab {
  padding: .25rem .875rem;
  border-radius: 9999px;
  font-size: .8125rem;
  border: 1px solid rgba(38,74,114,.2);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.lang-tab.active { background: var(--blue); color: var(--cream); border-color: var(--blue); }
.legal-content { font-size: .9375rem; line-height: 1.8; color: #404040; }
.legal-content h2 { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin: 3rem 0 1rem; }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; color: #2d2d2d; margin: 2rem 0 .75rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { padding-right: 1.5rem; margin: .75rem 0 1.5rem; }
.legal-content li { margin-bottom: .6rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-callout {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: #f4f0e8;
  border-right: 3px solid #b85c1d;
  border-radius: 4px;
}
.legal-callout-warn { background: #fff8f0; border-right-color: #c0392b; }
.legal-callout-label { font-size: .7rem; letter-spacing: .15em; color: #b85c1d; font-weight: 600; margin-bottom: .5rem; display: block; }
.legal-content a { color: #b85c1d; text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: #1a1a1a; font-weight: 600; }
.legal-num-badge {
  display: inline-block;
  font-size: .7rem; letter-spacing: .15em; color: #b85c1d;
  font-weight: 600;
  vertical-align: middle;
  margin-left: .75rem;
  padding: .2rem .5rem;
  border: 1px solid #b85c1d;
  border-radius: 4px;
}
.lang-section { display: none; }
.lang-section.active { display: block; }

/* Responsive nav */
@media (max-width: 1023px) { .nav-links { display: none; } }

/* Utility */
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.gap-2 { gap: .5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.section-title { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: .5rem; }
@media (min-width: 640px) { .section-title { font-size: 1.875rem; } }
.section-desc { font-size: .875rem; color: rgba(38,74,114,.7); margin-bottom: 2rem; line-height: 1.75; }
.section-header { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-start; justify-content: space-between; margin-bottom: 2rem; }
