:root {
  --saits-primary: #5b21b6;
  --saits-primary-light: #7c3aed;
  --saits-primary-dark: #4c1d95;
  --saits-secondary: #ec4899;
  --saits-secondary-light: #f472b6;
  --saits-accent: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  --gradient-primary: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #ec4899 100%);
  --gradient-hero: linear-gradient(135deg, #5b21b6 0%, #9333ea 50%, #ec4899 100%);
  --gradient-button: linear-gradient(90deg, #5b21b6 0%, #7c3aed 100%);
  --gradient-cta: linear-gradient(90deg, #9333ea 0%, #ec4899 100%);

  --bg: #0b0f1a;
  --bg-alt: #111827;
  --text: rgba(248, 250, 252, 0.96);
  --muted: rgba(203, 213, 225, 0.82);
  --muted2: rgba(148, 163, 184, 0.82);
  --card-bg: rgba(30, 41, 59, 0.62);
  --card-border: rgba(148, 163, 184, 0.14);
  --nav-bg: rgba(11, 15, 26, 0.75);
  --nav-border: rgba(148, 163, 184, 0.16);
  --border: rgba(148, 163, 184, 0.14);
  --border2: rgba(148, 163, 184, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius2: 12px;
  --focus: 0 0 0 3px rgba(236, 72, 153, 0.35);
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --lightBg: #f8fafc;
  --lightCard: #ffffff;
  --lightBorder: rgba(15, 23, 42, 0.08);
  --darkText: rgba(15, 23, 42, 0.96);
  --darkMuted: rgba(71, 85, 105, 0.78);
  --max: 1200px;
}

html,
body {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

a {
  color: inherit;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.92em;
}

pre {
  margin: 0;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 22px 48px;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(900px 650px at 18% 22%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(900px 700px at 75% 15%, rgba(236, 72, 153, 0.16), transparent 60%),
    radial-gradient(1200px 800px at 50% 95%, rgba(91, 33, 182, 0.18), transparent 60%);
}

.glow {
  position: absolute;
  filter: blur(46px);
  opacity: 0.65;
}

.g1 {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.60), transparent 62%);
}

.g2 {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -170px;
  background: radial-gradient(circle at 35% 35%, rgba(236, 72, 153, 0.50), transparent 64%);
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 35% 12%, rgba(0, 0, 0, 1) 0%, transparent 68%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid var(--nav-border);
  background: linear-gradient(180deg, rgba(11, 15, 26, 0.92), rgba(11, 15, 26, 0.78));
  backdrop-filter: blur(18px) saturate(170%);
}

.headerInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brandIcon {
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brandTitle {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brandSub {
  color: var(--muted2);
  font-size: 13px;
  margin-top: 2px;
}

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

.navLink {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.navLink:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.headerCta {
  display: flex;
  gap: 10px;
}

.hero {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 13px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(34, 197, 94, 0.95);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.h1 {
  margin: 14px 0 8px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

@media (max-width: 520px) {
  .h1 {
    font-size: 34px;
  }
}

.h1Accent {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  margin: 12px 0 0;
}

.ctaRow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

@media (max-width: 520px) {
  .ctaRow {
    flex-direction: column;
    align-items: stretch;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  padding: 11px 14px;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btnPrimary {
  background: var(--gradient-button);
  color: white;
  box-shadow: 0 16px 45px rgba(91, 33, 182, 0.30);
}

.btnPrimary:hover {
  filter: brightness(1.03);
}

.btnSecondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--nav-border);
  color: rgba(248, 250, 252, 0.95);
}

.btnSecondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btnGhost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

.btnGhost:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.metaRow {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 720px) {
  .metaRow {
    grid-template-columns: 1fr;
  }
}

.metaCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 12px 12px;
  box-shadow: var(--shadow2);
}

.metaLabel {
  color: var(--muted2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metaValue {
  margin-top: 6px;
  font-weight: 700;
}

.heroPanel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.panelTitle {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.panelGrid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px) {
  .panelGrid {
    grid-template-columns: 1fr;
  }
}

.panelItem {
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.panelHead {
  font-weight: 800;
}

.panelBody {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.panelFooter {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.small {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.5;
}

.section {
  margin-top: 26px;
  padding-top: 10px;
}

.sectionHead {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.twoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 860px) {
  .twoCol {
    grid-template-columns: 1fr;
  }
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 860px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

@media (max-width: 980px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow2);
}

.cardTitle {
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.kv {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.kv span {
  color: var(--muted2);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 52px;
}

.code {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 12px;
  overflow: auto;
}

.footer {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footerInner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 0;
}

@media (max-width: 720px) {
  .footerInner {
    flex-direction: column;
  }
}

.footerTitle {
  font-weight: 900;
}

.footerRight {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footerLink {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.footerLink:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.heroWrap {
  padding: 8px 0 0;
}

.heroLeft {
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroRight {
  padding: 14px 0;
}

.heroMock {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(30, 41, 59, 0.52));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.mockTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
}

.mockPill {
  font-weight: 900;
  letter-spacing: -0.01em;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mockDots {
  display: inline-flex;
  gap: 7px;
}

.mockDots span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.mockBody {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.mockCard {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.mockCardTitle {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mockLine {
  height: 10px;
  border-radius: 99px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.25), rgba(34, 197, 94, 0.10));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockLine.sm {
  width: 70%;
}

.mockFooter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.14);
}

.mockMeta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.mockMeta span {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  margin-right: 8px;
}

.heroStats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.stat {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 12px;
}

.statLabel {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--muted2);
}

.statValue {
  margin-top: 6px;
  font-weight: 800;
}

.sectionLight {
  background: var(--lightBg);
  color: var(--darkText);
  padding: 56px 0;
}

.sectionDark {
  background: rgba(11, 16, 32, 1);
  color: var(--text);
  padding: 56px 0;
}

.sectionHead.light {
  margin-bottom: 16px;
}

.h2.dark {
  color: var(--darkText);
}

.muted.dark {
  color: var(--darkMuted);
}

.cardLight {
  background: var(--lightCard);
  border: 1px solid var(--lightBorder);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

.cardTitle.dark {
  color: var(--darkText);
}

.codeLight {
  margin-top: 10px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 14px;
  padding: 12px;
  overflow: auto;
  color: rgba(17, 24, 39, 0.92);
}

.sectionLight .btnSecondary {
  background: rgba(17, 24, 39, 0.04);
  border-color: rgba(17, 24, 39, 0.14);
  color: rgba(17, 24, 39, 0.92);
}

.sectionLight .btnSecondary:hover {
  background: rgba(17, 24, 39, 0.08);
}

.sectionLight .btnGhost {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.16);
  color: rgba(17, 24, 39, 0.80);
}

.sectionLight .btnGhost:hover {
  background: rgba(17, 24, 39, 0.06);
  color: rgba(17, 24, 39, 0.92);
}

.stepsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 980px) {
  .stepsGrid {
    grid-template-columns: 1fr;
  }
}

.stepCard {
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
  background: white;
}

.stepPink {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(236, 72, 153, 0.14), rgba(255, 255, 255, 0.92));
}

.stepPurple {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.22), rgba(124, 58, 237, 0.16), rgba(255, 255, 255, 0.92));
}

.stepTeal {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(16, 185, 129, 0.14), rgba(255, 255, 255, 0.92));
}

.stepTop {
  display: grid;
  gap: 10px;
}

.stepPill {
  display: inline-flex;
  width: fit-content;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(17, 24, 39, 0.70);
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.70);
  padding: 7px 10px;
  border-radius: 999px;
}

.stepTitle {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(17, 24, 39, 0.96);
}

.stepBody {
  margin-top: 10px;
  color: rgba(17, 24, 39, 0.75);
  line-height: 1.6;
}

.stepActions {
  margin-top: 14px;
}

.btnMini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  background: rgba(255, 255, 255, 0.70);
  color: rgba(17, 24, 39, 0.92);
}

.btnMini:hover {
  background: rgba(255, 255, 255, 0.95);
}

.pricingGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 980px) {
  .pricingGrid {
    grid-template-columns: 1fr;
  }
}

.priceCard {
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 55px rgba(17, 24, 39, 0.12);
  position: relative;
  overflow: hidden;
}

.priceCard::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-primary);
}

.priceCard.featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 28px 70px rgba(91, 33, 182, 0.18);
  transform: translateY(-6px);
}

@media (max-width: 980px) {
  .priceCard.featured {
    transform: none;
  }
}

.priceBadge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(91, 33, 182, 0.10);
  border: 1px solid rgba(91, 33, 182, 0.22);
  color: rgba(91, 33, 182, 0.96);
}

.priceTitle {
  margin-top: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: rgba(17, 24, 39, 0.96);
}

.priceText {
  margin-top: 8px;
  color: rgba(17, 24, 39, 0.70);
  line-height: 1.6;
}

.priceList {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(17, 24, 39, 0.76);
  line-height: 1.8;
}

.priceActions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sectionLight .btnPrimary {
  box-shadow: 0 16px 45px rgba(91, 33, 182, 0.18);
}

.faqList {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.faqItem {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(30, 41, 59, 0.55);
  padding: 12px 14px;
}

.faqItem summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faqItem summary::after {
  content: '+';
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 250, 252, 0.92);
  flex: 0 0 auto;
}

.faqItem[open] summary::after {
  content: '−';
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

.faqBody {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.whyGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 980px) {
  .whyGrid {
    grid-template-columns: 1fr;
  }
}

.whyCard {
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
}

.whyTitle {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(17, 24, 39, 0.96);
}

.whyText {
  margin-top: 10px;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.7;
}

.ctaBanner {
  padding: 48px 0;
  background: var(--gradient-cta);
  color: white;
}

.ctaInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 720px) {
  .ctaInner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ctaTitle {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.ctaText {
  margin-top: 6px;
  opacity: 0.9;
  line-height: 1.6;
}

.footerText {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

.footerCols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

@media (max-width: 860px) {
  .footerCols {
    grid-template-columns: 1fr;
  }
}

.footerCol {
  display: grid;
  gap: 10px;
}

.footerHead {
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footerTopLine {
  height: 4px;
  background: var(--gradient-primary);
}

.footerInnerWide {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 28px;
  padding: 34px 0;
  align-items: start;
}

@media (max-width: 980px) {
  .footerInnerWide {
    grid-template-columns: 1fr;
  }
}

.footerBrandTop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footerMark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}

.footerBrandName {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.footerMenu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 22px;
}

@media (max-width: 980px) {
  .footerMenu {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footerMenu {
    grid-template-columns: 1fr;
  }
}

.footerColForm {
  align-self: start;
}

.newsletter {
  margin-top: 10px;
  position: relative;
  display: flex;
  align-items: center;
}

.newsletterInput {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 250, 252, 0.92);
  outline: none;
}

.newsletterInput::placeholder {
  color: rgba(148, 163, 184, 0.85);
}

.newsletterInput:focus {
  box-shadow: var(--focus);
  border-color: rgba(236, 72, 153, 0.45);
}

.newsletterBtn {
  position: absolute;
  right: 6px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(248, 250, 252, 0.95);
  font-weight: 900;
}

.newsletterBtn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footerBottom {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(11, 15, 26, 0.72);
}

.footerBottomInner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.footerCopy {
  color: rgba(148, 163, 184, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.footerLegal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footerLegalLink {
  color: rgba(148, 163, 184, 0.86);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.footerLegalLink:hover {
  color: rgba(248, 250, 252, 0.92);
}

.chatbot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 18px 45px rgba(91, 33, 182, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  z-index: 120;
}

.chatbot:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.chatbotIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
