/* ============================================================================
   SSAnkang Health — Main Stylesheet
   Teal (medical) primary + amber CTA, modern, responsive, WCAG-AA friendly.
   ============================================================================ */

:root {
  /* Primary (Teal) */
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-darker: #115e59;
  --primary-light: #14b8a6;
  --primary-xlight: #ccfbf1;
  --primary-xxlight: #f0fdfa;

  /* Accents */
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fde68a;

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --bg-muted: #f3f4f6;
  --surface: #ffffff;
  --text: #0f172a;
  --text-soft: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e5e7eb;
  --border-strong: #d1d5db;

  /* Dark section */
  --dark: #0f172a;
  --dark-soft: #1e293b;

  /* Status */
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  /* Shape */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --shadow: 0 4px 12px rgba(15,23,42,.08);
  --shadow-md: 0 10px 30px rgba(15,23,42,.10);
  --shadow-lg: 0 20px 40px rgba(15,23,42,.12);
  --shadow-xl: 0 30px 60px rgba(15,23,42,.15);
  --shadow-primary: 0 10px 30px -8px rgba(13,148,136,.5);
  --shadow-accent: 0 10px 30px -8px rgba(245,158,11,.5);

  /* Layout */
  --header-height: 72px;
  --container: 1240px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
ul, ol { list-style: none; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
.text-center { text-align: center; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-soft); }

.eyebrow {
  display: inline-block;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.eyebrow-on-dark {
  background: rgba(20, 184, 166, 0.2);
  color: var(--primary-xlight);
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; color: var(--text-muted); }
.section-head.align-left { margin-left: 0; text-align: left; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.95rem;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 15px 40px -10px rgba(13,148,136,.6); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,.2);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.brand-logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff; font-size: 1.1rem;
  box-shadow: var(--shadow-primary);
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--primary); background: var(--primary-xxlight); }
.main-nav a.active { color: var(--primary); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; padding: 8px; }
@media (max-width: 960px) {
  .main-nav, .header-cta .btn { display: none; }
  .mobile-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: var(--header-height) 0 0 0; background: #fff; z-index: 99; padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0f766e 100%);
  color: #fff;
  padding: 88px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(20,184,166,0.3), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(13,148,136,0.2), transparent 40%);
  opacity: 1;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-xlight);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 24px;
}
.hero h1 span { color: var(--primary-light); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 520px;
}
.hero-stat {
  text-align: left;
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero form card */
.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-card h3 { font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 6px; }
.hero-card .lead { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 22px; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { max-width: 100%; }
}

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-soft); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-xlight);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-message { padding: 12px 14px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 12px; display: none; }
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-xlight); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-xlight), #fff);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  margin-top: 14px;
}
.card-link:hover { gap: 10px; }

.grid-cards { display: grid; gap: 24px; }
.grid-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-cards.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px) { .grid-cards.cols-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) {
  .grid-cards.cols-2, .grid-cards.cols-3, .grid-cards.cols-4 { grid-template-columns: 1fr; }
}

/* ── Hospital card ── */
.hospital-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.hospital-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hospital-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-muted);
}
.hospital-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.hospital-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.hospital-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.hospital-body p { font-size: 0.92rem; color: var(--text-muted); flex: 1; }
.cert-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.cert-badge {
  background: var(--primary-xxlight);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hospital-stats {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hospital-stats strong { color: var(--text); font-size: 0.95rem; }

/* ── Doctor card ── */
.doctor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.doctor-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--primary-xlight);
  background: var(--bg-muted);
}
.doctor-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.doctor-card .title { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.doctor-tags span {
  background: var(--bg-muted);
  color: var(--text-soft);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ── Case / testimonial ── */
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}
.case-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-xlight);
  font-weight: 900;
}
.case-card .rating { color: var(--accent); margin-bottom: 12px; }
.case-card p.quote { font-size: 1.02rem; color: var(--text); line-height: 1.7; font-style: italic; }
.case-card .meta { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.case-card .meta-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-xlight); color: var(--primary-dark); display: grid; place-items: center; font-weight: 700; }
.case-card .meta-info strong { display: block; font-size: 0.92rem; }
.case-card .meta-info span { font-size: 0.82rem; color: var(--text-muted); }

/* ── Blog card ── */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--bg-muted); }
.blog-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card .cat { color: var(--primary); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.blog-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q .icon { color: var(--primary); transition: transform var(--transition); font-size: 1.1rem; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 300ms ease, padding 300ms ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 20px; }
.faq-a p { color: var(--text-soft); }

/* ── Process steps ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.process-step .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-xlight);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; }
.cta-band .btn-accent { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ── Page head (for interior pages) ── */
.page-head {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-darker) 100%);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(20,184,166,0.25), transparent 50%);
}
.page-head .container { position: relative; }
.page-head .eyebrow { background: rgba(20,184,166,0.2); color: var(--primary-xlight); }
.page-head h1 { color: #fff; margin-bottom: 14px; }
.page-head p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 720px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--primary-light); }
.footer-news input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05); color: #fff;
  margin-bottom: 10px;
}
.footer-news input::placeholder { color: rgba(255,255,255,0.4); }
.footer-news input:focus { outline: none; border-color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 0.95rem;
}
.socials a:hover { background: var(--primary); color: #fff; }

/* ── Floating CTA ── */
.float-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-cta a {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 1.2rem;
}
.float-cta a:hover { transform: translateY(-2px) scale(1.05); }
.float-cta .whatsapp { background: #25d366; }
.float-cta .email { background: var(--primary); }

/* ── Utilities ── */
.bg-soft { background: var(--bg-soft); }
.bg-muted { background: var(--bg-muted); }
.bg-dark { background: var(--dark); color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: rgba(255,255,255,0.8); }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; margin-bottom: 16px; }
.prose h3 { margin-top: 28px; margin-bottom: 12px; }
.prose p { margin-bottom: 16px; line-height: 1.8; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; color: var(--text-soft); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 20px; background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0; color: var(--text-soft); font-style: italic;
}

/* RTL support */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .hero-grid,
html[dir="rtl"] .footer-grid { direction: rtl; }
