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

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

:root {
  --bg: #06060a;
  --bg2: #0e0e16;
  --bg3: #13131e;
  --border: #1e1e2e;
  --accent: #7c6aff;
  --accent2: #5eead4;
  --text: #f0f0ff;
  --muted: #8888aa;
  --white: #ffffff;
  --danger: #ff4d6d;
  --success: #22c55e;
  --wa: #25d366;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,6,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}
.logo span { color: var(--accent); }

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

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--white); background: var(--bg3); }

.btn-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-wa-header:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-wa-header svg { width: 16px; height: 16px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }

/* ── LAYOUT ── */
.page-wrap { padding-top: 64px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(124,106,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,106,255,0.12);
  border: 1px solid rgba(124,106,255,0.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.92; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(124,106,255,0.08); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  background: var(--bg3);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-img-placeholder svg { width: 64px; height: 64px; color: var(--accent); opacity: 0.5; }

.hero-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-card-icon {
  width: 36px; height: 36px;
  background: rgba(34,197,94,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero-card-text .label { font-size: 0.7rem; color: var(--muted); }
.hero-card-text .value { font-size: 0.9rem; font-weight: 700; color: var(--success); }

/* ── BRANDS BAR ── */
.brands-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.brands-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.brands-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.brand-item:hover { opacity: 1; }
.brand-item svg { width: 20px; height: 20px; }

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(124,106,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.plan-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.plan-card.featured {
  background: linear-gradient(135deg, rgba(124,106,255,0.15), rgba(94,234,212,0.05));
  border-color: var(--accent);
  transform: scale(1.04);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.plan-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.plan-price sup { font-size: 1rem; font-weight: 600; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-period {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 20px;
}
.plan-savings {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(34,197,94,0.1);
  border-radius: 6px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 20px;
}
.plan-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-features li {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--bg3);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-plan:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.plan-card.featured .btn-plan {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.extra-device-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.extra-device-box .info h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.extra-device-box .info p { font-size: 0.85rem; color: var(--muted); }
.extra-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  white-space: nowrap;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s;
  font-size: 0.7rem;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  border-color: var(--accent);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(124,106,255,0.12), rgba(94,234,212,0.06));
  border: 1px solid rgba(124,106,255,0.25);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(124,106,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 1rem; color: var(--muted); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wa);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-wa-big:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-wa-big svg { width: 22px; height: 22px; }

/* ── TRUST BADGES ── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-badge svg { width: 18px; height: 18px; color: var(--accent); }

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.compat-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
}
.compat-icon svg { width: 14px; height: 14px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 80px 0 64px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p { font-size: 1rem; color: var(--muted); max-width: 560px; }

/* ── INSTALLATION PAGE ── */
.steps-list { max-width: 760px; display: flex; flex-direction: column; gap: 24px; }
.step-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.step-content code {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.8rem;
  color: var(--accent2);
  font-family: 'Courier New', monospace;
  margin-top: 6px;
}

/* ── COMPATIBILITY PAGE ── */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.compat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.compat-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.compat-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.compat-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.compat-card p { font-size: 0.78rem; color: var(--muted); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.contact-info p { font-size: 0.95rem; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s;
}
.contact-method:hover { border-color: var(--accent); }
.method-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.method-icon.wa { background: rgba(37,211,102,0.15); }
.method-text .label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.method-text .value { font-size: 0.95rem; font-weight: 700; color: var(--white); }

.contact-form { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg3); }
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 760px; }
.legal-wrap h2 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 40px 0 12px; }
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap p, .legal-wrap li { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap ul li { list-style: disc; }
.legal-wrap a { color: var(--accent); }
.legal-wrap a:hover { text-decoration: underline; }
.legal-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 40px; padding: 12px 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; }

/* ── STATUS ── */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ── BLOG INDEX ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.blog-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--muted);
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 16px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-link { gap: 10px; }

/* ── BLOG ARTICLE ── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-header { margin-bottom: 40px; }
.article-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

.toc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 80px;
}
.toc h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.toc ol { padding-left: 0; counter-reset: toc-counter; list-style: none; }
.toc ol li { counter-increment: toc-counter; margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.toc ol li::before {
  content: counter(toc-counter);
  min-width: 20px; height: 20px;
  background: var(--bg3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 1px;
}
.toc ol li a {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  transition: color 0.2s;
}
.toc ol li a:hover { color: var(--accent); }

.toc-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.toc-cta a {
  display: block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  transition: opacity 0.2s;
}
.toc-cta a:hover { opacity: 0.88; }

.article-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
  padding-top: 8px;
}
.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 32px 0 12px;
}
.article-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content p strong { color: var(--text); font-weight: 600; }
.article-content ul, .article-content ol {
  margin: 0 0 18px 0;
  padding-left: 20px;
}
.article-content ul li, .article-content ol li {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content ul li strong, .article-content ol li strong { color: var(--text); }

.article-callout {
  background: rgba(124,106,255,0.08);
  border: 1px solid rgba(124,106,255,0.25);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-callout p { color: var(--text); margin: 0; font-size: 0.9rem; }
.article-callout a { color: var(--accent); font-weight: 700; }

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.85rem;
  overflow-x: auto;
  display: block;
}
.article-table th {
  background: var(--bg3);
  color: var(--text);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.article-table td {
  padding: 12px 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.article-table tr:last-child td { border-bottom: none; }
.article-table .good { color: var(--success); font-weight: 600; }
.article-table .bad { color: var(--danger); }

.article-cta {
  background: linear-gradient(135deg, rgba(124,106,255,0.12), rgba(94,234,212,0.06));
  border: 1px solid rgba(124,106,255,0.25);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.article-cta h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.article-cta p { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }

.related-articles { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-articles h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: border-color 0.2s;
}
.related-card:hover { border-color: var(--accent); }
.related-card .cat { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); margin-bottom: 6px; }
.related-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); line-height: 1.4; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-wrap { grid-template-columns: 1fr; }
  .toc { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero { padding: 80px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }

  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 48px 24px; }
  .cta-section h2 { font-size: 1.8rem; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .trust-row { gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
