/* ============================================================
   ТКПС-КАЗАХСТАН — New Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Noto+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap');

/* ── Tokens ── */
:root {
  --ink:       #0a0e18;
  --ink2:      #131825;
  --ink3:      #1c2230;
  --surface:   #1e2636;
  --card:      rgba(255,255,255,0.042);
  --border:    rgba(255,255,255,0.09);

  --teal:      #0fc5b0;
  --teal2:     #0a9e8d;
  --teal-glow: rgba(15,197,176,0.18);
  --teal-dim:  rgba(15,197,176,0.08);
  --orange:    #e8762a;
  --red:       #e04d4d;

  --text:      #dce6f5;
  --muted:     #8494b0;
  --faint:     #4a5570;

  --header-h: 70px;
  --max-w: 1160px;
  --r:  14px;
  --r2: 22px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans', system-ui, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(15px, 2.2vw, 17px);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--r); overflow: hidden; }
button { cursor: pointer; font: inherit; }

/* ── Background Mesh ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 900px 600px at 10% -10%, rgba(15,197,176,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 700px 500px at 90% 110%, rgba(15,197,176,0.05) 0%, transparent 70%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink2) 50%, var(--ink) 100%);
  pointer-events: none;
}

/* ── Grid Overlay ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ── Typography ── */
h1, h2, h3, h4,
.brand, .nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); color: #fff; margin-bottom: 0.5em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); color: #fff; margin-bottom: 0.4em; }
p  { color: var(--muted); margin-bottom: 0.9em; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 860px; }

/* ── Top Accent Line ── */
.topbar {
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal2) 60%, transparent 100%);
}

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(10,14,24,0.82);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.nav-logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.nav-logo span { color: var(--teal); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active { color: #fff; background: rgba(255,255,255,0.07); }

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

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  color: var(--text);
}
.nav-toggle svg { display: block; width: 20px; height: 20px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: filter 0.18s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover  { filter: brightness(1.12); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 18px rgba(15,197,176,0.28);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(15,197,176,0.42); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-wa {
  background: #25D366;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn-wa:hover { color: #fff !important; }
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,118,42,0.28);
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,197,176,0.07) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid rgba(15,197,176,0.25);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.hero-title em {
  font-style: normal;
  color: var(--teal);
  display: block;
}

.hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--r2);
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r2);
  box-shadow:
    0 0 0 1px var(--border),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(15,197,176,0.06);
}
.hero-visual-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.hero-visual-badge .vb-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--teal-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.4rem;
}
.hero-visual-badge .vb-text strong {
  display: block;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.hero-visual-badge .vb-text span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
section { padding: clamp(48px, 7vw, 90px) 0; }

.section-tag {
  display: inline-block;
  color: var(--teal);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head { margin-bottom: clamp(32px, 5vw, 54px); }
.section-head p { max-width: 600px; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0;
}

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-dim), transparent);
  transition: opacity 0.25s;
  opacity: 0;
}
.card:hover { border-color: rgba(15,197,176,0.25); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.card:hover::before { opacity: 1; }

.card-img { margin: -28px -28px 22px; border-radius: var(--r2) var(--r2) 0 0; overflow: hidden; }
.card-img img { border-radius: var(--r2) var(--r2) 0 0; width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--teal-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { 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); }
}

/* ═══════════════════════════════════════════════
   SERVICE STRIP
═══════════════════════════════════════════════ */
.services-strip {
  padding: 48px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-strip .grid-3 { gap: 28px; }

.svc-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal-dim);
  line-height: 1;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.svc-card h3 { margin-bottom: 4px; }

/* ═══════════════════════════════════════════════
   FEATURE GRID (with image)
═══════════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 760px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse .feature-text { order: 2; }
  .feature-row.reverse .feature-media { order: 1; }
}
.feature-media {
  overflow: hidden;
  border-radius: var(--r2);
  width: 100%;
}
.feature-media img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--r2);
  box-shadow: 0 0 0 1px var(--border), 0 16px 50px rgba(0,0,0,0.35);
}

/* ═══════════════════════════════════════════════
   BEACON CARDS
═══════════════════════════════════════════════ */
.beacon-card {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.beacon-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.35); }
.beacon-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 0; display: block; max-height: 260px; }
.beacon-info {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.beacon-tag {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(15,197,176,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   CONTACTS SECTION
═══════════════════════════════════════════════ */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .contacts-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .contacts-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card .icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.contact-card a { color: var(--teal); }
.contact-card a:hover { color: #fff; }

/* ── Requisites ── */
.req-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
}
.req-block h3 { margin-bottom: 16px; }
.req-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.req-row:last-child { border-bottom: none; }
.req-row .label { color: var(--faint); flex-shrink: 0; }
.req-row .value { color: var(--text); text-align: right; }

/* ═══════════════════════════════════════════════
   FORM
═══════════════════════════════════════════════ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: span 2; }
}

.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-group label {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238494b0' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(15,197,176,0.05);
  box-shadow: 0 0 0 3px rgba(15,197,176,0.1);
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--faint); }
.field-group select option { background: var(--ink2); }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}
.check-row input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--teal);
  margin-top: 2px;
}

/* Form states */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.visible { display: block; }
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 { color: var(--teal); margin-bottom: 8px; }
.form-error {
  display: none;
  background: rgba(224,77,77,0.1);
  border: 1px solid rgba(224,77,77,0.3);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #f0807a;
  margin-bottom: 16px;
}
.form-error.visible { display: block; }

/* ── Sending state ── */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}
.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  right: 14px; top: 50%; transform: translateY(-50%);
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════ */
.page-hero {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; max-width: 620px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--faint);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: var(--faint); }

/* ═══════════════════════════════════════════════
   MAP PLACEHOLDER
═══════════════════════════════════════════════ */
.map-embed {
  width: 100%;
  height: 340px;
  border-radius: var(--r2);
  border: 1px solid var(--border);
  background: var(--ink2);
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  margin-top: 80px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
}

.footer-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}
.footer-brand p { font-size: 0.88rem; }
.footer-brand .footer-contacts {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
}
.footer-brand .footer-contacts a { color: var(--teal); }
.footer-brand .footer-contacts a:hover { color: #fff; }

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--faint); margin: 0; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; }
.anim.in { animation: fadeUp 0.55s ease forwards; }
.anim-d1 { animation-delay: 0.08s; }
.anim-d2 { animation-delay: 0.16s; }
.anim-d3 { animation-delay: 0.24s; }
.anim-d4 { animation-delay: 0.32s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — mobile nav
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--ink2);
    border-top: 1px solid var(--border);
    padding: 14px 0;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 12px 20px; border-radius: 8px; }
  .nav-actions { display: none; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 14px 0; }
}

/* ── Utility ── */
.text-teal { color: var(--teal); }
.text-muted { color: var(--muted); }
.mt-sm { margin-top: 20px; }
.mt-md { margin-top: 36px; }
.mt-lg { margin-top: 56px; }
.mb-sm { margin-bottom: 20px; }
.flex-gap { display: flex; flex-wrap: wrap; gap: 12px; }
.page-main { min-height: calc(100vh - var(--header-h) - 80px); }
.prose p { margin-bottom: 1em; }
.prose strong { color: var(--text); }
.prose ul { padding-left: 1.4em; color: var(--muted); }
.prose ul li { margin-bottom: 6px; }

/* ═══════════════════════════════════════════════
   INFO SLIDE CARD
   Replaces PowerPoint slide images — native HTML
═══════════════════════════════════════════════ */
.info-slide-card {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.info-slide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
}
.isc-header {
  margin-bottom: 18px;
}
.isc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(15,197,176,0.2);
  padding: 5px 12px;
  border-radius: 50px;
}
.isc-title {
  font-size: 1.2rem;
  margin-bottom: 14px;
  margin-top: 14px;
  color: #fff;
}
.isc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.isc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.isc-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}
.isc-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--faint);
}

/* ═══════════════════════════════════════════════
   STAT GRID — for statistics display
═══════════════════════════════════════════════ */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.stat-item {
  background: var(--teal-dim);
  border: 1px solid rgba(15,197,176,0.15);
  border-radius: var(--r);
  padding: 14px;
}
.stat-item strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   FEATURE LIST — bullet list inside cards
═══════════════════════════════════════════════ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   BEACON NATIVE CARD — replaces slide image
═══════════════════════════════════════════════ */
.beacon-native-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.beacon-native-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
}
.beacon-native-card:hover {
  border-color: rgba(15,197,176,0.3);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}
.bnc-head {
  margin-bottom: 18px;
}
.bnc-head h3 {
  margin-top: 10px;
  margin-bottom: 2px;
}
