:root {
  --bn-bg: #070914;
  --bn-card: #111425;
  --bn-card-2: #151a2f;
  --bn-accent: #7c5cff;
  --bn-accent-2: #00d4ff;
  --bn-text: #f7f8ff;
  --bn-muted: #a7aec7;
  --bn-soft: #d7ddff;
  --bn-border: rgba(255, 255, 255, 0.11);
  --bn-border-strong: rgba(255, 255, 255, 0.18);
  --bn-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --bn-radius: 24px;
  --bn-radius-sm: 16px;
  --bn-container: 1180px;
  --bn-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% -10%, rgba(124, 92, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 95% 0%, rgba(0, 212, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #080a16 0%, var(--bn-bg) 42%, #050713 100%);
  color: var(--bn-text);
  font-family: var(--bn-font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bn-soft); }
p { margin-top: 0; color: var(--bn-muted); }
h1, h2, h3, h4, h5, h6 { margin-top: 0; color: var(--bn-text); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.85rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
ul { padding-left: 1.2rem; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(124, 92, 255, 0.5); color: #fff; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus,
.skip-link:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  left: 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
  background: #fff;
  color: #111;
  padding: 0.7rem 1rem;
  border-radius: 10px;
}

.site-shell { min-height: 100vh; overflow: hidden; }
.container { width: min(100% - 2rem, var(--bn-container)); margin-inline: auto; }
.container.narrow { width: min(100% - 2rem, 860px); }
.center { text-align: center; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.compact-hero { padding-top: clamp(5rem, 9vw, 8rem); padding-bottom: clamp(3rem, 6vw, 5rem); }

.glass-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--bn-border);
  border-radius: var(--bn-radius);
  box-shadow: var(--bn-shadow);
  backdrop-filter: blur(18px);
}
.lift-card { transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.lift-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.24); box-shadow: 0 30px 90px rgba(0,0,0,0.52); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  background: rgba(7, 9, 20, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-bar .site-header { top: 32px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-branding { min-width: 0; }
.site-brand-text, .custom-logo-link { display: inline-flex; align-items: center; gap: 0.75rem; font-weight: 800; letter-spacing: -0.04em; }
.custom-logo { max-height: 46px; width: auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2));
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 12px 32px rgba(124,92,255,0.35);
}
.brand-name { font-size: 1.2rem; color: #fff; }

.main-navigation { display: flex; align-items: center; }
.main-navigation ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 0.25rem; align-items: center; }
.main-navigation a {
  display: inline-flex;
  padding: 0.65rem 0.95rem;
  color: var(--bn-muted);
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.menu-toggle { display: none; }

.btn {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn svg, .text-link svg { width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); color: #fff; }
.btn-gradient {
  background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2));
  border-color: transparent;
  box-shadow: 0 16px 44px rgba(124,92,255,0.35);
}
.btn-gradient:hover { box-shadow: 0 20px 60px rgba(0,212,255,0.28); }
.btn-ghost { background: rgba(255,255,255,0.06); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
.btn-small { min-height: 40px; padding: 0.62rem 0.95rem; font-size: 0.92rem; }
.btn-large { min-height: 54px; padding: 0.95rem 1.35rem; }
.btn-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 0.4rem; color: #fff; font-weight: 800; }
.text-link:hover { color: var(--bn-accent-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #dbe7ff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.glow-label {
  padding: 0.55rem 0.78rem;
  border: 1px solid var(--bn-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.04);
}
.glow-label svg { width: 1rem; height: 1rem; color: var(--bn-accent-2); }

.hero-section { min-height: calc(100vh - 86px); display: flex; align-items: center; padding-top: clamp(4rem, 8vw, 7rem); }
.hero-bg { position: absolute; pointer-events: none; filter: blur(4px); opacity: 0.75; }
.hero-bg-one { inset: 12% auto auto -10%; width: 28rem; height: 28rem; background: radial-gradient(circle, rgba(124,92,255,0.34), transparent 68%); }
.hero-bg-two { right: -9rem; bottom: 5%; width: 30rem; height: 30rem; background: radial-gradient(circle, rgba(0,212,255,0.22), transparent 66%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; position: relative; }
.hero-copy p { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; max-width: 720px; }
.hero-stats div { padding: 1rem; border: 1px solid var(--bn-border); border-radius: 18px; background: rgba(255,255,255,0.055); }
.hero-stats strong { display: block; font-size: 1.55rem; line-height: 1; color: #fff; }
.hero-stats span { display: block; color: var(--bn-muted); font-size: 0.92rem; margin-top: 0.45rem; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -2rem;
  background: linear-gradient(135deg, rgba(124,92,255,0.2), rgba(0,212,255,0.12));
  border-radius: 48px;
  transform: rotate(-5deg);
  opacity: 0.85;
}
.bot-console { position: relative; padding: 1.1rem; border-radius: 30px; overflow: hidden; }
.bot-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 45%, transparent 80%);
  transform: translateX(-100%);
  animation: bn-shine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bn-shine { 0%, 45% { transform: translateX(-110%); } 70%, 100% { transform: translateX(110%); } }
.console-topbar { display: flex; align-items: center; gap: 0.45rem; color: var(--bn-muted); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0.85rem; }
.console-topbar span { width: 0.74rem; height: 0.74rem; border-radius: 50%; background: rgba(255,255,255,0.28); }
.console-topbar span:first-child { background: #ff5f57; }
.console-topbar span:nth-child(2) { background: #ffbd2e; }
.console-topbar span:nth-child(3) { background: #28c840; }
.console-topbar small { margin-left: auto; font-weight: 800; }
.bot-status-row { display: flex; align-items: center; gap: 0.55rem; margin: 1rem 0; padding: 0.8rem 0.9rem; border-radius: 16px; background: rgba(0,212,255,0.08); color: var(--bn-soft); }
.bot-status-row strong { margin-left: auto; color: #77ffbf; font-size: 0.78rem; letter-spacing: 0.12em; }
.status-dot { width: 0.72rem; height: 0.72rem; background: #53ffb4; border-radius: 50%; box-shadow: 0 0 20px #53ffb4; }
.chat-bubble { width: fit-content; max-width: 88%; padding: 0.82rem 0.95rem; border-radius: 18px; margin: 0.8rem 0; color: var(--bn-soft); position: relative; z-index: 1; }
.chat-bubble.bot { background: rgba(124,92,255,0.16); border: 1px solid rgba(124,92,255,0.24); }
.chat-bubble.user { margin-left: auto; background: rgba(0,212,255,0.14); border: 1px solid rgba(0,212,255,0.22); }
.console-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.2rem; }
.console-metrics div { padding: 0.85rem; border-radius: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.console-metrics span { display: block; color: var(--bn-muted); font-size: 0.8rem; }
.console-metrics strong { color: #fff; font-size: 1.25rem; }

.section-heading { margin-bottom: 2rem; }
.section-heading.center { max-width: 760px; margin-inline: auto; }
.section-heading p { font-size: 1.05rem; max-width: 760px; }
.section-heading.split { display: flex; justify-content: space-between; gap: 2rem; align-items: flex-end; }

.page-editor-content { padding-top: 0; }
.page-editor-content .glass-panel { padding: clamp(1.3rem, 3vw, 2.2rem); }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.feature-card { padding: 1.4rem; }
.feature-icon, .package-icon, .doc-icon { display: inline-grid; place-items: center; width: 3.1rem; height: 3.1rem; border-radius: 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); font-size: 1.45rem; margin-bottom: 1.1rem; }
.feature-card h3 { margin-bottom: 0.65rem; }
.feature-card p { margin-bottom: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.pricing-grid-full { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-card { padding: 1.35rem; position: relative; display: flex; flex-direction: column; min-height: 100%; overflow: hidden; }
.pricing-card.is-highlighted { border-color: rgba(0, 212, 255, 0.35); background: linear-gradient(160deg, rgba(124,92,255,0.16), rgba(0,212,255,0.08) 52%, rgba(255,255,255,0.035)); }
.pricing-card.is-highlighted::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--bn-accent), var(--bn-accent-2)); }
.package-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.42rem 0.65rem; border-radius: 999px; background: rgba(255,255,255,0.1); color: #fff; font-size: 0.78rem; font-weight: 800; border: 1px solid var(--bn-border); }
.package-head { display: flex; gap: 1rem; align-items: flex-start; padding-right: 4.5rem; }
.package-head h3 { margin-bottom: 0.5rem; }
.package-head p { margin-bottom: 0; font-size: 0.95rem; }
.package-price { margin: 1.4rem 0 1rem; display: flex; align-items: baseline; gap: 0.4rem; }
.package-price strong { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.06em; color: #fff; }
.package-price span { color: var(--bn-muted); }
.package-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.75rem; }
.package-features li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--bn-soft); }
.package-features svg { width: 1.15rem; height: 1.15rem; color: #69ffc2; margin-top: 0.2rem; flex: 0 0 auto; }
.package-actions { margin-top: auto; display: grid; gap: 0.85rem; }
.package-detail-link { justify-content: center; color: var(--bn-muted); font-size: 0.94rem; }

.doc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.doc-grid-full { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.doc-card { padding: 1.35rem; }
.doc-card h2, .doc-card h3 { margin-bottom: 0.7rem; }
.doc-card p { min-height: 3.2rem; }
.empty-state { padding: 1.5rem; color: var(--bn-muted); grid-column: 1 / -1; }

.free-bot-section { padding-top: 0; }
.free-bot-card { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; padding: clamp(1.4rem, 4vw, 2.6rem); border-radius: 32px; background: linear-gradient(135deg, rgba(124,92,255,0.22), rgba(0,212,255,0.12)), rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); box-shadow: var(--bn-shadow); }
.free-bot-glow { position: absolute; right: -7rem; top: -8rem; width: 18rem; height: 18rem; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,255,0.35), transparent 68%); }
.free-bot-content { position: relative; z-index: 1; }
.free-bot-card h2 { max-width: 850px; margin-bottom: 0.75rem; }
.free-bot-card p { max-width: 760px; margin-bottom: 0; }
.free-bot-card .btn { position: relative; z-index: 1; white-space: nowrap; }

.page-hero { overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: -20% auto auto 50%; width: 42rem; height: 42rem; background: radial-gradient(circle, rgba(124,92,255,0.18), transparent 66%); transform: translateX(-50%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { font-size: 1.06rem; max-width: 760px; margin-inline: auto; }

.compare-panel { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: clamp(1.3rem, 4vw, 2.3rem); }
.compare-panel p { max-width: 760px; margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: 1rem; align-items: start; }
.contact-info-card, .contact-form-card { padding: clamp(1.3rem, 3vw, 2rem); }
.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li { padding: 1rem; border-radius: 18px; background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.08); }
.contact-list span { display: block; color: var(--bn-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.contact-list strong, .contact-list a { display: block; color: #fff; margin-top: 0.3rem; font-weight: 750; }
.contact-form { display: grid; gap: 1rem; }
.contact-form p { margin: 0; }
.form-row.two-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: block; margin-bottom: 0.45rem; color: var(--bn-soft); font-weight: 750; }
input[type="text"], input[type="email"], input[type="url"], select, textarea {
  width: 100%;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 0.86rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%); background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
select option { color: #111; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(0,212,255,0.55); box-shadow: 0 0 0 4px rgba(0,212,255,0.12); background: rgba(255,255,255,0.09); }
.form-notice { padding: 0.9rem 1rem; border-radius: 16px; margin-bottom: 1rem; border: 1px solid var(--bn-border); }
.form-notice-success { background: rgba(83,255,180,0.12); color: #caffec; }
.form-notice-error { background: rgba(255,95,87,0.12); color: #ffd7d5; }
.botnova-hp { position: absolute; left: -9999px; visibility: hidden; }

.prose { padding: clamp(1.3rem, 3vw, 2.2rem); }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose h2, .prose h3, .prose h4 { margin-top: 1.8em; margin-bottom: 0.55em; }
.prose p, .prose li { color: var(--bn-soft); }
.prose a { color: var(--bn-accent-2); text-decoration: underline; text-underline-offset: 0.2em; }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.2rem; border-left: 3px solid var(--bn-accent-2); background: rgba(255,255,255,0.055); border-radius: 0 14px 14px 0; color: var(--bn-soft); }
.prose code { background: rgba(255,255,255,0.08); padding: 0.15rem 0.35rem; border-radius: 0.4rem; }
.prose pre { overflow: auto; padding: 1rem; border-radius: 16px; background: #050713; border: 1px solid var(--bn-border); }
.prose img { border-radius: 18px; }

.single-content-section { padding-top: 0; }
.single-featured-image { margin: 0 0 1.6rem; }
.single-featured-image img { border-radius: 18px; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.post-card { overflow: hidden; }
.post-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-body { padding: 1.25rem; }
.post-date { display: block; color: var(--bn-muted); font-size: 0.85rem; margin-bottom: 0.6rem; }
.pagination-wrap { grid-column: 1 / -1; }
.nav-links { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; flex-wrap: wrap; }
.nav-links a, .nav-links span { display: inline-grid; place-items: center; min-width: 42px; min-height: 42px; border-radius: 999px; border: 1px solid var(--bn-border); background: rgba(255,255,255,0.05); color: #fff; padding: 0.5rem 0.8rem; }
.nav-links .current { background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-2)); border-color: transparent; }

.package-single-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 2rem; align-items: center; }
.package-single-icon { display: inline-grid; place-items: center; width: 4rem; height: 4rem; margin-right: 1rem; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); font-size: 2rem; vertical-align: middle; }
.single-price-box { padding: 1.5rem; }
.single-price-box span, .single-price-box em { display: block; color: var(--bn-muted); font-style: normal; }
.single-price-box strong { display: block; margin: 0.5rem 0; font-size: 2.75rem; letter-spacing: -0.06em; line-height: 1; color: #fff; }
.two-column-content { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 1rem; align-items: start; }
.sticky-card { position: sticky; top: 110px; padding: 1.4rem; }
.side-doc-list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 0.6rem; }
.side-doc-list a { display: block; padding: 0.8rem 0.9rem; border-radius: 14px; background: rgba(255,255,255,0.055); color: var(--bn-soft); }
.side-doc-list a:hover { color: #fff; background: rgba(255,255,255,0.09); }

.site-footer { padding: clamp(3rem, 6vw, 5rem) 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.18); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) 0.7fr 0.8fr; gap: 2rem; }
.footer-brand p { max-width: 420px; margin-top: 1rem; }
.footer-column h3, .footer-widget-title { font-size: 1rem; letter-spacing: 0; margin-bottom: 1rem; }
.footer-column ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.footer-column a, .footer-contact p { color: var(--bn-muted); margin-bottom: 0.45rem; }
.footer-column a:hover { color: #fff; }
.footer-widgets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.footer-widget { padding: 1.1rem; border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 2rem; padding-top: 1.2rem; color: var(--bn-muted); font-size: 0.95rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--bn-soft); }

.alignwide { width: min(100%, var(--bn-container)); margin-inline: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--bn-muted); font-size: 0.9rem; }
.bypostauthor { outline: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid, .pricing-grid-full, .doc-grid, .doc-grid-full, .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 620px; margin-inline: auto; width: 100%; }
  .package-single-grid, .two-column-content { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
}

@media (max-width: 860px) {
  .admin-bar .site-header { top: 46px; }
  .header-inner { gap: 0.75rem; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    color: #fff;
    padding: 0;
    margin-left: auto;
  }
  .menu-toggle-line { width: 20px; height: 2px; border-radius: 999px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
  body.menu-open .menu-toggle-line:first-child { transform: translateY(6px) rotate(45deg); }
  body.menu-open .menu-toggle-line:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-navigation {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    display: none;
    padding: 0.85rem;
    border: 1px solid var(--bn-border);
    border-radius: 22px;
    background: rgba(10, 13, 28, 0.96);
    box-shadow: var(--bn-shadow);
    backdrop-filter: blur(18px);
  }
  body.menu-open .main-navigation { display: block; }
  .main-navigation ul { display: grid; gap: 0.25rem; }
  .main-navigation a { width: 100%; border-radius: 14px; }
  .header-cta { display: none; }
  .section-heading.split, .compare-panel, .free-bot-card, .footer-bottom { align-items: flex-start; flex-direction: column; display: flex; }
  .free-bot-card .btn { width: 100%; white-space: normal; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 1.1rem, var(--bn-container)); }
  .section { padding: 3.6rem 0; }
  .hero-section { min-height: auto; padding-top: 4.3rem; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-grid, .pricing-grid, .pricing-grid-full, .doc-grid, .doc-grid-full, .post-grid, .footer-widgets { grid-template-columns: 1fr; }
  .package-head { padding-right: 0; display: block; }
  .package-badge { position: static; display: inline-flex; width: fit-content; margin-bottom: 1rem; }
  .form-row.two-cols { grid-template-columns: 1fr; }
  .bot-console { padding: 0.85rem; border-radius: 22px; }
  .console-metrics { grid-template-columns: 1fr; }
  .chat-bubble { max-width: 96%; }
  .package-single-icon { width: 3.2rem; height: 3.2rem; font-size: 1.6rem; margin-right: 0.6rem; }
  .single-price-box strong { font-size: 2.2rem; }
  .prose { padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
.site-header.is-scrolled { background: rgba(7, 9, 20, 0.9); box-shadow: 0 18px 60px rgba(0,0,0,0.28); }
