/* ═══════════════════════════════════════════════════
   FreeCAPTCHA WordPress Theme — Main Stylesheet
   ═══════════════════════════════════════════════════ */

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

:root {
  --blue: #1E6FFF;
  --blue-light: #6BAAFF;
  --blue-dim: rgba(30,111,255,0.15);
  --cyan: #00D4FF;
  --cyan-dim: rgba(0,212,255,0.12);
  --bg-start: #0B0F1A;
  --bg-end: #12172A;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-glow: rgba(30,111,255,0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #A0A8C0;
  --text-muted: #6B7280;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-start);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NOISE TEXTURE ─────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ─── ORB GLOWS ─────────────────────────────── */
.orb { position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.orb-1 { width: 600px; height: 600px; background: rgba(30,111,255,0.16); top: -200px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: rgba(0,212,255,0.1); top: 40%; right: -150px; }
.orb-3 { width: 400px; height: 400px; background: rgba(30,111,255,0.1); bottom: 10%; left: 20%; }

/* ─── ANIMATIONS ────────────────────────────── */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes connFlow { 0%{left:-100%} 100%{left:100%} }
@keyframes wavePulse { from{opacity:.4;transform:scaleY(.6)} to{opacity:1;transform:scaleY(1)} }

/* ─── REVEAL ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,15,26,0.75); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-primary);
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links > li > a {
  color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .2s; padding: 8px 12px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-links > li > a.active { color: var(--blue-light); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ─── MEGA MENU ─────────────────────────────── */
.nav-item { position: relative; }
.nav-item > a .chevron { transition: transform .25s; flex-shrink: 0; }
.nav-item:hover > a .chevron { transform: rotate(180deg); }
/* Invisible bridge fills the gap so hover isn't lost moving to the dropdown */
.nav-item::after {
  content: ''; position: absolute; top: 100%; left: -20px; right: -20px;
  height: 14px; z-index: 199;
}
.mega-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10,14,25,0.98); backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 28px 32px; min-width: 960px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(30,111,255,0.08); z-index: 200;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; background: rgba(10,14,25,0.98);
  border-left: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); rotate: 45deg;
}
.mega-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px 36px; }
.mega-cat-title { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(0,212,255,0.15); }
.mega-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mega-links a { font-size: 13px; color: var(--text-secondary); text-decoration: none; padding: 5px 8px; border-radius: 6px; transition: background .15s, color .15s; display: flex; align-items: center; gap: 7px; }
.mega-links a::before { content: '›'; font-size: 14px; color: var(--blue-light); opacity: 0.5; transition: opacity .15s; line-height: 1; flex-shrink: 0; }
.mega-links a:hover { color: var(--text-primary); background: rgba(30,111,255,0.1); }
.mega-links a:hover::before { opacity: 1; }

/* ─── RESOURCES DROPDOWN ─────────────────────── */
.resources-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10,14,25,0.98); backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
  padding: 8px; min-width: 210px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(30,111,255,0.08); z-index: 200;
}
.nav-item:hover .resources-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.resources-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; background: rgba(10,14,25,0.98);
  border-left: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); rotate: 45deg;
}
.resources-links { list-style: none; display: flex; flex-direction: column; }
.resources-links a { font-size: 13px; color: var(--text-secondary); text-decoration: none; padding: 9px 14px; border-radius: var(--radius-sm); transition: background .15s, color .15s; display: flex; align-items: center; gap: 7px; }
.resources-links a::before { content: '›'; font-size: 14px; color: var(--blue-light); opacity: 0.5; transition: opacity .15s; flex-shrink: 0; }
.resources-links a:hover { color: var(--text-primary); background: rgba(30,111,255,0.1); }
.resources-links a:hover::before { opacity: 1; }

/* ─── LANG SWITCHER ─────────────────────────── */
.lang-switcher { position: relative; }
.lang-btn { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-secondary); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer; transition: all .2s; letter-spacing: .5px; }
.lang-btn:hover { border-color: var(--border-glow); color: var(--text-primary); }
.lang-chevron { transition: transform .2s; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: rgba(10,14,25,0.98); backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; min-width: 150px; opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .18s, visibility .18s, transform .18s; box-shadow: 0 16px 40px rgba(0,0,0,0.6); z-index: 200; }
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: all .15s; }
.lang-option:hover, .lang-option.active { background: rgba(30,111,255,0.12); color: var(--text-primary); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-name { color: var(--text-muted); font-size: 12px; margin-left: auto; }

/* ─── BUTTONS ───────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer; transition: all .25s; border: none; text-decoration: none; white-space: nowrap; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); padding: 9px 20px; }
.btn-ghost:hover { border-color: var(--border-glow); color: var(--text-primary); }
.btn-primary { background: linear-gradient(135deg, var(--blue) 0%, #1050CC 100%); color: #fff; padding: 10px 24px; box-shadow: 0 0 24px rgba(30,111,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(30,111,255,0.55); }
.btn-secondary { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text-primary); padding: 10px 24px; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: var(--radius); }
.btn-xl { padding: 16px 40px; font-size: 16px; border-radius: var(--radius); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text-primary); padding: 10px 24px; }
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ─── SECTION COMMON ────────────────────────── */
section { position: relative; z-index: 1; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-wrap { padding: 100px 0; }
.section-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light); background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.25); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-secondary); max-width: 480px; line-height: 1.7; }
/* ─ Section header layout (used on pricing page) ─ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-desc { font-size: 16px; color: var(--text-secondary); margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
/* Pricing page: section-label should be plain cyan text, not pill badge */
.pricing-section .section-label,
.pricing-faq-section .section-label {
  background: none; border: none; padding: 0; border-radius: 0; display: block;
  color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px;
}
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.section-body { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.section-body + .section-body { margin-top: 14px; }
.grad-text { background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 60%, #fff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══ HOMEPAGE STYLES ═══════════════════════════ */

/* ─── HERO ──────────────────────────────────── */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 40px 80px; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 32px; animation: fadeSlideUp .6s ease both; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; }
.hero-title { font-family: 'Sora', sans-serif; font-size: clamp(42px, 6.5vw, 64px); font-weight: 800; line-height: 1.08; letter-spacing: -2px; max-width: 860px; animation: fadeSlideUp .7s .1s ease both; }
.hero-sub { margin-top: 22px; max-width: 580px; font-size: 18px; color: var(--text-secondary); font-weight: 400; line-height: 1.75; animation: fadeSlideUp .7s .2s ease both; }
.hero-ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; animation: fadeSlideUp .7s .3s ease both; }
.hero-metrics { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; justify-content: center; animation: fadeSlideUp .7s .4s ease both; }
.metric { text-align: center; }
.metric-val { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 700; }
.metric-val .unit { font-size: 16px; color: var(--cyan); }
.metric-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.metric-divider { width: 1px; background: var(--border); height: 44px; align-self: center; }

/* ─── HERO PREVIEW ──────────────────────────── */
.hero-preview { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 72px; position: relative; animation: fadeSlideUp .8s .5s ease both; }
.preview-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(24px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 24px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06); }
.captcha-preview { width: 300px; }
.api-preview { width: 320px; }
.card-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.card-dot { width: 10px; height: 10px; border-radius: 50%; }
.card-title-sm { font-size: 12px; color: var(--text-muted); margin-left: 4px; }
.captcha-challenge-label { font-size: 12px; color: var(--text-secondary); margin-bottom: 12px; }
.captcha-challenge-label strong { color: var(--text-primary); }
.captcha-grid-ui { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 14px; }
.cap-cell { aspect-ratio: 1; border-radius: 6px; background: rgba(255,255,255,0.05); border: 2px solid transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: all .2s; position: relative; }
.cap-cell.checked { border-color: var(--blue); background: rgba(30,111,255,0.15); }
.cap-cell.checked::after { content:'✓'; position:absolute; top:3px; right:5px; font-size:9px; color:var(--blue-light); }
.verify-bar { display: flex; align-items: center; justify-content: space-between; }
.verify-check { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.check-box { width: 18px; height: 18px; border-radius: 4px; background: var(--blue); display:flex;align-items:center;justify-content:center; font-size:10px; }
.verify-logo { font-size: 10px; color: var(--text-muted); }
.solving-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--cyan); margin-top: 10px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 1s infinite; }
.api-response-box { background: #0D1117; border-radius: 10px; padding: 14px 16px; font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: 12px; line-height: 1.85; }
.kw{color:#FF79C6}.fn{color:#8BE9FD}.str{color:#F1FA8C}.kv{color:#BD93F9}.num{color:#FFB86C}.cmt{color:#6272A4;font-style:italic}.ok{color:#50FA7B}
.api-latency-tag { display:inline-flex; align-items:center; gap:6px; margin-top:12px; font-size:11px; background:rgba(0,212,255,0.08); border:1px solid rgba(0,212,255,0.2); color:var(--cyan); padding:4px 10px; border-radius:100px; }

/* ─── MULTI-CAPTCHA SHOWCASE ────────────────── */
.mc-showcase { margin-top: 72px; width: 100%; max-width: 1060px; animation: fadeSlideUp .8s .5s ease both; }
.mc-header { text-align: center; margin-bottom: 32px; }
.mc-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 10px; }
.mc-desc { font-size: 15px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.65; }
.mc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mc-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; transition: all .3s; position: relative; overflow: hidden; }
.mc-card:hover { border-color: rgba(30,111,255,0.35); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(30,111,255,0.08); }
.mc-card-inner { display: flex; flex-direction: column; gap: 10px; }
.mc-type-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-light); background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2); padding: 3px 10px; border-radius: 100px; display: inline-block; width: fit-content; }
.mc-solved-tag { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--cyan); font-weight: 600; }
.mc-recaptcha { background: #fff; border-radius: 6px; padding: 10px 12px; }
.mc-rc-box { display: flex; align-items: center; gap: 10px; }
.mc-rc-check { width: 24px; height: 24px; border-radius: 3px; background: #4285f4; display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.mc-rc-checkmark { color:#fff; font-size:14px; font-weight:700; }
.mc-rc-text { font-size: 12px; font-weight: 500; color: #333; flex:1; }
.mc-rc-logo { display:flex;flex-direction:column;align-items:center; }
.mc-rc-icon { font-size:18px; color:#4285f4; }
.mc-rc-brand { font-size:8px; color:#999; letter-spacing:.5px; }
.mc-img-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.mc-img-cell { aspect-ratio:1; border-radius:4px; background:rgba(255,255,255,0.05); border:2px solid transparent; display:flex;align-items:center;justify-content:center; font-size:18px; transition:all .2s; }
.mc-img-cell.sel { border-color: var(--blue); background: rgba(30,111,255,0.15); }
.mc-text-img { background: linear-gradient(135deg, #0d1117, #1a2035); border-radius: 6px; padding: 10px 14px; display:flex; gap:4px; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.mc-text-img::before { content:''; position:absolute;inset:0;background:repeating-linear-gradient(45deg,rgba(255,255,255,0.02) 0px,rgba(255,255,255,0.02) 1px,transparent 1px,transparent 8px); }
.mc-letter { font-family:'Sora',sans-serif; font-size:22px; font-weight:800; display:inline-block; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); position:relative;z-index:1; }
.mc-text-answer { font-size:11px; color:var(--text-muted); margin-top:5px; text-align:center; font-family:monospace; }
.mc-math-captcha { text-align:center; padding: 6px 0; }
.mc-math-eq { display:flex; align-items:center; justify-content:center; gap:8px; }
.mc-math-num { font-family:'Sora',sans-serif; font-size:24px; font-weight:700; color:var(--text-primary); }
.mc-math-op { font-size:20px; color:var(--blue-light); font-weight:600; }
.mc-math-ans { font-family:'Sora',sans-serif; font-size:24px; font-weight:700; color:var(--cyan); }
.mc-math-label { font-size:10px; color:var(--text-muted); margin-top:4px; }
.mc-hcaptcha { background: #fff; border-radius:6px; padding:10px 12px; }
.mc-hc-box { display:flex;align-items:center;gap:10px; }
.mc-hc-check { width:24px;height:24px;border-radius:50%;background:#1db954;display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;font-weight:700;flex-shrink:0; }
.mc-hc-text { font-size:12px;font-weight:500;color:#333;flex:1; }
.mc-hc-logo { font-size:10px;color:#666;font-weight:700; }
.mc-slide-captcha { padding:4px 0; }
.mc-slide-track { height:28px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.12);border-radius:14px;position:relative;overflow:hidden;margin-bottom:6px; }
.mc-slide-filled { position:absolute;left:0;top:0;bottom:0;width:82%;background:linear-gradient(90deg,rgba(30,111,255,0.3),rgba(0,212,255,0.2));border-radius:14px; }
.mc-slide-handle { position:absolute;right:2px;top:2px;bottom:2px;width:24px;background:var(--blue);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:10px;color:#fff; }
.mc-slide-label { font-size:10px;color:var(--text-muted);text-align:center; }
.mc-ts-box { background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:8px;padding:12px 14px;display:flex;align-items:center;gap:10px; }
.mc-ts-icon { font-size:20px; }
.mc-ts-text { font-size:13px;font-weight:500;flex:1; }
.mc-ts-check { width:20px;height:20px;border-radius:50%;background:#10b981;display:flex;align-items:center;justify-content:center;color:#fff;font-size:11px;font-weight:700; }
.mc-audio-captcha { text-align:center; }
.mc-audio-waves { display:flex;align-items:center;justify-content:center;gap:3px;margin-bottom:8px; }
.mc-wave { width:4px;background:var(--blue-light);border-radius:2px;animation:wavePulse 1.2s ease-in-out infinite alternate; }
.mc-audio-label { font-size:11px;color:var(--text-muted);margin-bottom:4px; }
.mc-audio-answer { font-family:monospace;font-size:12px;color:var(--text-secondary); }
.mc-invisible { display:flex;align-items:center;gap:12px;background:rgba(30,111,255,0.06);border:1px solid rgba(30,111,255,0.15);border-radius:8px;padding:12px 14px; }
.mc-inv-icon { font-size:22px;flex-shrink:0; }
.mc-inv-text { font-size:12px;color:var(--text-secondary);line-height:1.5; }

/* ─── FEATURES ──────────────────────────────── */
.features-bg { background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%); }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; transition: all .3s; position: relative; overflow: hidden; cursor: default; }
.feat-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 30% 0%, rgba(30,111,255,0.1) 0%, transparent 70%); opacity: 0; transition: opacity .3s; }
.feat-card:hover { transform: translateY(-4px); border-color: rgba(30,111,255,0.35); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(30,111,255,0.1); }
.feat-card:hover::before { opacity: 1; }
.feat-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: rgba(30,111,255,0.15); border: 1px solid rgba(30,111,255,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all .3s; }
.feat-card:hover .feat-icon-wrap { background: rgba(30,111,255,0.25); box-shadow: 0 0 20px rgba(30,111,255,0.3); }
.feat-icon { width: 22px; height: 22px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.feat-pill { display: inline-block; font-size: 11px; font-weight: 600; color: var(--cyan); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); padding: 3px 10px; border-radius: 100px; margin-top: 14px; }

/* ─── HOW IT WORKS ──────────────────────────── */
.hiw-bg { background: var(--bg-end); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-steps { display: flex; align-items: flex-start; gap: 0; position: relative; }
.hiw-connector { flex: 1; height: 2px; margin-top: 32px; background: linear-gradient(90deg, rgba(30,111,255,0.2), rgba(0,212,255,0.2)); position: relative; overflow: hidden; }
.hiw-connector::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: connFlow 3s ease-in-out infinite; }
.hiw-step { flex: 0 0 200px; text-align: center; padding: 0 16px; }
.step-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(30,111,255,0.12); border: 2px solid rgba(30,111,255,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue-light); position: relative; z-index: 1; transition: all .3s; }
.hiw-step:hover .step-circle { background: rgba(30,111,255,0.25); border-color: var(--blue); box-shadow: 0 0 30px rgba(30,111,255,0.4); }
.hiw-step h4 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.hiw-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── API SECTION ───────────────────────────── */
.api-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.api-code-window { background: #0D1117; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04); }
.api-code-header { background: #161B22; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 20px; display: flex; align-items: center; gap: 8px; }
.lang-tabs { display: flex; gap: 4px; margin-left: 16px; }
.lang-tab { font-size: 12px; padding: 4px 12px; border-radius: 6px; cursor: pointer; color: var(--text-muted); transition: all .2s; }
.lang-tab.active { background: rgba(30,111,255,0.2); color: var(--blue-light); }
.api-code-body { padding: 28px; font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: 13px; line-height: 1.9; }
.api-points { display: flex; flex-direction: column; gap: 28px; }
.api-point { display: flex; gap: 16px; }
.api-point-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; }
.api-point-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); fill:none; stroke-width:1.8; stroke-linecap:round;stroke-linejoin:round; }
.api-point h4 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.api-point p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── TESTIMONIALS ──────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all .3s; position: relative; overflow: hidden; }
.testi-card::before { content:''; position:absolute; inset:0; border-radius:inherit; background: radial-gradient(circle at 100% 100%, rgba(30,111,255,0.07) 0%, transparent 60%); }
.testi-card:hover { transform: translateY(-4px); border-color: rgba(30,111,255,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.testi-stars { color: #F59E0B; font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ─── INTEGRATIONS ──────────────────────────── */
.int-bg { background: var(--bg-end); border-top: 1px solid var(--border); }
.int-header { text-align: center; margin-bottom: 52px; }
.int-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.int-chip { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 22px; font-size: 15px; font-weight: 500; color: var(--text-secondary); transition: all .25s; cursor: default; filter: grayscale(50%); }
.int-chip:hover { border-color: rgba(30,111,255,0.4); color: var(--text-primary); filter: grayscale(0); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.int-chip-icon { font-size: 22px; }

/* ─── FAQ ───────────────────────────────────── */
.faq-bg { background: var(--bg-start); border-top: 1px solid var(--border); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: flex-start; }
.faq-sticky { position: sticky; top: 88px; }
.faq-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-top: 16px; }
.faq-contact { margin-top: 28px; display: flex; align-items: center; gap: 12px; }
.faq-contact p { font-size: 14px; color: var(--text-muted); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--text-primary); transition: color .2s; }
.faq-question:hover { color: var(--blue-light); }
.faq-q-num { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: var(--cyan); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); padding: 2px 8px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.faq-q-text { flex: 1; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; transition: all .25s; }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--blue-light); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: transform .25s; }
.faq-item.open .faq-icon { background: rgba(30,111,255,0.2); border-color: var(--blue); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; padding-right: 40px; }

/* ─── FINAL CTA ─────────────────────────────── */
.final-cta-section { padding: 40px 40px; position: relative; z-index: 1; }
.final-cta-box { max-width: 860px; margin: 0 auto; border-radius: 20px; background: linear-gradient(135deg, rgba(30,111,255,0.16) 0%, rgba(0,212,255,0.08) 50%, rgba(30,111,255,0.12) 100%); border: 1px solid rgba(30,111,255,0.28); padding: 44px 52px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 0 60px rgba(30,111,255,0.12); }
.final-cta-box::before { content:''; position:absolute; top:-50%; left:50%; transform:translateX(-50%); width:500px; height:500px; border-radius:50%; background: radial-gradient(circle, rgba(30,111,255,0.14) 0%, transparent 70%); pointer-events:none; }
.final-cta-box h2 { font-family:'Sora',sans-serif; font-size:clamp(22px,3vw,32px); font-weight:700; letter-spacing:-.5px; margin-bottom:10px; position: relative; }
.final-cta-box p { font-size:15px; color:var(--text-secondary); margin-bottom:24px; max-width:440px; margin-left:auto; margin-right:auto; line-height:1.65; position: relative; }
.final-cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position: relative; }

/* ═══ ABOUT PAGE STYLES ═════════════════════════ */
.about-hero { padding: 148px 40px 88px; text-align: center; position: relative; z-index: 1; }
.about-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 24px; animation: fadeSlideUp .6s ease both; }
.about-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; }
.about-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 760px; margin: 0 auto 20px; animation: fadeSlideUp .7s .1s ease both; }
.about-hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.75; animation: fadeSlideUp .7s .2s ease both; }
.stats-section { padding: 0 40px 80px; position: relative; z-index: 1; }
.stats-grid { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all .3s; }
.stat-card:hover { border-color: var(--border-glow); background: var(--surface-hover); transform: translateY(-3px); }
.stat-number { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; background: linear-gradient(135deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.mission-section { padding: 0 40px 80px; position: relative; z-index: 1; }
.mission-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.mission-item { display: flex; gap: 16px; align-items: flex-start; }
.mission-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.mission-item-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.mission-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.values-section { padding: 0 40px 80px; position: relative; z-index: 1; }
.values-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.values-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all .3s; }
.value-card:hover { border-color: var(--border-glow); background: var(--surface-hover); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.value-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.value-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.cta-section { padding: 0 40px 100px; position: relative; z-index: 1; }
.cta-card { max-width: 860px; margin: 0 auto; background: linear-gradient(135deg, rgba(30,111,255,0.12), rgba(0,212,255,0.08)); border: 1px solid rgba(30,111,255,0.25); border-radius: var(--radius-lg); padding: 60px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(ellipse at 50% 0%, rgba(30,111,255,0.15), transparent 70%); pointer-events: none; }
.cta-title { font-family: 'Sora', sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 14px; position: relative; }
.cta-sub { font-size: 16px; color: var(--text-secondary); margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══ PRICING PAGE STYLES ═══════════════════════ */
.pricing-hero { padding: 148px 40px 80px; text-align: center; position: relative; z-index: 1; }
.pricing-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 24px; }
.pricing-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 760px; margin: 0 auto 20px; }
.pricing-hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.price-banner { margin: 0 40px 60px; background: linear-gradient(135deg, rgba(30,111,255,0.1), rgba(0,212,255,0.06)); border: 1px solid rgba(30,111,255,0.2); border-radius: var(--radius-lg); padding: 48px; text-align: center; position: relative; z-index: 1; max-width: 860px; margin-left: auto; margin-right: auto; }
.price-main { font-family: 'Sora', sans-serif; font-size: clamp(48px, 7vw, 80px); font-weight: 800; background: linear-gradient(135deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.price-per { font-size: 18px; color: var(--text-secondary); margin-top: 8px; margin-bottom: 32px; }
.price-stats { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.price-stat { padding: 0 32px; text-align: center; border-right: 1px solid var(--border); }
.price-stat:last-child { border-right: none; }
.price-stat-val { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-primary); }
.price-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.pricing-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto 80px; padding: 0 40px; position: relative; z-index: 1; }
.tier-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; transition: all .3s; position: relative; }
.tier-card.popular { border-color: var(--blue); background: rgba(30,111,255,0.06); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.tier-name { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.tier-price { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; margin-bottom: 4px; background: linear-gradient(135deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tier-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tier-features li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.tier-features li::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; background: rgba(30,111,255,0.15); border: 1px solid rgba(30,111,255,0.3); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--cyan); flex-shrink: 0; }

/* ═══ PRICING PAGE v2 ════════════════════════════ */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; flex-shrink: 0; }
.price-banner-v2 { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; background: rgba(30,111,255,0.07); border: 1px solid rgba(30,111,255,0.2); border-radius: var(--radius-lg); padding: 36px 48px; margin: 0 auto 80px; max-width: 860px; position: relative; overflow: hidden; z-index: 1; }
.price-banner-v2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(30,111,255,0.12) 0%, transparent 70%); pointer-events: none; }
.price-banner-item { text-align: center; position: relative; z-index: 1; }
.price-big { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1; background: linear-gradient(135deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-unit { font-size: 14px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.price-divider { width: 1px; height: 60px; background: var(--border); }
.price-stat-val { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 700; color: var(--text-primary); letter-spacing: -1px; line-height: 1; }
.price-stat-val .accent { color: var(--cyan); }
.price-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.pricing-features-section { padding: 0 40px 64px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.pricing-features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all .3s; text-align: center; }
.feature-card:hover { border-color: rgba(30,111,255,0.3); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px; background: linear-gradient(135deg, rgba(30,111,255,0.2), rgba(0,212,255,0.1)); border: 1px solid rgba(30,111,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.feature-title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.pricing-section { padding: 0 40px 80px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.cat-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.cat-tab { padding: 9px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; border: 1px solid var(--border); background: transparent; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.cat-tab:hover { border-color: rgba(30,111,255,0.4); color: var(--text-secondary); }
.cat-tab.active { background: rgba(30,111,255,0.15); border-color: rgba(30,111,255,0.5); color: var(--blue-light); }
.cat-group { margin-bottom: 56px; }
.cat-group-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.cat-group-label { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--cyan); white-space: nowrap; }
.cat-group-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(0,212,255,0.3), transparent); }
.cat-group-count { font-size: 11px; color: var(--text-muted); background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 2px 10px; border-radius: 100px; white-space: nowrap; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.pricing-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: all .3s; position: relative; overflow: hidden; }
.pricing-card:hover { border-color: rgba(30,111,255,0.4); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(30,111,255,0.1); }
.pricing-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(30,111,255,0.07) 0%, transparent 65%); pointer-events: none; opacity: 0; transition: opacity .3s; }
.pricing-card:hover::before { opacity: 1; }
.card-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.card-name { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 8px; line-height: 1.3; }
.card-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; display: inline-flex; align-items: center; gap: 4px; }
.badge-green { background: rgba(0,200,100,0.12); border: 1px solid rgba(0,200,100,0.25); color: #4AE57A; }
.badge-cyan  { background: var(--cyan-dim); border: 1px solid rgba(0,212,255,0.25); color: var(--cyan); }
.badge-blue  { background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.25); color: var(--blue-light); }
.card-pricing { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.card-price { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -1px; background: linear-gradient(135deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.card-price-per { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.card-divider { height: 1px; background: var(--border); margin: 16px 0; }
.card-stats { display: flex; gap: 16px; }
.card-stat { flex: 1; }
.card-stat-val { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.card-stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.card-cta { display: block; text-align: center; margin-top: 18px; padding: 10px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; text-decoration: none; transition: all .2s; background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.25); color: var(--blue-light); }
.card-cta:hover { background: rgba(30,111,255,0.2); border-color: rgba(30,111,255,0.5); transform: translateY(-1px); }
.calc-section { padding: 0 40px 80px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.calc-box { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; overflow: hidden; }
.calc-box::before { content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(30,111,255,0.1) 0%, transparent 70%); pointer-events: none; }
.calc-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.calc-title { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -.8px; line-height: 1.25; margin-bottom: 14px; }
.calc-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.calc-slider-wrap { margin-bottom: 24px; }
.calc-slider-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.calc-slider-name { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.calc-slider-val { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 2px; outline: none; cursor: pointer; background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) var(--pct, 30%), rgba(255,255,255,0.1) var(--pct, 30%)); transition: background .1s; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); cursor: pointer; box-shadow: 0 0 12px rgba(30,111,255,0.5); border: 2px solid rgba(255,255,255,0.2); }
.calc-result { background: rgba(30,111,255,0.08); border: 1px solid rgba(30,111,255,0.2); border-radius: var(--radius); padding: 28px 32px; position: relative; z-index: 1; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.calc-result-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
.calc-result-key { font-size: 14px; color: var(--text-secondary); }
.calc-result-val { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-primary); }
.calc-result-val.big { font-size: 28px; letter-spacing: -1px; color: var(--cyan); }
.calc-savings { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,200,100,0.12); border: 1px solid rgba(0,200,100,0.25); color: #4AE57A; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; margin-top: 8px; }
.faq-q { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 15px; font-weight: 600; gap: 16px; background: rgba(255,255,255,0.03); transition: background .2s; }
.faq-q:hover { background: rgba(255,255,255,0.05); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; width: 18px; height: 18px; color: var(--blue-light); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 16px 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.75; border-top: 1px solid var(--border); }
.cta-section { padding: 0 40px 100px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.cta-box { max-width: 860px; margin: 0 auto; background: linear-gradient(135deg, rgba(30,111,255,0.12), rgba(0,212,255,0.08)); border: 1px solid rgba(30,111,255,0.25); border-radius: var(--radius-lg); padding: 60px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(ellipse at 50% 0%, rgba(30,111,255,0.15), transparent 70%); pointer-events: none; }
.cta-title { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-desc { font-size: 17px; color: var(--text-secondary); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .pricing-features-grid { grid-template-columns: repeat(2,1fr); }
  .calc-box { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .price-banner-v2 { padding: 28px 24px; gap: 28px; }
  .price-big { font-size: 36px; }
  .pricing-section, .calc-section, .pricing-features-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-divider { display: none; }
}

/* ═══ CONTACT PAGE STYLES ═══════════════════════ */
.contact-hero { padding: 148px 40px 72px; text-align: center; position: relative; z-index: 1; }
.contact-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 24px; animation: fadeSlideUp .6s ease both; }
.contact-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; }
.contact-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 640px; margin: 0 auto 18px; animation: fadeSlideUp .7s .1s ease both; }
.contact-hero-sub { font-size: 16px; color: var(--text-secondary); max-width: 480px; margin: 0 auto; line-height: 1.75; animation: fadeSlideUp .7s .2s ease both; }
.info-section { padding: 0 40px 60px; position: relative; z-index: 1; }
.info-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; display: flex; gap: 18px; align-items: flex-start; transition: all .3s; }
.info-card:hover { border-color: var(--border-glow); background: var(--surface-hover); transform: translateY(-3px); }
.info-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.25); display: flex; align-items: center; justify-content: center; }
.info-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--blue-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.info-sub { font-size: 13px; color: var(--text-muted); }
.info-value a { color: inherit; text-decoration: none; transition: color .2s; }
.info-value a:hover { color: var(--blue-light); }
.contact-main { padding: 0 40px 100px; position: relative; z-index: 1; }
.contact-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; }
.form-card-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-card-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.form-label span { color: var(--blue-light); margin-left: 2px; }
.form-input, .form-select, .form-textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 14px; padding: 11px 14px; border-radius: var(--radius-sm); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--border-glow); box-shadow: 0 0 0 3px rgba(30,111,255,0.1); }
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: rgba(239,68,68,0.6); box-shadow: 0 0 0 3px rgba(239,68,68,0.08); }
.form-group.has-error .form-input:focus,
.form-group.has-error .form-select:focus,
.form-group.has-error .form-textarea:focus { border-color: rgba(239,68,68,0.8); box-shadow: 0 0 0 3px rgba(239,68,68,0.14); }
.form-error { font-size: 12px; color: #f87171; display: none; line-height: 1.4; }
.form-group.has-error .form-error { display: block; }
.form-server-error { font-size: 13px; color: #f87171; background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 14px; display: none; }
.form-server-error.visible { display: block; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-select option { background: #0d1120; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit { width: 100%; background: linear-gradient(135deg, var(--blue), #1050CC); border: none; color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; padding: 13px; border-radius: var(--radius-sm); cursor: pointer; transition: all .25s; box-shadow: 0 0 24px rgba(30,111,255,0.35); display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(30,111,255,0.55); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.side-panel { display: flex; flex-direction: column; gap: 20px; }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.side-card-title { font-size: 14px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.side-card-title-icon { width: 28px; height: 28px; border-radius: 7px; background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.hours-day { color: var(--text-secondary); }
.hours-time { color: var(--text-primary); font-weight: 500; }
.hours-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: rgba(0,212,100,0.1); border: 1px solid rgba(0,212,100,0.25); color: #4ade80; margin-top: 14px; }
.hours-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; animation: blink 2s infinite; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; text-align: left; color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; padding: 14px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color .2s; }
.faq-q:hover { color: var(--blue-light); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { font-size: 13px; color: var(--text-secondary); line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 14px; }
.social-row { display: flex; gap: 10px; }
.social-link { display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-secondary); text-decoration: none; font-size: 13px; font-weight: 500; transition: all .2s; flex: 1; justify-content: center; }
.social-link:hover { border-color: var(--border-glow); color: var(--text-primary); background: rgba(30,111,255,0.08); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.form-success.show { display: flex; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(0,212,100,0.12); border: 1px solid rgba(0,212,100,0.3); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.success-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.success-sub { font-size: 15px; color: var(--text-secondary); }

/* ═══ BLOG STYLES ═══════════════════════════════ */
.blog-hero { padding: 148px 40px 80px; text-align: center; position: relative; z-index: 1; }
.blog-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 24px; }
.blog-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 24px; animation: fadeSlideUp .6s ease both; }
.blog-hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; flex-shrink: 0; }
.blog-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 640px; margin: 0 auto 20px; }
.blog-hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; line-height: 1.75; }
.blog-layout { max-width: 1200px; margin: 0 auto; padding: 0 40px 80px; display: grid; grid-template-columns: 1fr 320px; gap: 48px; position: relative; z-index: 1; }
.posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 48px; }
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; }
.post-card:hover { border-color: rgba(30,111,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.post-card-image { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; }
.img-blue { background: linear-gradient(135deg, rgba(30,111,255,0.2), rgba(0,212,255,0.1)); }
.img-purple { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(167,139,250,0.1)); }
.img-green { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(52,211,153,0.1)); }
.img-orange { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(252,211,77,0.1)); }
.img-red { background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(252,165,165,0.1)); }
.img-cyan { background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(30,111,255,0.1)); }
.post-card-emoji { font-size: 48px; }
.cat-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.cat-tutorial { background: rgba(30,111,255,0.2); color: var(--blue-light); border: 1px solid rgba(30,111,255,0.3); }
.cat-guide { background: rgba(139,92,246,0.2); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); }
.cat-news { background: rgba(16,185,129,0.2); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.cat-deep-dive { background: rgba(245,158,11,0.2); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.cat-security { background: rgba(239,68,68,0.2); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }
.cat-opinion { background: rgba(0,212,255,0.15); color: var(--cyan); border: 1px solid rgba(0,212,255,0.3); }
.post-card-body { padding: 24px; }
.post-card-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.post-card-title a { color: var(--text-primary); text-decoration: none; transition: color .2s; }
.post-card-title a:hover { color: var(--blue-light); }
.post-card-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.post-card-meta { display: flex; align-items: center; gap: 10px; }
.post-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.post-author { font-size: 12px; font-weight: 600; }
.post-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 60px; }
.page-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-secondary); cursor: pointer; transition: all .2s; text-decoration: none; }
.page-btn:hover, .page-btn.current { background: rgba(30,111,255,0.15); border-color: rgba(30,111,255,0.3); color: var(--blue-light); }
.blog-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.sidebar-widget-title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-cats { display: flex; flex-direction: column; gap: 6px; }
.sidebar-cat { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-radius: var(--radius-sm); text-decoration: none; font-size: 13px; color: var(--text-secondary); transition: all .2s; }
.sidebar-cat:hover { background: rgba(30,111,255,0.1); color: var(--text-primary); }
.sidebar-cat-count { font-size: 11px; background: rgba(255,255,255,0.07); padding: 2px 8px; border-radius: 100px; }
.sidebar-subscribe input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 13px; margin-bottom: 10px; outline: none; }
.sidebar-subscribe input:focus { border-color: var(--blue); }

/* ── Blog home.php (blog.html class names) ────── */
.blog-main { min-width: 0; }
.posts-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.posts-section-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -.3px; }
.posts-count { font-size: 13px; color: var(--text-muted); }
.post-card-image { height: 160px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.post-img-icon { font-size: 44px; position: relative; z-index: 1; }
.post-cat-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.post-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.post-card-author { display: flex; align-items: center; gap: 7px; }
.author-avatar-sm { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.author-name-sm { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.post-date-sm { font-size: 12px; color: var(--text-muted); }
.cat-tutorial  { background: rgba(30,111,255,0.2);   border: 1px solid rgba(30,111,255,0.4);   color: var(--blue-light); }
.cat-guide     { background: rgba(0,212,255,0.12);   border: 1px solid rgba(0,212,255,0.3);    color: var(--cyan); }
.cat-news      { background: rgba(255,183,76,0.12);  border: 1px solid rgba(255,183,76,0.3);   color: #FFB74C; }
.cat-deep-dive { background: rgba(124,92,255,0.15);  border: 1px solid rgba(124,92,255,0.35);  color: #9B80FF; }
.cat-security  { background: rgba(80,250,123,0.1);   border: 1px solid rgba(80,250,123,0.3);   color: #50FA7B; }
.cat-opinion   { background: rgba(255,100,100,0.12); border: 1px solid rgba(255,100,100,0.3);  color: #FF8080; }
.page-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 0 16px rgba(30,111,255,0.4); }
.page-btn.arrow { color: var(--text-muted); }
.page-btn.arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
/* Sidebar cards (blog.html style) */
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-card-title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -.2px; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.sidebar-card-title svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.newsletter-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.newsletter-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 13px; padding: 10px 14px; border-radius: var(--radius-sm); outline: none; transition: border-color .2s; margin-bottom: 10px; display: block; }
.newsletter-input:focus { border-color: var(--border-glow); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn { width: 100%; background: linear-gradient(135deg, var(--blue), #1050CC); border: none; color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; padding: 11px; border-radius: var(--radius-sm); cursor: pointer; transition: all .25s; box-shadow: 0 0 20px rgba(30,111,255,0.3); }
.newsletter-btn:hover { box-shadow: 0 0 32px rgba(30,111,255,0.5); transform: translateY(-1px); }
.newsletter-note { font-size: 11px; color: var(--text-muted); margin-top: 8px; text-align: center; }
.category-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.category-list li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: var(--radius-sm); text-decoration: none; color: var(--text-secondary); font-size: 13px; font-weight: 500; transition: all .2s; }
.category-list li a:hover { background: rgba(30,111,255,0.08); color: var(--text-primary); }
.category-list li a span { font-size: 11px; color: var(--text-muted); background: rgba(255,255,255,0.06); padding: 2px 8px; border-radius: 100px; }
.popular-posts { display: flex; flex-direction: column; gap: 16px; }
.popular-post { display: flex; gap: 12px; align-items: flex-start; }
.popular-post-num { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: rgba(30,111,255,0.3); line-height: 1; flex-shrink: 0; width: 28px; }
.popular-post-body { flex: 1; }
.popular-post-title { font-size: 13px; font-weight: 600; line-height: 1.45; margin-bottom: 4px; }
.popular-post-title a { color: var(--text-primary); text-decoration: none; transition: color .2s; }
.popular-post-title a:hover { color: var(--blue-light); }
.popular-post-meta { font-size: 11px; color: var(--text-muted); }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 500; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; text-decoration: none; transition: all .2s; }
.tag-pill:hover { background: rgba(30,111,255,0.12); border-color: rgba(30,111,255,0.35); color: var(--blue-light); }

/* ═══ SINGLE POST STYLES ════════════════════════ */
/* Hero */
.post-hero { padding: 100px 40px 0; position: relative; z-index: 1; }
.post-hero-inner { max-width: 760px; margin: 0 auto; padding-top: 40px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.15); }
.breadcrumb-current { color: var(--text-secondary); }
.post-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.post-cat-pill { padding: 4px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.3); color: var(--cyan); }
.post-tag-pill { padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 500; background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text-muted); }
.post-title { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4.5vw, 46px); font-weight: 800; line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 20px; animation: fadeSlideUp .6s .1s ease both; }
.post-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; animation: fadeSlideUp .6s .2s ease both; }
.post-meta-bar { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; animation: fadeSlideUp .6s .3s ease both; }
.post-author-block { display: flex; align-items: center; gap: 12px; }
.author-avatar-lg { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; font-family: 'Sora', sans-serif; flex-shrink: 0; border: 2px solid rgba(30,111,255,0.3); }
.author-details { display: flex; flex-direction: column; gap: 2px; }
.author-name-lg { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); }
.meta-divider { width: 1px; height: 32px; background: var(--border); }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.meta-item svg { width: 14px; height: 14px; stroke: var(--text-muted); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.meta-item strong { color: var(--text-secondary); font-weight: 500; }
/* Hero image */
.post-hero-image { max-width: 1200px; margin: 0 auto; padding: 40px 40px 0; position: relative; z-index: 1; }
.post-hero-img-box { border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(30,111,255,0.18) 0%, rgba(0,212,255,0.1) 50%, rgba(30,111,255,0.12) 100%); border: 1px solid rgba(30,111,255,0.2); height: 420px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.post-hero-img-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,212,255,0.12) 0%, transparent 70%); }
.post-hero-icon { font-size: 96px; position: relative; z-index: 1; filter: drop-shadow(0 0 40px rgba(0,212,255,0.4)); }
.post-hero-img-caption { text-align: center; margin-top: 12px; font-size: 13px; color: var(--text-muted); font-style: italic; }
/* Post layout */
.post-layout { max-width: 1200px; margin: 0 auto; padding: 56px 40px 100px; display: grid; grid-template-columns: 1fr 280px; gap: 60px; position: relative; z-index: 1; }
.article-body { min-width: 0; }
/* Share bar */
.article-actions { display: flex; align-items: center; gap: 10px; margin-bottom: 44px; padding-bottom: 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.action-label { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-right: 4px; }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; transition: all .2s; text-decoration: none; }
.share-btn:hover { background: rgba(30,111,255,0.12); border-color: rgba(30,111,255,0.3); color: var(--blue-light); }
.bookmark-btn { margin-left: auto; display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif; }
.bookmark-btn:hover { background: rgba(30,111,255,0.12); border-color: rgba(30,111,255,0.3); color: var(--blue-light); }
/* Prose (article body typography) */
.prose { font-size: 16px; color: var(--text-secondary); line-height: 1.85; }
.prose h2 { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: -.4px; line-height: 1.3; margin-top: 52px; margin-bottom: 18px; color: var(--text-primary); scroll-margin-top: 88px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.2px; line-height: 1.35; margin-top: 36px; margin-bottom: 14px; color: var(--text-primary); scroll-margin-top: 88px; }
.prose p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--blue-light); text-decoration: none; border-bottom: 1px solid rgba(107,170,255,0.3); transition: border-color .2s, color .2s; }
.prose a:hover { color: var(--cyan); border-bottom-color: var(--cyan); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; }
.prose li { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }
.prose ul li::marker { color: var(--blue); }
.prose ol li::marker { color: var(--cyan); font-weight: 700; font-family: 'Sora', sans-serif; }
.prose blockquote { background: rgba(30,111,255,0.07); border: 1px solid rgba(30,111,255,0.18); border-left: 4px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; margin: 32px 0; }
.prose blockquote p { font-size: 17px; color: var(--text-primary); font-style: italic; line-height: 1.7; margin: 0; }
.prose code { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 5px; padding: 2px 7px; font-size: 14px; font-family: 'JetBrains Mono', monospace; color: var(--cyan); }
.prose pre { background: #0D1117; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow-x: auto; margin: 28px 0; padding: 20px; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.9; }
.prose pre code { background: none; border: none; padding: 0; font-size: 13px; color: inherit; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 44px 0; }
.prose img { max-width: 100%; border-radius: var(--radius); margin: 24px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 28px 0; background: rgba(255,255,255,0.03); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.prose th { text-align: left; padding: 14px 18px; background: rgba(255,255,255,0.05); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.prose td { padding: 13px 18px; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.04); }
.prose tr:last-child td { border-bottom: none; }
/* Post tags footer */
.post-tags { display: flex; align-items: center; gap: 8px; margin-top: 52px; flex-wrap: wrap; }
.post-tags-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.post-tag { padding: 5px 13px; border-radius: 100px; font-size: 12px; font-weight: 500; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-secondary); text-decoration: none; transition: all .2s; }
.post-tag:hover { background: rgba(30,111,255,0.12); border-color: rgba(30,111,255,0.35); color: var(--blue-light); }
/* Author bio */
.author-bio { margin-top: 52px; padding: 28px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.author-bio-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.author-bio-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; font-family: 'Sora', sans-serif; flex-shrink: 0; border: 2px solid rgba(30,111,255,0.4); }
.author-bio-info { flex: 1; }
.author-bio-name { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 3px; }
.author-bio-role { font-size: 13px; color: var(--text-muted); }
.author-bio p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
/* Post sidebar */
.post-sidebar { position: sticky; top: 88px; align-self: start; display: flex; flex-direction: column; gap: 20px; }
/* Reading progress */
.read-progress-wrap { }
.read-progress-label { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; display: flex; justify-content: space-between; }
.read-progress-bar { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.read-progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px; width: 0%; transition: width .3s; }
/* TOC card */
.toc-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.toc-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.toc-title svg { width: 13px; height: 13px; stroke: var(--text-muted); fill: none; stroke-width: 2; flex-shrink: 0; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list li a { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); text-decoration: none; padding: 7px 10px; border-radius: var(--radius-sm); transition: all .2s; line-height: 1.45; border-left: 2px solid transparent; }
.toc-list li a:hover { color: var(--text-primary); background: rgba(30,111,255,0.08); border-left-color: var(--blue); }
.toc-list li a.active { color: var(--blue-light); background: rgba(30,111,255,0.1); border-left-color: var(--blue); }
.toc-list .toc-h3 a { padding-left: 22px; font-size: 12px; }
.toc-num { font-size: 11px; color: var(--text-muted); flex-shrink: 0; margin-top: 1px; font-weight: 600; }
/* Sidebar CTA */
.sidebar-cta-card { background: linear-gradient(135deg, rgba(30,111,255,0.14) 0%, rgba(0,212,255,0.07) 100%); border: 1px solid rgba(30,111,255,0.25); border-radius: var(--radius-lg); padding: 22px; text-align: center; position: relative; overflow: hidden; }
.sidebar-cta-card::before { content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(30,111,255,0.18) 0%, transparent 70%); pointer-events: none; }
.sidebar-cta-icon { font-size: 36px; margin-bottom: 12px; position: relative; z-index: 1; }
.sidebar-cta-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.sidebar-cta-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; position: relative; z-index: 1; }
.sidebar-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 11px; background: linear-gradient(135deg, var(--blue), #1050CC); border: none; border-radius: var(--radius-sm); color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .25s; text-decoration: none; box-shadow: 0 0 20px rgba(30,111,255,0.3); position: relative; z-index: 1; }
.sidebar-cta-btn:hover { box-shadow: 0 0 32px rgba(30,111,255,0.5); transform: translateY(-1px); }
/* Post navigation */
.post-nav { max-width: 1200px; margin: 0 auto; padding: 0 40px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 1; }
.post-nav-item { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; text-decoration: none; transition: all .3s; display: flex; gap: 16px; align-items: center; }
.post-nav-item:hover { border-color: rgba(30,111,255,0.3); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.post-nav-arrow { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; }
.post-nav-arrow svg { width: 16px; height: 16px; stroke: var(--blue-light); fill: none; stroke-width: 2; stroke-linecap: round; }
.post-nav-content { flex: 1; min-width: 0; }
.post-nav-dir { font-size: 11px; color: var(--text-muted); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 5px; }
.post-nav-title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.4; }
.post-nav-item.next { flex-direction: row-reverse; text-align: right; }
/* Related posts */
.related-section { max-width: 1200px; margin: 0 auto; padding: 0 40px 100px; position: relative; z-index: 1; }
.related-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.related-header-line { flex: 1; height: 1px; background: var(--border); }
.related-header-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; white-space: nowrap; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.related-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; }
.related-card:hover { border-color: rgba(30,111,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.related-card-img { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 40px; position: relative; }
.related-card-body { padding: 18px; }
.related-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
.related-card-title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.related-card-title a { color: var(--text-primary); text-decoration: none; transition: color .2s; }
.related-card-title a:hover { color: var(--blue-light); }
.related-card-meta { font-size: 12px; color: var(--text-muted); }
/* Old compat aliases */
.related-posts { padding: 0 40px 80px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.related-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }

/* ═══ LEGAL PAGE STYLES ═════════════════════════ */
.legal-hero { padding: 148px 40px 60px; text-align: center; position: relative; z-index: 1; }
.legal-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 13px; color: var(--blue-light); font-weight: 500; margin-bottom: 24px; }
.legal-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 640px; margin: 0 auto 20px; }
.legal-meta { font-size: 14px; color: var(--text-muted); display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.legal-layout { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; display: grid; grid-template-columns: 260px 1fr; gap: 48px; position: relative; z-index: 1; }
.legal-sidebar { position: sticky; top: 88px; }
.legal-toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.legal-toc-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.legal-toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.legal-toc-list a { font-size: 13px; color: var(--text-secondary); text-decoration: none; padding: 7px 12px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 8px; transition: all .2s; border-left: 2px solid transparent; }
.legal-toc-list a:hover, .legal-toc-list a.active { color: var(--blue-light); background: rgba(30,111,255,0.08); border-left-color: var(--blue); }
.legal-content { }
.legal-section { margin-bottom: 48px; scroll-margin-top: 88px; }
.legal-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.legal-section-num { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: var(--cyan); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.legal-section-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; }
.legal-body { font-size: 15px; color: var(--text-secondary); line-height: 1.85; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--blue-light); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-highlight { background: rgba(30,111,255,0.06); border: 1px solid rgba(30,111,255,0.15); border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; font-size: 14px; color: var(--text-secondary); }

/* ═══ GET STARTED PAGE ══════════════════════════ */
.gs-hero { padding: 148px 40px 80px; text-align: center; position: relative; z-index: 1; }
.gs-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); font-size: 13px; color: #6ee7b7; font-weight: 500; margin-bottom: 24px; }
.gs-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 760px; margin: 0 auto 20px; }
.gs-hero-sub { font-size: 17px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.gs-strip { max-width: 860px; margin: 40px auto 0; padding: 0 40px; display: flex; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); position: relative; z-index: 1; }
.gs-strip-item { flex: 1; padding: 20px 24px; text-align: center; border-right: 1px solid var(--border); }
.gs-strip-item:last-child { border-right: none; }
.gs-strip-val { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-primary); }
.gs-strip-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.gs-steps { max-width: 1100px; margin: 80px auto 0; padding: 0 40px; position: relative; z-index: 1; }
.gs-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gs-step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all .3s; }
.gs-step-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.gs-step-num { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: var(--cyan); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); padding: 3px 10px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.gs-step-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.gs-step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.gs-code { background: #0D1117; border-radius: var(--radius-sm); padding: 16px; font-family: 'JetBrains Mono', monospace; font-size: 12px; line-height: 1.8; overflow-x: auto; border: 1px solid rgba(255,255,255,0.06); }

/* ═══ SOLUTIONS PAGE ════════════════════════════ */
.solutions-hero { padding: 148px 40px 80px; text-align: center; position: relative; z-index: 1; }
.solutions-grid { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; z-index: 1; }
.solution-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all .3s; }
.solution-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.solution-card-icon { font-size: 32px; margin-bottom: 16px; }
.solution-card-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.solution-card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.solution-card-link { font-size: 13px; color: var(--blue-light); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.solution-card-link:hover { color: var(--cyan); }

/* ═══ GENERIC PAGE ══════════════════════════════ */
.page-hero { padding: 148px 40px 60px; text-align: center; position: relative; z-index: 1; }
.page-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.page-content-wrap { max-width: 860px; margin: 0 auto; padding: 0 40px 80px; position: relative; z-index: 1; }
.entry-content { font-size: 16px; line-height: 1.85; color: var(--text-secondary); }
.entry-content h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700; color: var(--text-primary); margin: 40px 0 16px; }
.entry-content h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 600; color: var(--text-primary); margin: 32px 0 12px; }
.entry-content p { margin-bottom: 20px; color: var(--text-secondary); }
.entry-content a { color: var(--blue-light); }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; color: var(--text-secondary); }
.entry-content li { margin-bottom: 8px; }

/* ═══ FOOTER STYLES ═════════════════════════════ */
footer { background: var(--bg-start); border-top: 1px solid var(--border); padding: 64px 40px 0; position: relative; z-index: 1; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-products-section { margin-bottom: 52px; }
.footer-products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px 32px; }
.footer-cat-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(0,212,255,0.15); }
.footer-cat-col ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.footer-cat-col a { font-size: 13px; color: var(--text-secondary); text-decoration: none; padding: 3px 0; transition: color .15s; display: flex; align-items: center; gap: 6px; }
.footer-cat-col a::before { content: '›'; color: var(--blue-light); opacity: 0.5; transition: opacity .15s; }
.footer-cat-col a:hover { color: var(--text-primary); }
.footer-cat-col a:hover::before { opacity: 1; }
.footer-divider { height: 1px; background: var(--border); margin-bottom: 48px; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 14px; max-width: 260px; margin-bottom: 20px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--text-primary); }
.connect-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.connect-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.connect-icon svg { width: 15px; height: 15px; stroke: var(--blue-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.connect-label { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 2px; }
.connect-value { font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: color .2s; display: block; }
.connect-value:hover { color: var(--text-primary); }
.social-icons { display: flex; gap: 10px; margin-top: 8px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all .2s; text-decoration: none; color: var(--text-muted); }
.social-btn:hover { background: rgba(30,111,255,0.15); border-color: rgba(30,111,255,0.4); color: var(--blue-light); transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-soc { display: flex; gap: 8px; font-size: 12px; color: var(--text-muted); }
.soc-badge { background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 4px 10px; border-radius: 100px; }

/* ─── MOBILE HAMBURGER ─────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  border-radius: var(--radius-sm); transition: background .2s; z-index: 1000;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.05); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV OVERLAY ─────────────────── */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(11,15,26,0.98); backdrop-filter: blur(24px);
  z-index: 98; overflow-y: auto; padding: 16px 20px 48px;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-section-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); padding: 20px 12px 8px; opacity: 0.8;
}
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-links a { display: block; padding: 11px 14px; color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; border-radius: var(--radius-sm); transition: all .15s; }
.mobile-nav-links a:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.mobile-nav-links a.active { color: var(--blue-light); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 12px 0; }
.mobile-nav-cta { margin-top: 20px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }
.mobile-lang { display: flex; gap: 8px; padding: 8px 12px; flex-wrap: wrap; }
.mobile-lang-btn { padding: 6px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-secondary); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.mobile-lang-btn.active { background: rgba(30,111,255,0.15); border-color: rgba(30,111,255,0.4); color: var(--blue-light); }

/* ═══ RESPONSIVE ════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-tiers { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero { padding: 90px 20px 60px; }
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .api-split { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-products-grid { grid-template-columns: repeat(3,1fr); }
  .hiw-steps { flex-direction: column; align-items: center; }
  .hiw-connector { display: none; }
  .final-cta-box { padding: 36px 24px; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-sticky { position: static; }
  footer { padding: 48px 20px 0; }
  .mc-grid { grid-template-columns: repeat(2,1fr); }
  .about-hero, .pricing-hero, .contact-hero, .blog-hero, .gs-hero, .legal-hero, .solutions-hero { padding-left: 20px; padding-right: 20px; }
  .stats-section, .mission-section, .values-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .blog-layout { padding: 0 20px 60px; }
  .gs-steps { padding: 0 20px; }
  .gs-strip { margin: 40px 20px 0; }
  .solutions-grid { padding: 0 20px 60px; grid-template-columns: 1fr 1fr; }
  .info-section { padding: 0 20px 40px; }
  .pricing-tiers { padding: 0 20px; }
  .posts-grid { grid-template-columns: 1fr; }
  .gs-steps-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .post-hero { padding: 100px 20px 0; }
  .post-hero-image { padding: 20px 20px 0; }
  .post-hero-img-box { height: 240px; }
  .post-layout { padding: 40px 20px 80px; }
  .related-section, .post-nav { padding-left: 20px; padding-right: 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-posts { padding: 0 20px 60px; }
  .meta-divider { display: none; }
  .article-actions { flex-wrap: wrap; }
  .bookmark-btn { margin-left: 0; }
  .legal-layout { padding: 0 20px 60px; }
  .legal-meta { align-items: flex-start; }
  .legal-related { justify-content: flex-start; }
  .page-content-wrap { padding: 0 20px 60px; }
  .contact-main { padding-left: 20px; padding-right: 20px; }
  .side-panel { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-products-grid { grid-template-columns: 1fr 1fr; }
  .hero-metrics { gap: 28px; }
  .metric-divider { display: none; }
  .mc-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 24px; }
  .gs-strip { flex-direction: column; }
  .gs-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .gs-strip-item:last-child { border-bottom: none; }
  .price-stats { flex-direction: column; gap: 16px; }
  .price-stat { border-right: none; }
  .contact-hero { padding: 120px 20px 56px; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .side-panel { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   SOLUTIONS PAGE
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
.solutions-hero {
  padding: 120px 40px 80px; text-align: center; position: relative; z-index: 1;
}
.solutions-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800; line-height: 1.08; letter-spacing: -2px;
  max-width: 820px; margin: 0 auto 22px;
}
.solutions-hero-sub {
  margin: 0 auto 40px; max-width: 580px;
  font-size: 18px; color: var(--text-secondary); line-height: 1.75;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ── Stats Bar ── */
.stats-bar {
  display: flex; align-items: center; justify-content: center; gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 40px; position: relative; z-index: 1;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 48px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.stat-val .accent { color: var(--cyan); }
.stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 5px; font-weight: 500; }

/* ── Category Overview ── */
.overview-section { max-width: 1280px; margin: 0 auto; padding: 80px 40px; }
.overview-section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.overview-section .section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.2; margin-bottom: 14px;
}
.overview-section .section-desc {
  font-size: 16px; color: var(--text-secondary); max-width: 520px;
  margin: 0 auto; line-height: 1.75;
}
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.overview-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  cursor: pointer; transition: all .3s; position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.overview-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(30,111,255,0.1) 0%, transparent 65%);
  opacity: 0; transition: opacity .3s;
}
.overview-card:hover { border-color: rgba(30,111,255,0.4); transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(30,111,255,0.1); }
.overview-card:hover::before { opacity: 1; }
.ov-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.ov-icon {
  width: 52px; height: 52px; border-radius: 14px; font-size: 24px;
  background: linear-gradient(135deg, rgba(30,111,255,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(30,111,255,0.25);
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.overview-card:hover .ov-icon { background: linear-gradient(135deg, rgba(30,111,255,0.3), rgba(0,212,255,0.2)); box-shadow: 0 0 24px rgba(30,111,255,0.3); }
.ov-count {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan); letter-spacing: .5px;
}
.ov-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -.4px; margin-bottom: 10px; }
.ov-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.ov-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.ov-pill {
  font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); white-space: nowrap;
}
.ov-arrow {
  display: flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 12px; font-weight: 600; color: var(--blue-light);
  opacity: 0; transform: translateX(-6px); transition: all .25s;
}
.overview-card:hover .ov-arrow { opacity: 1; transform: translateX(0); }

/* ── Section Divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,111,255,0.3), rgba(0,212,255,0.3), transparent);
  margin: 0 40px;
}

/* ── Category Detail Sections ── */
.cat-section { max-width: 1280px; margin: 0 auto; padding: 80px 40px; scroll-margin-top: 80px; }
.cat-section-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }
.cat-section-hero.reverse { direction: rtl; }
.cat-section-hero.reverse > * { direction: ltr; }
.cat-hero-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.cat-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
.cat-hero-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }
.cat-hero-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cat-point { display: flex; align-items: flex-start; gap: 12px; }
.cat-point-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(30,111,255,0.15); border: 1px solid rgba(30,111,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.cat-point-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.cat-point-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.cat-point-text strong { color: var(--text-primary); }
.cat-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Visual Panels ── */
.cat-visual-panel {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.panel-topbar {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border);
  padding: 14px 20px; display: flex; align-items: center; gap: 8px;
}
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-dot-r { background: #FF5F57; }
.panel-dot-y { background: #FEBC2E; }
.panel-dot-g { background: #28C840; }
.panel-title-sm { font-size: 12px; color: var(--text-muted); margin-left: 6px; }
.panel-body { padding: 24px; }

/* reCAPTCHA panel */
.rc-panel-grid { display: flex; flex-direction: column; gap: 12px; }
.rc-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--border); transition: all .2s; }
.rc-item:hover { border-color: rgba(30,111,255,0.3); background: rgba(30,111,255,0.05); }
.rc-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; min-width: 40px; text-align: center; flex-shrink: 0; }
.rc-v1 { background: rgba(255,100,100,0.12); border: 1px solid rgba(255,100,100,0.25); color: #FF8888; }
.rc-v2 { background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.25); color: var(--blue-light); }
.rc-v3 { background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.25); color: var(--cyan); }
.rc-ent { background: rgba(160,100,255,0.12); border: 1px solid rgba(160,100,255,0.25); color: #C084FF; }
.rc-inv { background: rgba(100,200,100,0.12); border: 1px solid rgba(100,200,100,0.25); color: #6EE7A0; }
.rc-name { font-size: 13px; font-weight: 600; flex: 1; }
.rc-latency { font-size: 11px; color: var(--cyan); font-weight: 600; margin-right: 8px; }
.rc-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(0,200,100,0.15); border: 1px solid rgba(0,200,100,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #4AE57A; font-size: 11px; font-weight: 700; }

/* Cloud panel */
.cloud-panel { display: flex; flex-direction: column; gap: 12px; }
.cloud-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.cloud-logo { width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.cloud-logo-aws { background: rgba(255,153,0,0.12); border: 1px solid rgba(255,153,0,0.25); }
.cloud-logo-cf  { background: rgba(255,100,0,0.12); border: 1px solid rgba(255,100,0,0.25); }
.cloud-logo-tc  { background: rgba(0,150,255,0.12); border: 1px solid rgba(0,150,255,0.25); }
.cloud-info { flex: 1; }
.cloud-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.cloud-sub  { font-size: 11px; color: var(--text-muted); }
.cloud-stat { text-align: right; }
.cloud-stat-val { font-size: 12px; font-weight: 700; color: var(--cyan); }
.cloud-stat-lbl { font-size: 10px; color: var(--text-muted); }

/* Media panel */
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.media-item { padding: 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--border); text-align: center; transition: all .2s; }
.media-item:hover { border-color: rgba(30,111,255,0.3); }
.media-icon { font-size: 26px; margin-bottom: 8px; }
.media-name { font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.media-lat  { font-size: 11px; color: var(--cyan); }

/* Interactive panel */
.interactive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.int-item { padding: 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; align-items: center; transition: all .2s; }
.int-item:hover { border-color: rgba(30,111,255,0.3); }
.int-icon { font-size: 28px; }
.int-name { font-size: 12px; font-weight: 600; text-align: center; }
.int-solved { font-size: 10px; color: #4AE57A; font-weight: 600; }

/* Third-party panel */
.tp-list { display: flex; flex-direction: column; gap: 10px; }
.tp-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--border); transition: all .2s; }
.tp-item:hover { border-color: rgba(30,111,255,0.3); }
.tp-logo { width: 38px; height: 38px; border-radius: 10px; background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.tp-name { font-size: 13px; font-weight: 600; flex: 1; }
.tp-tag { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); color: var(--cyan); }

/* AI behavioral panel */
.ai-list { display: flex; flex-direction: column; gap: 10px; }
.ai-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--border); transition: all .2s; }
.ai-item:hover { border-color: rgba(160,100,255,0.3); }
.ai-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(160,100,255,0.1); border: 1px solid rgba(160,100,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ai-name { font-size: 13px; font-weight: 600; flex: 1; }
.ai-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 100px; background: rgba(160,100,255,0.12); border: 1px solid rgba(160,100,255,0.25); color: #C084FF; }

/* Generic panel list (fallback for custom categories) */
.generic-list { display: flex; flex-direction: column; gap: 10px; }
.generic-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--border); transition: all .2s; }
.generic-item:hover { border-color: rgba(30,111,255,0.3); }
.generic-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.generic-name { font-size: 13px; font-weight: 600; flex: 1; }
.generic-tag { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); color: var(--cyan); }

/* ── Solver Cards ── */
.solver-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; margin-top: 8px; }
.solver-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.solver-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0; transition: opacity .3s;
}
.solver-card:hover { border-color: rgba(30,111,255,0.4); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(30,111,255,0.1); }
.solver-card:hover::after { opacity: 1; }
.solver-icon { width: 44px; height: 44px; border-radius: 12px; font-size: 22px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; flex-shrink: 0; }
.solver-name { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 8px; line-height: 1.3; }
.solver-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.solver-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.solver-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; display: inline-flex; align-items: center; gap: 4px; }
.tag-green  { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.25); color: #4AE57A; }
.tag-cyan   { background: var(--cyan-dim); border: 1px solid rgba(0,212,255,0.25); color: var(--cyan); }
.tag-blue   { background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.25); color: var(--blue-light); }
.tag-purple { background: rgba(160,100,255,0.1); border: 1px solid rgba(160,100,255,0.25); color: #C084FF; }
.solver-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.solver-price { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.solver-price span { color: var(--cyan); }
.solver-cta { font-size: 12px; font-weight: 600; color: var(--blue-light); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: gap .2s; }
.solver-cta:hover { gap: 8px; }

/* ── How It Works (Solutions) ── */
.hiw-section { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 40px; }
.hiw-inner { max-width: 1160px; margin: 0 auto; }
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-steps { display: flex; align-items: flex-start; }
.hiw-step { flex: 1; text-align: center; padding: 0 24px; }
.hiw-connector { flex: 0 0 80px; height: 2px; margin-top: 32px; background: linear-gradient(90deg, rgba(30,111,255,0.2), rgba(0,212,255,0.2)); position: relative; overflow: hidden; }
.hiw-connector::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: connFlow 3s ease-in-out infinite; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: rgba(30,111,255,0.12); border: 2px solid rgba(30,111,255,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue-light); transition: all .3s; }
.hiw-step:hover .step-num { background: rgba(30,111,255,0.25); border-color: var(--blue); box-shadow: 0 0 30px rgba(30,111,255,0.4); }
.step-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; max-width: 180px; margin: 0 auto; }

/* ── Solutions Responsive ── */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-section-hero { grid-template-columns: 1fr; gap: 40px; }
  .cat-section-hero.reverse { direction: ltr; }
  .hiw-connector { display: none; }
  .hiw-steps { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .hiw-step { flex: 0 0 160px; }
}
@media (max-width: 768px) {
  .solutions-hero { padding: 110px 20px 60px; }
  .stats-bar { padding: 20px; }
  .stat-item { padding: 12px 20px; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-section, .cat-section { padding: 48px 20px; }
  .solver-grid { grid-template-columns: 1fr 1fr; }
  .media-grid, .interactive-grid { grid-template-columns: 1fr 1fr; }
  .hiw-section { padding: 48px 20px; }
}
@media (max-width: 480px) {
  .solver-grid { grid-template-columns: 1fr; }
  .media-grid, .interactive-grid { grid-template-columns: 1fr; }
  .stat-item { width: 100%; border-right: none; }
}

/* ═══════════════════════════════════════════════
   CATEGORY PAGE (taxonomy-fc_captcha_cat)
   ═══════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.cat-breadcrumb {
  position: relative; z-index: 1;
  padding: 88px 40px 0;
}
.cat-breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.cat-breadcrumb-inner a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.cat-breadcrumb-inner a:hover { color: var(--text-primary); }
.bc-sep { color: var(--border); }
.bc-current { color: var(--text-secondary); }

/* ── Category Hero ── */
.cat-page-hero { position: relative; z-index: 1; padding: 40px 40px 60px; }
.cat-page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cat-page-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 20px; margin-top: 16px;
}
.cat-page-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }
.cat-page-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ── Stats Strip ── */
.cat-stats-strip {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 40px; position: relative; z-index: 1; flex-wrap: wrap;
}
.cat-stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 40px; text-align: center; }
.cat-stat-val { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.cat-stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.cat-stat-sep { width: 1px; height: 40px; background: var(--border); }

/* ── Solvers Section ── */
.cat-page-solvers { max-width: 1280px; margin: 0 auto; padding: 64px 40px; }
.cat-page-solvers-header { text-align: center; margin-bottom: 40px; }
.cat-page-solvers-title { font-family: 'Sora', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -1px; margin-bottom: 12px; }
.cat-page-solvers-desc { font-size: 15px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.cat-page-empty { text-align: center; padding: 60px 0; color: var(--text-muted); }
.cat-page-empty p { margin-bottom: 24px; }

/* ── Other Categories ── */
.cat-page-others { max-width: 1280px; margin: 0 auto; padding: 0 40px 64px; }
.cat-page-others-title {
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: -.5px; margin-bottom: 20px; color: var(--text-secondary);
}
.cat-page-others-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.cat-other-card {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; color: inherit;
  transition: all .25s;
}
.cat-other-card:hover { border-color: rgba(30,111,255,0.35); background: rgba(30,111,255,0.05); transform: translateY(-2px); }
.cat-other-icon { font-size: 22px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(30,111,255,0.1); border: 1px solid rgba(30,111,255,0.2); flex-shrink: 0; }
.cat-other-info { flex: 1; }
.cat-other-name { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 2px; }
.cat-other-count { font-size: 11px; color: var(--text-muted); }
.cat-other-arrow { color: var(--blue-light); opacity: 0; transition: opacity .2s; }
.cat-other-card:hover .cat-other-arrow { opacity: 1; }

/* ── Category Page Responsive ── */
@media (max-width: 1024px) {
  .cat-page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .cat-page-hero-panel { order: -1; }
}
@media (max-width: 768px) {
  .cat-breadcrumb { padding: 80px 20px 0; }
  .cat-page-hero { padding: 24px 20px 40px; }
  .cat-stats-strip { padding: 16px 20px; }
  .cat-stat-item { padding: 0 20px; }
  .cat-stat-sep { display: none; }
  .cat-page-solvers { padding: 40px 20px; }
  .cat-page-others { padding: 0 20px 40px; }
  .cat-page-others-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SOLVER SINGLE PAGE  (single-fc_captcha_solver.php)
   Matches recaptcha-v1-solver-api.html class names exactly
═══════════════════════════════════════════════════════ */

/* ── Page Wrap ── */
.page-wrap { position: relative; z-index: 1; }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--text-secondary); }
.breadcrumb-sep { color: var(--border); font-size: 16px; }
.breadcrumb-cur { color: var(--blue-light); }

/* ── Solver Hero ── */
.solver-hero { padding: 120px 40px 80px; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-left { animation: fadeSlideUp .7s ease both; }
.hero-right { animation: fadeSlideUp .7s .15s ease both; }
.hero-title { font-family: 'Sora', sans-serif; font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 18px; }
.hero-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; }
.tag-green  { background: rgba(74,229,122,0.1);  border: 1px solid rgba(74,229,122,0.25); color: #4AE57A; }
.tag-cyan   { background: rgba(0,212,255,0.1);   border: 1px solid rgba(0,212,255,0.25);  color: var(--cyan); }
.tag-blue   { background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3);  color: var(--blue-light); }
.tag-orange { background: rgba(255,153,0,0.1);   border: 1px solid rgba(255,153,0,0.25);  color: #FFB340; }
.hero-ctas  { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Captcha Window (hero visual) ── */
.captcha-window { background: #0D1117; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04), 0 0 60px rgba(30,111,255,0.12); }
.cw-topbar { background: #161B22; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 18px; display: flex; align-items: center; gap: 8px; }
.win-dot { width: 10px; height: 10px; border-radius: 50%; }
.cw-title { font-size: 12px; color: var(--text-muted); margin-left: 6px; }
.cw-body { padding: 24px; }

/* reCAPTCHA v1 mock challenge */
.rc1-challenge { background: #fff; border-radius: 6px; padding: 16px; margin-bottom: 16px; }
.rc1-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.rc1-logo { font-size: 11px; font-weight: 700; color: #555; }
.rc1-controls { display: flex; gap: 8px; }
.rc1-btn { width: 26px; height: 26px; border-radius: 4px; background: #f0f0f0; border: 1px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; }
.rc1-image-box { position: relative; background: linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); border-radius: 4px; height: 90px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 10px; }
.rc1-image-box::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(255,255,255,0.03) 0,rgba(255,255,255,0.03) 1px,transparent 1px,transparent 6px); }
.rc1-image-box::after  { content:''; position:absolute; inset:0; background:repeating-linear-gradient(-30deg,transparent 0,transparent 8px,rgba(255,255,255,0.02) 8px,rgba(255,255,255,0.02) 9px); }
.rc1-text-chars { display: flex; gap: 2px; position: relative; z-index: 1; }
.rc1-char { font-family:'Sora',sans-serif; font-weight:800; font-size:26px; display:inline-block; text-shadow:1px 1px 3px rgba(0,0,0,0.5); }
.rc1-input-row { display: flex; gap: 6px; }
.rc1-input { flex:1; background:#f9f9f9; border:1px solid #ccc; border-radius:3px; padding:6px 10px; font-size:13px; color:#333; outline:none; font-family:monospace; }
.rc1-submit { background:#4a90d9; color:#fff; border:none; border-radius:3px; padding:6px 14px; font-size:12px; font-weight:600; cursor:pointer; white-space:nowrap; }

/* Solving overlay */
.solving-overlay { background:rgba(11,15,26,0.95); border:1px solid rgba(30,111,255,0.25); border-radius:var(--radius); padding:16px 18px; display:flex; flex-direction:column; gap:10px; }
.solving-row { display:flex; align-items:center; gap:10px; }
.solving-spinner { width:16px; height:16px; border-radius:50%; border:2px solid rgba(30,111,255,0.2); border-top-color:var(--cyan); animation:spin .7s linear infinite; flex-shrink:0; }
.solving-text { font-size:12px; color:var(--cyan); font-weight:600; }
.solving-progress { height:3px; background:rgba(255,255,255,0.06); border-radius:100px; overflow:hidden; }
.solving-bar { height:100%; background:linear-gradient(90deg,var(--blue),var(--cyan)); border-radius:100px; animation:loadBar 1.8s ease forwards; }
@keyframes loadBar { from{width:0%} to{width:100%} }
.solving-result { background:rgba(74,229,122,0.08); border:1px solid rgba(74,229,122,0.2); border-radius:6px; padding:10px 14px; }
.solving-result-label { font-size:10px; font-weight:700; color:var(--text-muted); letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
.solving-result-token { font-family:'Courier New',monospace; font-size:11px; color:#4AE57A; word-break:break-all; line-height:1.5; }
.latency-tag { display:inline-flex; align-items:center; gap:6px; background:rgba(0,212,255,0.08); border:1px solid rgba(0,212,255,0.2); color:var(--cyan); font-size:11px; font-weight:600; padding:4px 12px; border-radius:100px; margin-top:4px; }
.latency-tag-dot { width:5px; height:5px; border-radius:50%; background:var(--cyan); animation:blink 1.2s infinite; }

/* ── Stats Strip ── */
.stats-strip { background:rgba(255,255,255,0.025); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:28px 40px; display:flex; align-items:stretch; justify-content:center; position:relative; z-index:1; }
.strip-item { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 52px; border-right:1px solid var(--border); }
.strip-item:last-child { border-right:none; }
.strip-val { font-family:'Sora',sans-serif; font-size:28px; font-weight:800; letter-spacing:-1px; line-height:1; }
.strip-val .accent,.accent { color:var(--cyan); }
.strip-lbl { font-size:12px; color:var(--text-muted); margin-top:4px; font-weight:500; }

/* ── Sections ── */
.section { max-width:1280px; margin:0 auto; padding:80px 40px; position:relative; z-index:1; }
.section-bg { background:rgba(255,255,255,0.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-center { text-align:center; margin-bottom:56px; }
.eyebrow { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--cyan); margin-bottom:12px; display:block; }
.sec-title { font-family:'Sora',sans-serif; font-size:clamp(24px,3.2vw,36px); font-weight:700; letter-spacing:-1px; line-height:1.2; margin-bottom:14px; }
.sec-desc { font-size:16px; color:var(--text-secondary); max-width:520px; margin:0 auto; line-height:1.75; }

/* ── What Is ── */
.what-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.what-body { font-size:15px; color:var(--text-secondary); line-height:1.8; margin-bottom:24px; }
.what-list { display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
.what-item { display:flex; align-items:flex-start; gap:12px; }
.what-icon { width:22px; height:22px; border-radius:50%; background:rgba(30,111,255,0.15); border:1px solid rgba(30,111,255,0.3); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.what-icon::after { content:''; width:6px; height:6px; border-radius:50%; background:var(--cyan); }
.what-item-text { font-size:14px; color:var(--text-secondary); line-height:1.65; }
.what-item-text strong { color:var(--text-primary); }

/* Challenge anatomy */
.captcha-anatomy { background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; position:relative; overflow:hidden; }
.captcha-anatomy::before { content:''; position:absolute; top:0; right:0; width:300px; height:300px; background:radial-gradient(circle,rgba(30,111,255,0.08) 0%,transparent 70%); pointer-events:none; }
.anatomy-label { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); margin-bottom:20px; }
.anatomy-demo { background:#fff; border-radius:6px; padding:16px; margin-bottom:20px; }
.anatomy-img { position:relative; background:linear-gradient(135deg,#1a1a2e,#16213e); border-radius:4px; height:72px; display:flex; align-items:center; justify-content:center; margin-bottom:8px; overflow:hidden; }
.anatomy-img::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(255,255,255,0.02) 0,rgba(255,255,255,0.02) 1px,transparent 1px,transparent 7px); }
.a-chars { display:flex; gap:3px; position:relative; z-index:1; }
.a-char { font-family:'Sora',sans-serif; font-weight:800; font-size:24px; display:inline-block; text-shadow:1px 1px 2px rgba(0,0,0,0.8); }
.anatomy-type-field { width:100%; background:#f5f5f5; border:1px solid #ddd; border-radius:3px; padding:6px 10px; font-size:12px; color:#888; }
.anatomy-points { display:flex; flex-direction:column; gap:10px; }
.a-point { display:flex; align-items:center; gap:10px; font-size:13px; }
.a-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.a-dot-red    { background:#FF5F57; }
.a-dot-yellow { background:#FFBC2E; }
.a-dot-green  { background:#28C840; }
.a-dot-blue   { background:var(--blue-light); }
.a-dot-cyan   { background:var(--cyan); }
.a-label { color:var(--text-secondary); }
.a-value { color:var(--text-primary); font-weight:600; margin-left:auto; font-size:12px; }

/* ── How It Works (solver page override) ── */
.hiw-steps { display:flex; align-items:flex-start; }
.hiw-connector { flex:0 0 60px; height:2px; margin-top:32px; background:linear-gradient(90deg,rgba(30,111,255,0.2),rgba(0,212,255,0.2)); position:relative; overflow:hidden; }
.hiw-connector::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,var(--cyan),transparent); animation:connFlow 3s ease-in-out infinite; }
.hiw-step { flex:1; text-align:center; padding:0 20px; }
.hiw-step:hover .step-num { background:rgba(30,111,255,0.25); border-color:var(--blue); box-shadow:0 0 30px rgba(30,111,255,0.4); }
.step-num { width:64px; height:64px; border-radius:50%; background:rgba(30,111,255,0.12); border:2px solid rgba(30,111,255,0.3); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-family:'Sora',sans-serif; font-size:22px; font-weight:700; color:var(--blue-light); transition:all .3s; }
.step-title { font-family:'Sora',sans-serif; font-size:16px; font-weight:600; margin-bottom:8px; }
.step-desc { font-size:13px; color:var(--text-secondary); line-height:1.65; max-width:160px; margin:0 auto; }

/* ── API Integration ── */
.api-split { display:grid; grid-template-columns:1.1fr 1fr; gap:64px; align-items:start; }
.code-window { background:#0D1117; border-radius:var(--radius-lg); overflow:hidden; border:1px solid rgba(255,255,255,0.08); box-shadow:0 32px 80px rgba(0,0,0,0.6); }
.code-header { background:#161B22; border-bottom:1px solid rgba(255,255,255,0.06); padding:14px 20px; display:flex; align-items:center; gap:8px; }
.code-body { padding:24px; font-family:'Courier New',monospace; font-size:13px; line-height:1.9; display:none; }
.code-body.active { display:block; }
.response-box { background:#0D1117; border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius); overflow:hidden; margin-top:20px; }
.response-header { background:#161B22; border-bottom:1px solid rgba(255,255,255,0.06); padding:10px 18px; display:flex; align-items:center; justify-content:space-between; }
.response-title { font-size:11px; font-weight:700; color:var(--text-muted); letter-spacing:1px; text-transform:uppercase; }
.response-status { font-size:11px; font-weight:700; color:#4AE57A; background:rgba(74,229,122,0.1); border:1px solid rgba(74,229,122,0.2); padding:2px 8px; border-radius:100px; }
.response-body { padding:18px 20px; font-family:'Courier New',monospace; font-size:12px; line-height:1.85; }
.api-info { display:flex; flex-direction:column; gap:28px; padding-top:8px; }
.api-point { display:flex; gap:16px; }
.api-point-icon { width:44px; height:44px; flex-shrink:0; border-radius:11px; background:rgba(30,111,255,0.12); border:1px solid rgba(30,111,255,0.2); display:flex; align-items:center; justify-content:center; }
.api-point-icon svg { width:20px; height:20px; stroke:var(--blue-light); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.api-point h4 { font-family:'Sora',sans-serif; font-size:15px; font-weight:600; margin-bottom:5px; }
.api-point p { font-size:13px; color:var(--text-secondary); line-height:1.65; }
.api-point code { font-family:'Courier New',monospace; font-size:12px; background:rgba(30,111,255,0.1); border:1px solid rgba(30,111,255,0.2); border-radius:4px; padding:1px 6px; color:var(--blue-light); }

/* ── Features Grid ── */
.feat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feat-card { background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; transition:all .3s; position:relative; overflow:hidden; }
.feat-card::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 0%,rgba(30,111,255,0.08) 0%,transparent 65%); opacity:0; transition:opacity .3s; }
.feat-card:hover { transform:translateY(-4px); border-color:rgba(30,111,255,0.35); box-shadow:0 20px 60px rgba(0,0,0,0.4),0 0 40px rgba(30,111,255,0.1); }
.feat-card:hover::before { opacity:1; }
.feat-icon-wrap { width:48px; height:48px; border-radius:13px; background:rgba(30,111,255,0.15); border:1px solid rgba(30,111,255,0.25); display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:22px; transition:all .3s; }
.feat-card:hover .feat-icon-wrap { background:rgba(30,111,255,0.25); box-shadow:0 0 20px rgba(30,111,255,0.3); }
.feat-title { font-family:'Sora',sans-serif; font-size:16px; font-weight:600; margin-bottom:10px; }
.feat-desc { font-size:14px; color:var(--text-secondary); line-height:1.7; }
.feat-pill { display:inline-block; font-size:11px; font-weight:600; color:var(--cyan); background:rgba(0,212,255,0.08); border:1px solid rgba(0,212,255,0.2); padding:3px 10px; border-radius:100px; margin-top:14px; }

/* ── Use Cases ── */
.uc-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.uc-card { background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; display:flex; gap:18px; align-items:flex-start; transition:all .3s; }
.uc-card:hover { border-color:rgba(30,111,255,0.3); transform:translateY(-3px); box-shadow:0 16px 48px rgba(0,0,0,0.4); }
.uc-icon { width:48px; height:48px; border-radius:13px; font-size:22px; background:rgba(30,111,255,0.12); border:1px solid rgba(30,111,255,0.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.uc-title { font-family:'Sora',sans-serif; font-size:15px; font-weight:700; margin-bottom:8px; }
.uc-desc { font-size:13px; color:var(--text-secondary); line-height:1.7; }

/* ── Pricing Card ── */
.pricing-wrap { max-width:680px; margin:0 auto; }
.pricing-card-main { background:rgba(30,111,255,0.08); border:1px solid rgba(30,111,255,0.25); border-radius:var(--radius-lg); padding:48px; text-align:center; position:relative; overflow:hidden; }
.pricing-card-main::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% -5%,rgba(30,111,255,0.2) 0%,transparent 60%); pointer-events:none; }
.pricing-badge { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:700; color:var(--cyan); background:rgba(0,212,255,0.1); border:1px solid rgba(0,212,255,0.25); padding:4px 14px; border-radius:100px; letter-spacing:1px; text-transform:uppercase; margin-bottom:20px; position:relative; z-index:1; }
.pricing-price { font-family:'Sora',sans-serif; font-size:64px; font-weight:800; letter-spacing:-3px; line-height:1; background:linear-gradient(135deg,var(--blue-light),var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; position:relative; z-index:1; }
.pricing-per { font-size:16px; color:var(--text-muted); margin-top:6px; margin-bottom:32px; position:relative; z-index:1; }
.pricing-features { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; text-align:left; position:relative; z-index:1; }
.pricing-feat { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-secondary); }
.pricing-feat-check { width:20px; height:20px; border-radius:50%; background:rgba(74,229,122,0.15); border:1px solid rgba(74,229,122,0.3); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; color:#4AE57A; font-size:11px; font-weight:700; }
.pricing-cta { position:relative; z-index:1; }

/* ── Testimonials ── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; transition:all .3s; position:relative; overflow:hidden; }
.testi-card::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 100% 100%,rgba(30,111,255,0.07) 0%,transparent 60%); }
.testi-card:hover { transform:translateY(-4px); border-color:rgba(30,111,255,0.3); }
.testi-stars { color:#F59E0B; font-size:13px; margin-bottom:14px; letter-spacing:2px; }
.testi-quote { font-size:14px; color:var(--text-secondary); line-height:1.75; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--cyan)); display:flex; align-items:center; justify-content:center; font-family:'Sora',sans-serif; font-size:15px; font-weight:700; flex-shrink:0; }
.testi-name { font-size:14px; font-weight:600; }
.testi-role { font-size:12px; color:var(--text-muted); }

/* ── FAQ ── */
.faq-layout { display:grid; grid-template-columns:1fr 1.6fr; gap:64px; align-items:flex-start; }
.faq-sticky { position:sticky; top:88px; }
.faq-sticky-title { font-family:'Sora',sans-serif; font-size:28px; font-weight:700; letter-spacing:-.8px; line-height:1.25; margin-bottom:14px; }
.faq-sticky-desc { font-size:15px; color:var(--text-secondary); line-height:1.7; margin-bottom:24px; }
.faq-contact-box { display:flex; align-items:center; gap:12px; background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:var(--radius); padding:16px; }
.faq-contact-icon { width:38px; height:38px; border-radius:10px; background:rgba(30,111,255,0.12); border:1px solid rgba(30,111,255,0.2); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.faq-contact-text { font-size:12px; color:var(--text-muted); }
.faq-contact-text a { color:var(--blue-light); text-decoration:none; font-weight:600; }
.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--border); overflow:hidden; }
.faq-item:first-child { border-top:1px solid var(--border); }
.faq-question { width:100%; background:none; border:none; padding:20px 0; display:flex; align-items:center; justify-content:space-between; gap:16px; cursor:pointer; text-align:left; font-family:'Inter',sans-serif; font-size:15px; font-weight:600; color:var(--text-primary); transition:color .2s; }
.faq-question:hover { color:var(--blue-light); }
.faq-q-num { font-size:11px; font-weight:700; color:var(--cyan); background:rgba(0,212,255,0.08); border:1px solid rgba(0,212,255,0.2); padding:2px 8px; border-radius:100px; white-space:nowrap; flex-shrink:0; }
.faq-q-text { flex:1; }
.faq-icon { width:28px; height:28px; border-radius:50%; flex-shrink:0; background:rgba(30,111,255,0.1); border:1px solid rgba(30,111,255,0.2); display:flex; align-items:center; justify-content:center; transition:all .25s; }
.faq-icon svg { width:14px; height:14px; stroke:var(--blue-light); fill:none; stroke-width:2.5; stroke-linecap:round; transition:transform .25s; }
.faq-item.open .faq-icon { background:rgba(30,111,255,0.2); border-color:var(--blue); }
.faq-item.open .faq-icon svg { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease,padding .35s ease; }
.faq-item.open .faq-answer { max-height:260px; padding-bottom:20px; }
.faq-answer p { font-size:14px; color:var(--text-secondary); line-height:1.8; padding-right:44px; }

/* ── Related Solvers ── */
.related-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.related-card { background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px; text-decoration:none; color:inherit; display:block; transition:all .3s; }
.related-card:hover { border-color:rgba(30,111,255,0.4); transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,0.4); }
.related-badge { font-size:10px; font-weight:700; padding:2px 8px; border-radius:100px; display:inline-block; margin-bottom:12px; }
.related-name { font-family:'Sora',sans-serif; font-size:14px; font-weight:700; margin-bottom:6px; }
.related-desc { font-size:12px; color:var(--text-muted); line-height:1.5; margin-bottom:14px; }
.related-price { font-size:13px; font-weight:700; color:var(--cyan); }

/* ── Solver Single Responsive ── */
@media (max-width: 1024px) {
  .solver-hero { grid-template-columns:1fr; gap:48px; }
  .what-grid  { grid-template-columns:1fr; gap:40px; }
  .api-split  { grid-template-columns:1fr; gap:40px; }
  .feat-grid  { grid-template-columns:repeat(2,1fr); }
  .faq-layout { grid-template-columns:1fr; gap:32px; }
  .faq-sticky { position:static; }
  .related-grid { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 768px) {
  .solver-hero { padding:100px 20px 56px; }
  .stats-strip { flex-wrap:wrap; padding:16px 20px; gap:0; }
  .strip-item { width:50%; padding:14px 12px; border-right:none; border-bottom:1px solid var(--border); }
  .strip-item:nth-child(odd) { border-right:1px solid var(--border); }
  .section { padding:56px 20px; }
  .feat-grid { grid-template-columns:1fr; }
  .uc-grid   { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns:1fr; }
}

/* ═══ LEGAL PAGES (Privacy Policy, Terms, Refunds) ══ */
.legal-hero { padding: 128px 40px 56px; position: relative; z-index: 1; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(30,111,255,0.05) 0%, transparent 100%); }
.legal-hero-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.legal-hero-text { text-align: left; }
.legal-type-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 100px; background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3); font-size: 12px; color: var(--blue-light); font-weight: 600; letter-spacing: .5px; margin-bottom: 16px; }
.legal-hero-title { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px; }
.legal-hero-sub { font-size: 15px; color: var(--text-secondary); max-width: 560px; line-height: 1.7; }
.legal-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.legal-meta-item { font-size: 12px; color: var(--text-muted); text-align: right; }
.legal-meta-item strong { display: block; font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.legal-related { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; justify-content: flex-end; }
.legal-related-link { font-size: 12px; padding: 5px 12px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; transition: all .2s; white-space: nowrap; }
.legal-related-link:hover { border-color: var(--border-glow); color: var(--blue-light); }
.legal-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 48px 40px 100px; position: relative; z-index: 1; align-items: start; }
.legal-sidebar { position: sticky; top: 88px; }
.toc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.toc-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list a { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; padding: 6px 10px; border-radius: 6px; transition: all .18s; line-height: 1.4; border-left: 2px solid transparent; }
.toc-list a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); border-left-color: var(--border-glow); }
.toc-list a.active { color: var(--blue-light); background: rgba(30,111,255,0.08); border-left-color: var(--blue); }
.legal-content { min-width: 0; }
.legal-section { margin-bottom: 52px; scroll-margin-top: 96px; }
.legal-section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.section-num { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--blue-light); font-family: 'Sora', sans-serif; }
.legal-content .section-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-primary); letter-spacing: 0; line-height: 1.3; margin-bottom: 0; }
.legal-section p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-list { list-style: none; margin: 14px 0 18px; display: flex; flex-direction: column; gap: 8px; }
.legal-list li { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; padding-left: 20px; position: relative; }
.legal-list li::before { content: '›'; position: absolute; left: 0; color: var(--blue-light); font-size: 16px; line-height: 1.65; }
.legal-highlight { background: rgba(30,111,255,0.07); border: 1px solid rgba(30,111,255,0.18); border-left: 3px solid var(--blue); border-radius: var(--radius-sm); padding: 16px 18px; margin: 18px 0; font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.legal-highlight strong { color: var(--blue-light); font-weight: 600; }
.legal-table-wrap { overflow-x: auto; margin: 18px 0; border-radius: var(--radius-sm); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.legal-table th { background: rgba(30,111,255,0.1); color: var(--blue-light); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 16px; text-align: left; border-bottom: 1px solid rgba(30,111,255,0.2); }
.legal-table td { padding: 11px 16px; color: var(--text-secondary); line-height: 1.6; border-bottom: 1px solid var(--border); }
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:hover td { background: rgba(255,255,255,0.02); }
.legal-divider { height: 1px; background: var(--border); margin: 52px 0; }
.contact-box { background: linear-gradient(135deg, rgba(30,111,255,0.1), rgba(0,212,255,0.06)); border: 1px solid rgba(30,111,255,0.22); border-radius: var(--radius); padding: 28px; display: flex; gap: 18px; align-items: flex-start; margin-top: 8px; }
.contact-box-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-box-title { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.contact-box-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.contact-box-body a { color: var(--blue-light); text-decoration: none; }
.contact-box-body a:hover { text-decoration: underline; }

/* ═══ LATEST INSIGHTS ════════════════════════════════ */
.insights-section { padding: 80px 40px; position: relative; z-index: 1; background: rgba(30,111,255,0.04); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.insights-inner { max-width: 1200px; margin: 0 auto; }
.insights-tagline { font-size: 15px; color: var(--text-secondary); max-width: 520px; margin: -24px auto 32px; text-align: center; line-height: 1.7; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.read-more-link { font-size: 13px; color: var(--blue-light); text-decoration: none; font-weight: 500; transition: color .2s; }
.read-more-link:hover { color: var(--cyan); }
.nav-logo img { height: 40px; width: auto; display: block; }
.footer-logo-img { height: 36px; width: auto; display: block; margin-bottom: 12px; }
@media (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══ INDUSTRIES HOMEPAGE SECTION ════════════════════════ */
.fc-industries { background: var(--bg-end); border-top: 1px solid var(--border); }
.fc-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .fc-industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fc-industries__grid { grid-template-columns: 1fr; } }

.fc-industry-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color .2s, background .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.fc-industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,111,255,0.06), rgba(0,212,255,0.04));
  opacity: 0;
  transition: opacity .2s;
}
.fc-industry-card:hover {
  border-color: var(--border-glow);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.fc-industry-card:hover::before { opacity: 1; }

.fc-industry-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,111,255,0.1);
  border: 1px solid rgba(30,111,255,0.2);
  border-radius: var(--radius);
  color: var(--blue-light);
  flex-shrink: 0;
}
.fc-industry-card__icon img { width: 32px; height: 32px; object-fit: contain; }

.fc-industry-card__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.fc-industry-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.fc-industry-card__arrow {
  color: var(--blue-light);
  opacity: 0.5;
  transition: opacity .2s, transform .2s;
  margin-top: auto;
  align-self: flex-end;
}
.fc-industry-card:hover .fc-industry-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ═══ INDUSTRY LANDING PAGE ══════════════════════════════ */
.ind-hero {
  padding: 120px 0 80px;
  background: var(--bg-start);
  background-size: cover;
  background-position: center;
  position: relative;
}
.ind-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,26,0.7) 0%, rgba(11,15,26,0.95) 100%);
}
.ind-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ind-hero__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,111,255,0.12);
  border: 1px solid rgba(30,111,255,0.25);
  border-radius: var(--radius-lg);
  color: var(--blue-light);
}
.ind-hero__icon img { width: 48px; height: 48px; object-fit: contain; }
.ind-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin: 12px 0;
  font-family: 'Sora', sans-serif;
}
.ind-hero__tagline {
  font-size: 18px;
  color: var(--cyan);
  margin: 0 0 16px;
  font-weight: 500;
}
.ind-hero__desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.ind-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ind-post-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.ind-post-block:last-child { border-bottom: none; }
@media (max-width: 768px) { .ind-post-block { grid-template-columns: 1fr; gap: 24px; } }

.ind-post-block__banner img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.ind-post-block__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  font-family: 'Sora', sans-serif;
}
.ind-post-block__body { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.ind-post-block__use-cases {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ind-post-block__use-cases li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}
.ind-post-block__use-cases li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-light);
}
@media (max-width: 600px) { .insights-grid { grid-template-columns: 1fr; } .insights-section { padding: 60px 20px; } .insights-tagline { margin-top: -12px; } }

/* ═══ HERO FEATURED IMAGES (solver + category pages) ══ */
.hero-featured-img,
.cat-featured-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.hero-featured-img img,
.cat-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════
   BROWSER ADD-ONS PAGE
   ═══════════════════════════════════════════════════ */
:root {
  --chrome: #4CAF50; --chrome-dim: rgba(76,175,80,0.12);
  --firefox: #FF7139; --firefox-dim: rgba(255,113,57,0.12);
  --green: #4ade80;
}

/* ─── HERO ────────────────────────────────────────── */
.ba-hero {
  padding: 148px 40px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ba-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(30,111,255,0.12); border: 1px solid rgba(30,111,255,0.3);
  font-size: 13px; color: var(--blue-light); font-weight: 500;
  margin-bottom: 24px;
}
.ba-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); animation: blink 2s infinite;
}
.ba-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5.5vw, 60px); font-weight: 800;
  line-height: 1.05; letter-spacing: -2px;
  max-width: 760px; margin: 0 auto 20px;
}
.ba-hero-sub {
  font-size: 17px; color: var(--text-secondary);
  max-width: 540px; margin: 0 auto 44px; line-height: 1.75;
}

/* Browser install buttons */
.ba-browser-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.ba-browser-btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ba-browser-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none; transition: all .25s; cursor: pointer; border: none;
}
.ba-btn-chrome { background: linear-gradient(135deg,#3d8b40,#4CAF50); color:#fff; box-shadow:0 0 28px rgba(76,175,80,0.3); }
.ba-btn-chrome:hover { transform: translateY(-3px); box-shadow: 0 0 44px rgba(76,175,80,0.5); color:#fff; }
.ba-btn-firefox { background: linear-gradient(135deg,#c54e1a,#FF7139); color:#fff; box-shadow:0 0 28px rgba(255,113,57,0.28); }
.ba-btn-firefox:hover { transform: translateY(-3px); box-shadow: 0 0 44px rgba(255,113,57,0.5); color:#fff; }
.ba-browser-btn-icon { display: flex; align-items: center; }
.ba-browser-btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.ba-browser-btn-label { font-size: 11px; font-weight: 500; opacity: .85; line-height: 1; margin-bottom: 2px; }
.ba-browser-btn-name { font-size: 16px; font-weight: 700; line-height: 1; }
.ba-browser-btn-meta { font-size: 12px; color: var(--text-muted); }

/* Hero browser mockup */
.ba-hero-preview {
  max-width: 900px; margin: 56px auto 0; position: relative;
}
.ba-preview-bar {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-bottom: none; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 12px 20px; display: flex; align-items: center; gap: 12px;
}
.ba-preview-dots { display: flex; gap: 6px; }
.ba-dot { width: 11px; height: 11px; border-radius: 50%; }
.ba-dot-r { background: #FF5F57; }
.ba-dot-y { background: #FFBD2E; }
.ba-dot-g { background: #28C840; }
.ba-preview-url {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.ba-url-lock { color: var(--green); font-size: 11px; }
.ba-preview-ext-icon {
  width: 22px; height: 22px; border-radius: 5px;
  background: linear-gradient(135deg,var(--blue),var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; margin-left: auto;
}
.ba-preview-body {
  background: rgba(10,14,25,0.9); border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 48px 40px; display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: center;
}
.ba-preview-page-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.ba-preview-form {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px;
}
.ba-preview-field {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 14px; margin-bottom: 12px;
  font-size: 13px; color: var(--text-muted);
}
.ba-captcha-box {
  border: 2px solid var(--border); border-radius: 6px;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; background: rgba(255,255,255,0.02);
}
.ba-checkbox {
  width: 22px; height: 22px; border-radius: 3px;
  background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ba-captcha-text { font-size: 13px; color: var(--text-secondary); flex: 1; }
.ba-preview-submit {
  width: 100%; background: linear-gradient(135deg,var(--blue),#1050CC);
  border: none; border-radius: 6px; padding: 11px; color: #fff;
  font-weight: 600; font-size: 14px; font-family: 'Inter', sans-serif; cursor: pointer;
}

/* Extension popup */
.ba-ext-popup {
  background: #1A1F2E; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  width: 280px; flex-shrink: 0;
}
.ba-popup-header {
  background: linear-gradient(135deg,var(--blue),#1050CC);
  padding: 16px 18px; display: flex; align-items: center; gap: 10px;
}
.ba-popup-icon {
  width: 32px; height: 32px; background: rgba(255,255,255,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.ba-popup-title { font-size: 14px; font-weight: 700; }
.ba-popup-sub { font-size: 11px; opacity: .8; }
.ba-popup-body { padding: 16px; }
.ba-popup-status {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 8px; margin-bottom: 14px;
}
.ba-popup-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; flex-shrink: 0; }
.ba-popup-status-text { font-size: 12px; color: var(--green); font-weight: 600; }
.ba-popup-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.ba-popup-row:last-of-type { border-bottom: none; }
.ba-popup-label { font-size: 12px; color: var(--text-muted); }
.ba-popup-val { font-size: 13px; font-weight: 600; }
.ba-val-green { color: var(--green); }
.ba-val-blue { color: var(--blue-light); }
.ba-popup-divider { height: 1px; background: var(--border); margin: 12px 0; }
.ba-popup-toggle-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ba-popup-toggle-label { font-size: 13px; font-weight: 500; }
.ba-popup-toggle { width: 40px; height: 22px; background: var(--blue); border-radius: 11px; position: relative; }
.ba-popup-toggle::after { content: ''; width: 16px; height: 16px; background: #fff; border-radius: 50%; position: absolute; top: 3px; right: 3px; }
.ba-toggle-off { background: rgba(255,255,255,0.15); }
.ba-popup-credits { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--surface); border-radius: 8px; margin-top: 4px; }
.ba-popup-credits-label { font-size: 12px; color: var(--text-muted); }
.ba-popup-credits-val { font-size: 13px; font-weight: 700; color: var(--blue-light); }

/* ─── SHARED CONTAINER ────────────────────────────── */
.ba-container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ─── HOW IT WORKS ────────────────────────────────── */
.ba-how-section { padding: 0 0 80px; position: relative; z-index: 1; }
.ba-section-head { text-align: center; margin-bottom: 48px; }
.ba-section-head .section-label { justify-content: center; }
.ba-how-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative;
}
.ba-how-steps::before {
  content: ''; position: absolute; top: 28px;
  left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
  opacity: .3; z-index: 0;
}
.ba-how-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.ba-how-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1050CC);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; color: #fff;
  margin-bottom: 18px; box-shadow: 0 0 20px rgba(30,111,255,0.4); flex-shrink: 0;
}
.ba-how-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.ba-how-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── BROWSER CARDS ───────────────────────────────── */
.ba-browsers-section { padding: 0 0 80px; position: relative; z-index: 1; }
.ba-browser-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba-browser-card { border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.ba-browser-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.ba-card-chrome { border-color: rgba(76,175,80,0.25); }
.ba-card-chrome:hover { border-color: rgba(76,175,80,0.45); box-shadow: 0 24px 60px rgba(76,175,80,0.1); }
.ba-card-firefox { border-color: rgba(255,113,57,0.25); }
.ba-card-firefox:hover { border-color: rgba(255,113,57,0.45); box-shadow: 0 24px 60px rgba(255,113,57,0.1); }
.ba-bc-header { padding: 28px 28px 24px; }
.ba-bch-chrome { background: linear-gradient(135deg,rgba(76,175,80,0.1),rgba(76,175,80,0.04)); }
.ba-bch-firefox { background: linear-gradient(135deg,rgba(255,113,57,0.1),rgba(255,113,57,0.04)); }
.ba-bc-logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.ba-bc-logo { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.ba-bcl-chrome { background: var(--chrome-dim); border: 1px solid rgba(76,175,80,0.2); }
.ba-bcl-firefox { background: var(--firefox-dim); border: 1px solid rgba(255,113,57,0.2); }
.ba-bc-name { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; }
.ba-bc-version { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.ba-bc-rating { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.ba-bc-stars { color: #FBBF24; font-size: 14px; letter-spacing: 1px; }
.ba-bc-rating-count { font-size: 12px; color: var(--text-muted); }
.ba-bc-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.ba-bc-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.ba-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.ba-badge-chrome { background: var(--chrome-dim); color: #4CAF50; border: 1px solid rgba(76,175,80,0.2); }
.ba-badge-firefox { background: var(--firefox-dim); color: #FF7139; border: 1px solid rgba(255,113,57,0.2); }
.ba-badge-neutral { background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); }
.ba-bc-body { padding: 24px 28px 28px; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.ba-bc-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ba-bc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.ba-feat-check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 11px; }
.ba-fc-chrome { background: var(--chrome-dim); color: #4CAF50; }
.ba-fc-firefox { background: var(--firefox-dim); color: #FF7139; }
.ba-install-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif;
  text-decoration: none; transition: all .25s; border: none; cursor: pointer;
}
.ba-install-chrome { background: linear-gradient(135deg,#3d8b40,#4CAF50); color: #fff; box-shadow: 0 0 20px rgba(76,175,80,0.25); }
.ba-install-chrome:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(76,175,80,0.45); color: #fff; }
.ba-install-firefox { background: linear-gradient(135deg,#c54e1a,#FF7139); color: #fff; box-shadow: 0 0 20px rgba(255,113,57,0.25); }
.ba-install-firefox:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(255,113,57,0.45); color: #fff; }
.ba-store-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ─── FEATURES ────────────────────────────────────── */
.ba-features-section { padding: 0 0 80px; position: relative; z-index: 1; }
.ba-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ba-feat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all .3s; position: relative; overflow: hidden;
}
.ba-feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--blue),var(--cyan)); opacity: 0; transition: opacity .3s; }
.ba-feat-card:hover { border-color: var(--border-glow); background: var(--surface-hover); transform: translateY(-4px); }
.ba-feat-card:hover::before { opacity: 1; }
.ba-feat-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.ba-feat-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.ba-feat-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }

/* ─── PERMISSIONS & PRIVACY ───────────────────────── */
.ba-perms-section { padding: 0 0 80px; position: relative; z-index: 1; }
.ba-perms-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.ba-perms-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.ba-perm-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; transition: border-color .2s;
}
.ba-perm-item:hover { border-color: var(--border-glow); }
.ba-perm-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--blue-dim); border: 1px solid rgba(30,111,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ba-perm-name { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.ba-perm-why { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.ba-privacy-box {
  background: linear-gradient(135deg,rgba(74,222,128,0.07),rgba(0,212,255,0.04));
  border: 1px solid rgba(74,222,128,0.2); border-radius: var(--radius-lg); padding: 32px;
}
.ba-privacy-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ba-privacy-body { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.ba-privacy-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.ba-privacy-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.ba-pcheck { width: 20px; height: 20px; border-radius: 50%; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--green); }

/* ─── FAQ ─────────────────────────────────────────── */
.ba-faq-section { padding: 0 0 80px; position: relative; z-index: 1; }

/* ─── CTA ─────────────────────────────────────────── */
.ba-cta-section { padding: 0 40px 100px; position: relative; z-index: 1; }
.ba-cta-box {
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(30,111,255,0.15) 0%, rgba(0,212,255,0.08) 100%);
  border: 1px solid rgba(30,111,255,0.3); border-radius: 24px;
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.ba-cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%, rgba(30,111,255,0.25) 0%, transparent 60%); pointer-events: none; }
.ba-cta-title { font-family: 'Sora', sans-serif; font-size: clamp(24px,3.5vw,38px); font-weight: 800; margin-bottom: 14px; position: relative; }
.ba-cta-sub { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; position: relative; max-width: 500px; margin-left: auto; margin-right: auto; }
.ba-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1000px) {
  .ba-preview-body { grid-template-columns: 1fr; }
  .ba-ext-popup { width: 100%; max-width: 320px; margin: 0 auto; }
  .ba-browser-cards { grid-template-columns: 1fr; }
  .ba-features-grid { grid-template-columns: 1fr 1fr; }
  .ba-how-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ba-how-steps::before { display: none; }
  .ba-perms-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ba-hero { padding: 120px 20px 60px; }
  .ba-container { padding: 0 20px; }
  .ba-cta-section { padding-left: 20px; padding-right: 20px; }
  .ba-features-grid, .ba-how-steps { grid-template-columns: 1fr; }
  .ba-cta-box { padding: 40px 24px; }
  .ba-preview-body { padding: 28px 20px; }
}
