/* ============================================================
   WapiConnect — styles.css
   Single stylesheet for all pages.
   Primary green: #22c55e / #4ade80
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Inter", sans-serif; }

body {
  color: #e2e8f0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.2), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.2), transparent 45%),
    linear-gradient(180deg, #020617 0%, #02171f 100%);
  min-height: 100vh;
}

/* ── Navbar ── */

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

header {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; }

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: -0.5px;
  text-decoration: none;
}

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  padding: 8px 14px;
  text-decoration: none;
  color: #94a3b8;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s;
}
nav a:hover { color: #fff; }

.nav-cta {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #000 !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 9px !important;
}

/* ── Hamburger / mobile nav ── */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #94a3b8;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  text-decoration: none;
  color: #94a3b8;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── Buttons ── */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: black;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(34, 197, 94, 0.45);
}

.btn-ghost {
  color: #94a3b8;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }

/* ── Back link (legal pages) ── */

.back-link {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.back-link:hover { color: #fff; }

/* ── Section / page badge ── */

.section-badge,
.page-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Footer ── */

footer {
  padding: 40px 0;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer a { color: #94a3b8; text-decoration: none; }
footer a:hover { color: #fff; }

/* ── Responsive: collapse nav to hamburger ── */

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
}


/* ============================================================
   index.html
   ============================================================ */

.container {
  width: 1200px;
  max-width: 90%;
  margin: auto;
}

/* ── Trial Banner ── */

.trial-banner {
  background: linear-gradient(90deg, #e2e8f0, #c7d2fe);
  padding: 14px 0;
}

.trial-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.trial-content img { width: 60px; flex-shrink: 0; }

.trial-text { color: #111827; font-weight: 500; font-size: 18px; }
.trial-text span { color: #2563eb; font-weight: 700; }

/* ── Hero ── */

.hero {
  padding: 90px 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text { max-width: 550px; flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.hero h1 { font-size: 52px; line-height: 1.15; margin-bottom: 20px; }

.hero h1 span {
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p { font-size: 18px; color: #9ca3af; margin-bottom: 34px; line-height: 1.7; }

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── API Demo Box ── */

.api-box {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 28px;
  border-radius: 16px;
  width: 420px;
  min-width: 0;
  font-family: monospace;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  text-align: left;
}

.api-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e293b;
}

.api-dot { width: 12px; height: 12px; border-radius: 50%; }

.api-method {
  font-size: 12px;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: auto;
}

.api-endpoint { font-size: 14px; color: #94a3b8; font-family: monospace; }

.api-box pre { color: #e5e7eb; font-size: 14px; line-height: 1.7; overflow-x: auto; text-align: left; }

.api-response {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #1e293b;
  font-size: 13px;
  color: #4ade80;
  font-family: monospace;
}

/* ── Features ── */

.features { padding: 40px 0; text-align: center; }
.features h2 { font-size: 38px; margin-bottom: 14px; }
.features .sub {
  color: #94a3b8;
  font-size: 17px;
  margin-bottom: 60px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: left;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
  border-color: rgba(74, 222, 128, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon i { width: 22px; height: 22px; color: #4ade80; }

.feature-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.feature-tag-soon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #818cf8;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 3px 9px;
  border-radius: 6px;
}

.feature h3 { margin-bottom: 10px; font-size: 17px; }
.feature p { color: #94a3b8; font-size: 14px; line-height: 1.65; }

/* ── Use Cases ── */

.usecases { padding: 40px 0; text-align: center; }
.usecases h2 { font-size: 36px; margin-bottom: 14px; }
.usecases .sub { color: #94a3b8; font-size: 16px; margin-bottom: 50px; }

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

.usecase-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 28px 20px;
  transition: 0.3s;
}

.usecase-card:hover { border-color: rgba(74, 222, 128, 0.2); transform: translateY(-4px); }
.usecase-card i { width: 28px; height: 28px; color: #4ade80; margin-bottom: 14px; }
.usecase-card h4 { font-size: 15px; margin-bottom: 8px; }
.usecase-card p { font-size: 13px; color: #94a3b8; line-height: 1.55; }

/* ── Stats ── */

.stats { padding: 60px 0; }

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

.stat-card {
  text-align: center;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 30px 20px;
}

.stat-number { font-size: 40px; font-weight: 700; color: #4ade80; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: #94a3b8; }

/* ── Pricing ── */

.pricing { padding: 40px 0; text-align: center; }
.pricing h2 { font-size: 38px; margin-bottom: 14px; }
.pricing .sub { color: #94a3b8; font-size: 16px; margin-bottom: 50px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.price-card {
  background: rgba(15, 23, 42, 0.6);
  padding: 38px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: 0.3s;
  text-align: left;
}

.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15); }

.price-card.featured {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(15, 23, 42, 0.9);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-desc { font-size: 13px; color: #64748b; margin-bottom: 18px; }
.price { font-size: 44px; font-weight: 700; color: #4ade80; line-height: 1; }
.price sub { font-size: 16px; color: #64748b; font-weight: 400; }
.price-period { font-size: 13px; color: #64748b; margin-bottom: 24px; margin-top: 4px; }

.feature-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #cbd5e1; }
.feature-list li i { width: 16px; height: 16px; color: #4ade80; flex-shrink: 0; }

.price-card .btn { width: 100%; text-align: center; padding: 13px 20px; }

/* ── CTA ── */

.cta {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
}

.cta h2 { font-size: 36px; margin-bottom: 14px; }
.cta p { font-size: 17px; margin-bottom: 32px; opacity: 0.85; }

/* ── index.html Responsive ── */

@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .api-box { width: 360px; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 60px 0; }
  .hero-text { max-width: 100%; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .hero-actions { justify-content: center; }
  .hero-badge { margin: 0 auto 20px; }
  .api-box { width: 100%; max-width: 480px; margin: 0 auto; }
  .features { padding: 70px 0; }
  .features h2 { font-size: 30px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing h2 { font-size: 30px; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .trial-text { font-size: 15px; }
  .trial-content img { width: 48px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .btn { padding: 13px 22px; font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features h2, .pricing h2, .usecases h2 { font-size: 26px; }
  .cta h2 { font-size: 26px; }
  .stat-number { font-size: 32px; }
  .api-box { padding: 20px 16px; font-size: 13px; }
}


/* ============================================================
   docs.html
   ============================================================ */

/* docs.html overrides header to be full-width padded */
.docs-header {
  max-width: 1200px;
  margin: auto;
  padding: 18px 5%;
}

/* ── Layout ── */

.docs-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 48px;
  min-height: calc(100vh - 65px);
}

/* ── Sidebar ── */

.docs-sidebar {
  width: 240px;
  flex-shrink: 0;
  padding: 40px 0;
  position: sticky;
  top: 65px;
  height: calc(100vh - 65px);
  overflow-y: auto;
}

.docs-sidebar::-webkit-scrollbar { width: 4px; }
.docs-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.sidebar-section { margin-bottom: 28px; }

.sidebar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 10px;
  padding-left: 4px;
}

.sidebar-link {
  display: block;
  padding: 6px 8px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  transition: 0.2s;
  font-weight: 500;
}

.sidebar-link:hover { color: #e2e8f0; background: rgba(255,255,255,0.04); }
.sidebar-link.active { color: #4ade80; background: rgba(34,197,94,0.1); }

/* ── Content ── */

.docs-content { flex: 1; padding: 48px 0 80px; min-width: 0; }

.docs-hero {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.docs-hero .badge {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.docs-hero h1 { font-size: 40px; line-height: 1.2; margin-bottom: 14px; }

.docs-hero h1 span {
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.docs-hero p { color: #94a3b8; font-size: 16px; line-height: 1.7; max-width: 580px; }

/* ── Quick Links ── */

.quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }

.quick-link {
  background: rgba(15,23,42,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.quick-link:hover { border-color: rgba(74,222,128,0.25); background: rgba(15,23,42,0.8); transform: translateY(-3px); }
.quick-link i { color: #4ade80; margin-bottom: 10px; display: block; }
.quick-link h4 { font-size: 14px; margin-bottom: 4px; }
.quick-link p { font-size: 12px; color: #64748b; }

/* ── Doc Sections ── */

.docs-section { margin-bottom: 64px; }

.docs-section h2 {
  font-size: 26px;
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.docs-section h3 { font-size: 18px; margin: 36px 0 12px; color: #e2e8f0; }
.docs-section p { color: #94a3b8; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.docs-section ul { list-style: none; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.docs-section ul li { display: flex; align-items: flex-start; gap: 8px; color: #94a3b8; font-size: 14px; }
.docs-section ul li::before { content: "•"; color: #4ade80; flex-shrink: 0; margin-top: 1px; }

/* ── Code Blocks ── */

pre {
  background: #020617;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 0;
  position: relative;
}

code { font-family: "Courier New", monospace; }

.lang-label {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(34,197,94,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.kw  { color: #c084fc; }
.str { color: #86efac; }
.cmt { color: #475569; }
.fn  { color: #60a5fa; }
.num { color: #fb923c; }
.key { color: #94a3b8; }

:not(pre) > code {
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #e2e8f0;
}

/* ── Tables ── */

.table-wrap { overflow-x: auto; margin: 16px 0; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }

th {
  background: rgba(15,23,42,0.7);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: #94a3b8;
  vertical-align: top;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }
td code { font-size: 12px; }

/* ── Method Badges ── */

.method { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 5px; margin-right: 8px; }
.get   { background: rgba(59,130,246,0.15); color: #60a5fa; }
.post  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.put   { background: rgba(251,146,60,0.15); color: #fb923c; }
.del   { background: rgba(239,68,68,0.15);  color: #f87171; }
.patch { background: rgba(168,85,247,0.15); color: #c084fc; }

/* ── Endpoint Card ── */

.endpoint-card {
  background: rgba(15,23,42,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}

.endpoint-url { font-family: monospace; font-size: 14px; color: #e2e8f0; margin-bottom: 8px; }
.endpoint-desc { font-size: 13px; color: #64748b; }

/* ── Alert ── */

.alert {
  display: flex;
  gap: 12px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
}

.alert i { color: #4ade80; flex-shrink: 0; margin-top: 1px; }
.alert p { font-size: 13px; color: #94a3b8; margin: 0; }
.alert strong { color: #e2e8f0; }

/* ── Tabs ── */

.tab-group { margin: 16px 0; }
.tab-btns { display: flex; gap: 2px; margin-bottom: -1px; }

.tab-btn {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  color: #64748b;
  border-radius: 7px 7px 0 0;
  transition: 0.2s;
}

.tab-btn.active { background: #020617; color: #4ade80; border-color: rgba(255,255,255,0.1); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane pre { border-radius: 0 10px 10px 10px; margin-top: 0; }

/* ── docs.html Responsive ── */

@media (max-width: 900px) {
  .docs-sidebar { display: none; }
  .quick-links { grid-template-columns: 1fr 1fr; }
  .docs-hero h1 { font-size: 30px; }
}

@media (max-width: 600px) {
  .quick-links { grid-template-columns: 1fr; }
}


/* ============================================================
   privacy-policy.html & terms-of-service.html
   ============================================================ */

/* legal pages use a narrower container — override the 1200px one above */
.legal-body ~ * .container,
.page-hero.container,
.legal-body.container {
  width: 860px;
  max-width: 92%;
}

/* ── Page Hero ── */

.page-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 50px;
}

.page-hero h1 { font-size: 38px; font-weight: 700; color: #f1f5f9; margin-bottom: 12px; }
.page-hero p { color: #64748b; font-size: 15px; line-height: 1.6; }

/* ── Table of Contents ── */

.toc {
  background: rgba(15,23,42,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 48px;
}

.toc h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #64748b; margin-bottom: 14px; }
.toc ol { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 20px; }
.toc ol li a { font-size: 14px; color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.toc ol li a:hover { color: #4ade80; }

/* ── Legal Content ── */

.legal-body { padding-bottom: 80px; }

.section { margin-bottom: 44px; }

.section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  scroll-margin-top: 90px;
}

.section h2 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.section p { color: #94a3b8; font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.section p:last-child { margin-bottom: 0; }

.section ul { list-style: none; margin: 10px 0 14px 0; display: flex; flex-direction: column; gap: 8px; }

.section ul li {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

/* ── Highlight box ── */

.highlight-box {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}

.highlight-box p { color: #cbd5e1 !important; margin-bottom: 0 !important; }

/* ── No Refund box ── */

.no-refund-box {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 16px 0;
}

.no-refund-box .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f87171;
  margin-bottom: 12px;
}

.no-refund-box p { color: #cbd5e1 !important; margin-bottom: 10px !important; }
.no-refund-box p:last-child { margin-bottom: 0 !important; }

/* ── Warning box ── */

.warning-box {
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}

.warning-box p { color: #cbd5e1 !important; margin-bottom: 0 !important; }

/* ── Contact card ── */

.contact-card {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
  margin-top: 50px;
}

.contact-card h3 { font-size: 17px; color: #f1f5f9; margin-bottom: 10px; }
.contact-card p { color: #94a3b8; font-size: 15px; line-height: 1.7; }
.contact-card a { color: #4ade80; text-decoration: none; }

/* ── Legal Responsive ── */

@media (max-width: 600px) {
  .page-hero h1 { font-size: 28px; }
  .section h2 { font-size: 17px; }
  .toc ol { grid-template-columns: 1fr; }
}
