/* ═══════════════════════════════════════════════
   Logic Media — Light Theme Stylesheet
   ═══════════════════════════════════════════════ */
:root {
  --primary:        #5B3FE8;
  --primary-light:  #7B63F0;
  --primary-dark:   #4530C4;
  --primary-bg:     #F0EEFF;
  --primary-border: rgba(91,63,232,0.18);
  --accent:         #00C98A;
  --accent-dark:    #00A872;
  --accent-bg:      #E6FAF4;

  --bg:             #FFFFFF;
  --bg-off:         #F7F8FC;
  --bg-card:        #FFFFFF;
  --bg-card2:       #F3F4FA;
  --border:         #E4E6F0;
  --border-dark:    #D0D3E8;

  --text:           #111827;
  --text-muted:     #6B7280;
  --text-faint:     #9CA3AF;

  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
  --shadow-purple:  0 8px 32px rgba(91,63,232,0.22);

  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'Inter', sans-serif;
  --ease:           0.22s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ─── Cookie Popup ──────────────────────────── */
.cookie-popup {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 820px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 22px;
  z-index: 9999; box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s var(--ease);
}
@keyframes slideUp { from { opacity:0; transform: translateX(-50%) translateY(16px); } }
.cookie-popup.is-visible { display: flex !important; align-items: center; gap: 14px; }
.cookie-icon { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.cookie-content { display: flex; align-items: center; gap: 14px; width: 100%; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 13px; color: var(--text-muted); min-width: 200px; }
.cookie-text a { color: var(--primary); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ─── Navigation ────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text); letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links li a { color: var(--text-muted); font-size: 14px; font-weight: 500; padding: 7px 13px; border-radius: 8px; transition: all var(--ease); }
.nav-links li a:hover, .nav-links li a.active { color: var(--text); background: var(--bg-off); }
.nav-links li .btn { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--ease); display: block; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 11px 22px; border-radius: 10px; border: none;
  cursor: pointer; transition: all var(--ease);
  text-decoration: none; white-space: nowrap; letter-spacing: -0.01em;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(91,63,232,0.35); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(91,63,232,0.45); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(0,201,138,0.3); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--text); border: 1.5px solid var(--border-dark); }
.btn-outline:hover { background: var(--bg-off); border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--text-muted); border: none; }
.btn-ghost:hover { color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; box-shadow: var(--shadow-sm); }
.btn-white:hover { color: var(--primary-dark); background: var(--primary-bg); }
.btn-lg  { padding: 14px 30px; font-size: 16px; border-radius: 12px; }
.btn-xl  { padding: 17px 36px; font-size: 17px; border-radius: 14px; }
.btn-sm  { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn-danger { background: #FEE2E2; color: #DC2626; border: none; }
.btn-danger:hover { background: #FCA5A5; color: #DC2626; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 24px 80px; text-align: center;
  background: linear-gradient(160deg, #F8F7FF 0%, #EEF2FF 40%, #F0FAF6 100%);
  border-bottom: 1px solid var(--border);
}
.hero-bg-blob {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px); opacity: 0.5;
}
.hero-blob-1 { width: 500px; height: 500px; top: -150px; left: -100px; background: #DDD6FE; }
.hero-blob-2 { width: 400px; height: 400px; top: -80px; right: -80px; background: #BBF7D0; opacity: 0.35; }
.hero-blob-3 { width: 350px; height: 350px; bottom: -100px; left: 30%; background: #E0E7FF; opacity: 0.5; }
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-bg); border: 1px solid var(--primary-border);
  color: var(--primary); font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 26px; letter-spacing: 0.02em;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 6vw, 72px); line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 22px; color: var(--text);
}
.hero-title .highlight {
  background: linear-gradient(130deg, var(--primary) 0%, #A855F7 50%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: clamp(16px, 2vw, 19px); color: var(--text-muted); max-width: 580px; margin: 0 auto 36px; line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap; max-width: 680px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 24px 40px; box-shadow: var(--shadow-sm);
}
.hero-stat { text-align: center; padding: 6px 32px; }
.hero-stat-divider { width: 1px; height: 38px; background: var(--border); }
.hero-stat .stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--primary); letter-spacing: -1px; display: block; line-height: 1.1; }
.hero-stat .stat-label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; display: block; }

/* ─── Trust Bar ──────────────────────────────── */
.trust-bar { background: var(--bg-off); border-bottom: 1px solid var(--border); padding: 16px 24px; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 13px; font-weight: 500; white-space: nowrap; }
.trust-item i { color: var(--accent); font-size: 13px; }
.trust-sep { color: var(--border-dark); font-size: 14px; }

/* ─── Sections ───────────────────────────────── */
.section { padding: 88px 24px; }
.section-alt { background: var(--bg-off); }
.section-purple { background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 48px); font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; color: var(--text); line-height: 1.12; }
.section-desc { color: var(--text-muted); font-size: 17px; max-width: 520px; margin: 0 auto; line-height: 1.65; }
.highlight-sm {
  background: linear-gradient(130deg, var(--primary) 0%, #A855F7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── How It Works ───────────────────────────── */
.steps-grid { display: flex; align-items: flex-start; gap: 0; max-width: 900px; margin: 0 auto; }
.step-card {
  flex: 1; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; transition: all var(--ease); box-shadow: var(--shadow-sm);
}
.step-card:hover { border-color: var(--primary-border); transform: translateY(-4px); box-shadow: var(--shadow-purple); }
.step-number { display: inline-block; background: var(--primary-bg); border: 1px solid var(--primary-border); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 100px; margin-bottom: 18px; }
.step-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--primary-bg), var(--accent-bg)); border: 1px solid var(--primary-border); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin: 0 auto 18px; }
.step-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.step-connector { flex-shrink: 0; width: 44px; display: flex; align-items: center; justify-content: center; color: var(--border-dark); font-size: 20px; padding-top: 52px; }

/* ─── Features ───────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: all var(--ease); box-shadow: var(--shadow-sm);
}
.feature-card:hover { border-color: var(--primary-border); transform: translateY(-3px); box-shadow: var(--shadow-purple); }
.feature-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
.feat-purple { background: var(--primary-bg); color: var(--primary); }
.feat-teal   { background: var(--accent-bg); color: var(--accent-dark); }
.feat-blue   { background: #EFF6FF; color: #2563EB; }
.feat-amber  { background: #FFFBEB; color: #D97706; }
.feat-green  { background: #F0FDF4; color: #16A34A; }
.feat-coral  { background: #FFF1F2; color: #E11D48; }
.feature-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 9px; color: var(--text); }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ─── Pricing ────────────────────────────────── */
.billing-toggle-wrap { text-align: center; margin-bottom: 40px; }
.billing-toggle { display: inline-flex; background: var(--bg-card2); border: 1px solid var(--border); border-radius: 12px; padding: 4px; gap: 4px; }
.billing-toggle button { padding: 9px 20px; border-radius: 9px; border: none; background: transparent; color: var(--text-muted); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--ease); }
.billing-toggle button.active { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.save-badge { background: var(--accent-bg); color: var(--accent-dark); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-left: 5px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px; position: relative;
  transition: all var(--ease); box-shadow: var(--shadow-sm);
}
.pricing-card:hover { border-color: var(--primary-border); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-purple); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap; letter-spacing: 0.04em; }
.pricing-badge.badge-value { background: var(--accent); }
.pricing-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.pricing-desc { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.pricing-price { margin-bottom: 22px; }
.pricing-price .amount { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--text); letter-spacing: -2px; }
.pricing-price .currency { font-size: 26px; font-weight: 500; vertical-align: super; margin-right: 2px; color: var(--text-muted); }
.pricing-price .period { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.pricing-price .original { font-size: 13px; color: var(--text-faint); display: block; margin-top: 6px; }
.pbn-metrics { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.metric-chip { background: var(--primary-bg); border: 1px solid var(--primary-border); color: var(--primary); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; display: inline-flex; align-items: center; gap: 4px; }
.metric-chip i { font-size: 10px; }
.pricing-features { margin-bottom: 26px; }
.pricing-features li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--accent); font-size: 12px; flex-shrink: 0; margin-top: 3px; }
.pricing-footer { text-align: center; margin-top: 32px; }

/* ─── Testimonials ───────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--primary); flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: var(--text); }
.author-role { font-size: 12px; color: var(--text-faint); margin-top: 2px; }

/* ─── Articles ───────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.article-card:hover { border-color: var(--primary-border); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.article-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.article-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: var(--primary-bg); border: 1px solid var(--primary-border); padding: 3px 9px; border-radius: 100px; }
.article-date { font-size: 12px; color: var(--text-faint); }
.article-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); line-height: 1.35; }
.article-card p { color: var(--text-muted); font-size: 14px; flex: 1; line-height: 1.7; }
.article-card .read-more { margin-top: 18px; color: var(--primary); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--ease), color var(--ease); }
.article-card .read-more:hover { gap: 10px; color: var(--primary-dark); }

/* ─── CTA Section ────────────────────────────── */
.section-cta { background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%); text-align: center; padding: 96px 24px; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 100px; margin-bottom: 22px; }
.cta-title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 52px); font-weight: 700; letter-spacing: -1.2px; color: #fff; margin-bottom: 18px; line-height: 1.1; }
.cta-subtitle { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; line-height: 1.65; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.6); }
.cta-note i { margin-right: 4px; }

/* ─── Forms ──────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 15px; color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-bg); }
.form-control::placeholder { color: var(--text-faint); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  cursor: pointer;
  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='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: var(--accent-bg); border: 1px solid rgba(0,201,138,0.25); color: var(--accent-dark); }
.alert-error   { background: #FEE2E2; border: 1px solid #FECACA; color: #DC2626; }
.alert-info    { background: var(--primary-bg); border: 1px solid var(--primary-border); color: var(--primary); }

/* ─── Modal ──────────────────────────────────── */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45); padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  max-width: 560px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: modalIn 0.22s var(--ease);
}
@keyframes modalIn { from { opacity:0; transform:scale(0.96) translateY(8px); } }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--bg-off); border: none; border-radius: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); transition: all var(--ease); font-size: 16px; }
.modal-close:hover { background: var(--border); color: var(--text); }
.price-summary { background: var(--primary-bg); border: 1px solid var(--primary-border); border-radius: 12px; padding: 16px 20px; margin-bottom: 22px; display: flex; justify-content: space-between; align-items: center; }
.price-summary-label { font-size: 13px; color: var(--text-muted); }
.price-summary-amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--primary); }

/* ─── Page Hero ──────────────────────────────── */
.page-hero { padding: 72px 24px 56px; text-align: center; background: var(--bg-off); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 52px); font-weight: 700; letter-spacing: -1px; margin-bottom: 14px; color: var(--text); }
.page-hero p { color: var(--text-muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ─── Article prose ──────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin: 40px 0 14px; color: var(--text); }
.prose h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 30px 0 12px; color: var(--text); }
.prose p  { color: var(--text-muted); margin-bottom: 18px; font-size: 16.5px; line-height: 1.82; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 18px; color: var(--text-muted); }
.prose li { margin-bottom: 9px; font-size: 16px; }
.prose strong { color: var(--text); font-weight: 600; }

/* ─── Customer Portal ────────────────────────── */
.portal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.portal-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 90px; }
.portal-user { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.portal-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-bg); border: 2px solid var(--primary-border); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; color: var(--primary); margin: 0 auto 12px; }
.portal-name { font-weight: 700; font-size: 16px; color: var(--text); }
.portal-email { font-size: 13px; color: var(--text-faint); margin-top: 3px; }
.portal-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 9px; color: var(--text-muted); font-size: 14px; font-weight: 500; margin-bottom: 3px; transition: all var(--ease); }
.portal-nav a:hover, .portal-nav a.active { background: var(--primary-bg); color: var(--primary); }
.portal-nav a i { width: 16px; text-align: center; font-size: 14px; }
.portal-main { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.portal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.portal-header h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); }

/* ─── Table ──────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); padding: 10px 14px; border-bottom: 1.5px solid var(--border); background: var(--bg-off); }
.data-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-off); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.badge-success { background: var(--accent-bg); color: var(--accent-dark); }
.badge-warning { background: #FFFBEB; color: #D97706; }
.badge-danger  { background: #FEE2E2; color: #DC2626; }
.badge-info    { background: var(--primary-bg); color: var(--primary); }
.table-actions { display: flex; gap: 8px; align-items: center; }
.table-actions a { font-size: 13px; color: var(--primary); }
.table-actions a:hover { color: var(--primary-dark); }

/* ─── Admin panel ────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; background: var(--bg-off); }
.admin-sidebar { width: 240px; background: #fff; border-right: 1px solid var(--border); padding: 24px 0; flex-shrink: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar .logo { padding: 0 24px 24px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.admin-nav a { display: flex; align-items: center; gap: 11px; padding: 11px 24px; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: all var(--ease); }
.admin-nav a:hover, .admin-nav a.active { color: var(--primary); background: var(--primary-bg); border-right: 2px solid var(--primary); }
.admin-nav a i { width: 16px; text-align: center; }
.admin-main { flex: 1; padding: 32px; overflow-y: auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.admin-header h1 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.stat-card .stat-label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.stat-card .stat-value { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--text); }

/* ─── Footer ─────────────────────────────────── */
.site-footer-main { background: var(--text); color: rgba(255,255,255,0.7); padding: 64px 24px 32px; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo .logo-text { color: #fff; }
.footer-tagline { font-size: 14px; margin-bottom: 20px; line-height: 1.6; opacity: 0.7; }
.footer-payments { display: flex; align-items: center; gap: 10px; font-size: 13px; opacity: 0.5; }
.crypto-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 3px 9px; font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--ease); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-disclaimer { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-layout { grid-template-columns: 1fr; }
  .portal-sidebar { position: static; }
}
@media (max-width: 860px) {
  .steps-grid { flex-direction: column; max-width: 420px; }
  .step-connector { transform: rotate(90deg); padding: 0; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 66px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 12px 0; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links li a { border-radius: 0; padding: 12px 24px; }
  .nav-links li .btn { margin: 8px 16px; display: flex; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { padding: 18px 12px; }
  .hero-stat { padding: 6px 14px; }
  .hero-stat .stat-num { font-size: 26px; }
  .hero-stat-divider { display: none; }
}
@media (max-width: 520px) {
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .trust-sep { display: none; }
  .modal-box { padding: 24px 20px; }
}
