:root {
  --bg: #0f1115;
  --panel: #141824;
  --card: #171c2a;
  --text: #e8eaf0;
  --muted: #a9afc3;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #2dd4bf;
  --accent2: #60a5fa;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --font: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --section-space-top: 68px;
  --section-space-bottom: 72px;
  --type-hero-h1: clamp(32px, 2.8vw, 44px);
  --type-section-h2: 30px;
  --type-card-title-lg: 28px;
  --type-card-title-md: 24px;
  --type-body-lead: 18px;
  --type-body-default: 17px;
  --type-body-compact: 16px;
  --type-meta: 14px;
  --type-kicker: 13px;
  --type-kicker-lg: 15px;
  --type-metric-title: 22px;
  --type-metric-body: 13px;
}

* { box-sizing: border-box; }

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

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(45, 212, 191, 0.22), transparent 60%),
    radial-gradient(1200px 600px at 85% 10%, rgba(96, 165, 250, 0.18), transparent 55%),
    var(--bg);
  line-height: 1.5;
}

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.topbar .wrap {
  position: relative;
}

.topbar {
  position: relative;
  top: auto;
  z-index: 10;
  background: #05070b;
  color: #e8eefb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu-open .topbar {
  z-index: 80;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #e8eefb;
}

.logo {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav a.nav-mega-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.mega-scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  background:
    radial-gradient(1200px 560px at 50% -15%, rgba(65, 132, 245, 0.24), transparent 66%),
    rgba(3, 8, 18, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.mega-scrim.active {
  opacity: 1;
  pointer-events: auto;
}

.mega-overlay {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  width: min(1380px, calc(100vw - 36px));
  z-index: 72;
  --pointer-left: 210px;
}

.mega-overlay--shop {
  width: min(560px, calc(100vw - 36px));
  left: auto;
  right: 0;
  transform: none;
}

.mega-overlay--blog {
  width: min(1120px, calc(100vw - 36px));
}

.mega-overlay--support {
  width: min(620px, calc(100vw - 36px));
  left: auto;
  right: 0;
  transform: none;
}

.mega-overlay::before {
  content: "";
  position: absolute;
  top: -9px;
  left: clamp(30px, var(--pointer-left), calc(100% - 30px));
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, rgba(43, 61, 97, 0.98), rgba(31, 40, 62, 0.98));
  border-top: 1px solid rgba(120, 146, 196, 0.65);
  border-left: 1px solid rgba(120, 146, 196, 0.65);
  border-radius: 4px;
  rotate: 45deg;
}

.mega-panel {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(131, 177, 255, 0.62);
  background:
    radial-gradient(560px 260px at -8% 0%, rgba(86, 169, 255, 0.22), transparent 74%),
    radial-gradient(680px 280px at 108% 4%, rgba(70, 214, 190, 0.15), transparent 78%),
    linear-gradient(162deg, rgba(17, 30, 56, 0.99), rgba(8, 14, 30, 0.99));
  color: #e9efff;
  box-shadow:
    0 34px 90px rgba(2, 8, 20, 0.82),
    0 0 0 1px rgba(153, 202, 255, 0.16),
    0 0 58px rgba(57, 138, 255, 0.24);
  backdrop-filter: blur(12px);
  isolation: isolate;
}

.mega-panel--shop {
  grid-template-columns: 1fr;
}

.mega-panel--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(88, 188, 255, 0.75), rgba(160, 131, 255, 0.64), rgba(62, 211, 197, 0.75));
  pointer-events: none;
  z-index: 3;
}

.mega-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(63, 124, 238, 0.19) 0%,
      rgba(56, 170, 238, 0.08) 40%,
      rgba(89, 111, 234, 0.15) 72%,
      rgba(24, 168, 206, 0.08) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.mega-panel > * {
  position: relative;
  z-index: 1;
}

.mega-switch {
  background:
    linear-gradient(185deg, rgba(18, 30, 56, 0.94), rgba(8, 14, 28, 0.96));
  padding: 24px 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-right: 1px solid rgba(108, 131, 176, 0.34);
}

.mega-view-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(125, 146, 188, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #c2cbdf;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 0.18s ease;
}

.mega-view-btn span {
  color: #95a4c6;
  font-size: 18px;
  line-height: 1;
}

.mega-view-btn.active {
  background: linear-gradient(135deg, #52ccff, #7295ff);
  border-color: transparent;
  color: #051223;
}

.mega-view-btn:hover {
  border-color: rgba(160, 182, 222, 0.58);
  color: #e7edfb;
}

.mega-view-btn.active span {
  color: #051223;
}

.mega-body {
  background: transparent;
}

.mega-view {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 0.92fr);
  min-height: 520px;
  gap: 10px;
  padding: 12px;
}

.mega-view.active {
  display: grid;
}

.mega-col,
.mega-side {
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid rgba(114, 150, 215, 0.37);
}

.mega-col {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
}

.mega-col h3,
.mega-side h3 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.25;
  color: #f4f7ff;
  letter-spacing: 0.01em;
}

.mega-shop-col {
  padding: 18px 16px;
}

.mega-shop-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.mega-shop-list a {
  display: block;
  margin: 0;
  border: 1px solid rgba(118, 140, 183, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 9px 11px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #e7eefc;
  transition: 0.16s ease;
}

.mega-shop-list a:hover {
  border-color: rgba(113, 189, 255, 0.65);
  background: rgba(67, 120, 232, 0.14);
  color: #ffffff;
}

.mega-col a {
  display: block;
  text-decoration: none;
  color: #c7d0e4;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.mega-col a:hover {
  color: #ffffff;
}

.mega-col > a {
  border: 1px solid rgba(118, 140, 183, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: 0.16s ease;
}

.mega-col > a::after {
  content: "↗";
  color: #6ea9ff;
  font-size: 14px;
  line-height: 1;
}

.mega-col > a:hover {
  border-color: rgba(113, 189, 255, 0.65);
  background: rgba(67, 120, 232, 0.14);
}

.mega-product-list {
  display: grid;
  gap: 10px;
}

.mega-product-item {
  border: 1px solid rgba(118, 142, 190, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 12px 10px;
  transition: 0.16s ease;
}

.mega-product-item:hover {
  border-color: rgba(114, 190, 255, 0.56);
  background: rgba(72, 126, 231, 0.12);
}

.mega-product-item a {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  color: #f6f9ff;
}

.mega-product-item p {
  margin: 0;
  color: #a7b2c9;
  font-size: 13px;
  line-height: 1.43;
}

.mega-side {
  background:
    radial-gradient(300px 180px at 90% 0%, rgba(104, 177, 255, 0.28), transparent 78%),
    linear-gradient(180deg, rgba(27, 45, 82, 0.96), rgba(13, 23, 44, 0.99));
  border-color: rgba(138, 176, 238, 0.55);
}

.mega-side p {
  margin: 0 0 14px;
  color: #c2cee6;
  font-size: 13px;
  line-height: 1.55;
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #e9f0ff;
  border: 1px solid rgba(129, 156, 210, 0.64);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.16s ease;
}

.mega-cta:hover {
  background: linear-gradient(135deg, #59cfff, #77a1ff);
  border-color: transparent;
  color: #041122;
}

.mega-cta::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 600;
  transition: 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.95), rgba(96, 165, 250, 0.9));
  border: 0;
  color: #061017;
}

.hero {
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

h1 {
  font-size: 44px;
  line-height: 1.08;
  margin: 16px 0 10px;
}

h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

section {
  padding-top: var(--section-space-top);
  padding-bottom: var(--section-space-bottom);
}

ul.clean {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.callout {
  margin-top: 14px;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 16px;
  padding: 14px;
  color: var(--muted);
}

input, textarea, select {
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.form-status[data-tone="ok"] {
  color: #7dd3a7;
}

.form-status[data-tone="warn"] {
  color: #fca5a5;
}

.search-result {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.search-result h3 {
  margin: 0 0 6px;
}

.search-result p {
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-rich {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #04060a;
  padding: 42px 0 30px;
}

.footer-rich-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand-mark {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-rich-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 34px 0 24px;
}

.footer-col {
  display: grid;
  gap: 12px;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: #9fa6b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 500;
}

.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.footer-col a:hover {
  color: #c8d0e5;
}

.footer-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-solutions span {
  color: #9fa6b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 500;
  margin-right: 10px;
}

.footer-solutions a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  padding-top: 20px;
  color: #c2c8d8;
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom-links a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .mega-overlay {
    display: none !important;
  }

  h1 {
    font-size: 34px;
  }

  .footer-rich-columns {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 26px;
  }

  .footer-col a {
    font-size: 15px;
  }

  .footer-brand {
    font-size: 28px;
  }
}

.hero-compact {
  padding: 44px 0 8px;
}

.hero-compact .wrap {
  text-align: center;
}

.hero-compact h1 {
  margin: 0 0 10px;
}

.lead-short {
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  max-width: 760px;
}

.home-page .hero-compact {
  padding-bottom: 24px;
}

.home-page .lead-short {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  max-width: 980px;
}

.product-hub-section {
  padding-top: 18px;
}

.home-page .product-hub-section {
  padding-top: 28px;
}

.category-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.cat-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cat-btn.active {
  color: #061017;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.95), rgba(96, 165, 250, 0.9));
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(260px 130px at 100% 0%, rgba(45, 212, 191, 0.13), transparent 70%),
    rgba(255, 255, 255, 0.04);
}

.product-card.is-hidden {
  display: none !important;
}

.product-card h2 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  flex-wrap: wrap;
}

.module-visual {
  margin: 16px 0 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.module-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-band {
  padding: 46px 0 52px;
  background:
    radial-gradient(1400px 300px at 0% 0%, rgba(22, 163, 74, 0.12), transparent 55%),
    radial-gradient(1400px 300px at 100% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.client-strip {
  display: grid;
  gap: 24px;
}

.client-strip-title {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.client-logos img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  opacity: 1;
}

.demo-cta {
  padding: 28px 0 40px;
  background: linear-gradient(180deg, #e8effa 0%, #e2ebf8 100%);
  border-top: 1px solid rgba(43, 67, 105, 0.12);
  border-bottom: 1px solid rgba(43, 67, 105, 0.12);
}

.demo-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.demo-cta-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(62, 92, 139, 0.24);
  background: #e6eef9;
}

.demo-cta-media img {
  display: block;
  width: 100%;
  height: auto;
}

.demo-cta-content h2 {
  margin: 6px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  color: #122a50;
}

.demo-cta-content p {
  margin: 0 0 16px;
  color: #4e648a;
  font-size: 18px;
  max-width: 56ch;
}

.demo-cta-eyebrow {
  margin: 0;
  color: #496894;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.invoice-focus {
  padding-top: 22px;
  padding-bottom: 56px;
  background:
    radial-gradient(1200px 300px at 20% -20%, rgba(45, 212, 191, 0.12), transparent 60%),
    radial-gradient(1200px 300px at 80% -20%, rgba(96, 165, 250, 0.12), transparent 60%),
    #05070b;
}

.invoice-focus-inner {
  text-align: center;
  padding: 46px 0 50px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.invoice-focus-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.invoice-focus-inner h2 {
  margin: 0 auto;
  max-width: 30ch;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.invoice-focus-text {
  margin: 18px auto 0;
  max-width: 980px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.invoice-focus-btn {
  margin-top: 26px;
}

.value-section {
  padding-top: 6px;
  padding-bottom: 66px;
  background: #05070b;
}

.value-intro {
  text-align: center;
}

.value-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.value-intro h2 {
  margin: 0 auto;
  max-width: 30ch;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.value-text {
  margin: 18px auto 0;
  max-width: 980px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.value-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.value-item {
  display: flex;
  flex-direction: column;
  padding: 4px 2px;
}

.value-item h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  min-height: 2.4em;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(37, 99, 235, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.value-icon-support::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 13px;
  width: 26px;
  height: 18px;
  border: 3px solid #60a5fa;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.value-icon-support::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 12px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #dbe0ea;
}

.value-icon-hosting::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 30px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  box-shadow:
    0 10px 0 0 rgba(96, 165, 250, 0.95),
    0 20px 0 0 rgba(96, 165, 250, 0.9);
}

.value-icon-hosting::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 18px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(219, 224, 234, 0.98);
  box-shadow:
    0 10px 0 0 rgba(219, 224, 234, 0.98),
    0 20px 0 0 rgba(219, 224, 234, 0.98);
}

.value-icon-compliance::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 10px;
  width: 24px;
  height: 30px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  clip-path: polygon(50% 0, 100% 18%, 100% 54%, 50% 100%, 0 54%, 0 18%);
}

.value-icon-compliance::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 21px;
  width: 10px;
  height: 6px;
  border-left: 4px solid rgba(219, 224, 234, 0.98);
  border-bottom: 4px solid rgba(219, 224, 234, 0.98);
  transform: rotate(-45deg);
}

.value-actions {
  margin-top: 34px;
  text-align: center;
}

.value-btn {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.02);
  padding-inline: 28px;
}

.offer-cards-section {
  padding-top: 10px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #e8effa 0%, #e2ebf8 100%);
  border-top: 1px solid rgba(43, 67, 105, 0.12);
  border-bottom: 1px solid rgba(43, 67, 105, 0.12);
}

.offer-cards-section .wrap {
  max-width: 1360px;
}

.offer-header {
  text-align: center;
}

.offer-kicker {
  margin: 0 0 14px;
  color: #4a6794;
  font-size: 16px;
  font-weight: 500;
}

.offer-header h2 {
  margin: 0 auto;
  max-width: 30ch;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  color: #122a50;
}

.offer-text {
  margin: 18px auto 0;
  max-width: 980px;
  color: #4c6288;
  font-size: 16px;
  line-height: 1.45;
}

.offer-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.offer-card {
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(20, 41, 75, 0.12);
}

.offer-card-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #04060a;
}

.offer-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.offer-card-body {
  padding: 16px 8px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  min-height: 2.4em;
}

.offer-card p {
  margin: 12px 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.offer-card-btn {
  margin-top: auto;
  align-self: flex-start;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.82);
  background: transparent;
  padding: 12px 24px;
}

.offer-card-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.blog-teaser-section {
  padding-top: 8px;
  padding-bottom: 68px;
  background: #05070b;
}

.blog-teaser-section .wrap {
  max-width: 1360px;
}

.blog-teaser-header {
  text-align: center;
}

.blog-teaser-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.blog-teaser-header h2 {
  margin: 0 auto;
  max-width: 30ch;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.blog-teaser-text {
  margin: 18px auto 0;
  max-width: 980px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.blog-teaser-nav {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.blog-arrow {
  border: 0;
  background: transparent;
  color: #8f95a7;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.blog-arrow.active {
  color: #60a5fa;
}

.blog-arrow.is-disabled {
  color: #5f6472;
  cursor: default;
}

.blog-teaser-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-teaser-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #17191f;
}

.blog-teaser-card[hidden] {
  display: none;
}

.blog-teaser-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.blog-teaser-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #090b10;
}

.blog-teaser-body {
  padding: 18px 20px 22px;
}

.blog-teaser-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.24;
  min-height: 2.48em;
}

.blog-teaser-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.blog-teaser-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.blog-dot {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.blog-dot.active {
  width: 32px;
  background: #60a5fa;
}

.blog-teaser-actions {
  margin-top: 24px;
  text-align: center;
}

.newsletter-signup {
  padding-top: 26px;
  padding-bottom: 92px;
  background:
    radial-gradient(900px 360px at 0% 20%, rgba(45, 212, 191, 0.16), transparent 60%),
    radial-gradient(900px 360px at 100% 10%, rgba(96, 165, 250, 0.16), transparent 60%),
    #071019;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-signup-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(125, 211, 167, 0.16);
  background: linear-gradient(135deg, rgba(8, 16, 28, 0.94), rgba(12, 23, 38, 0.88));
  box-shadow: 0 24px 60px rgba(2, 8, 20, 0.34);
}

.newsletter-signup-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.newsletter-signup-kicker {
  margin: 0;
  color: #7dd3a7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-signup-copy h2 {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  max-width: 14ch;
}

.newsletter-signup-text {
  margin: 0;
  color: #bfd0eb;
  font-size: 18px;
  max-width: 54ch;
}

.newsletter-signup-list {
  margin-top: 4px;
  color: #d8e4f7;
}

.newsletter-signup-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.newsletter-signup-form {
  display: grid;
  gap: 10px;
}

.newsletter-signup-form input[type="email"] {
  background: rgba(7, 12, 22, 0.72);
  border-color: rgba(191, 208, 235, 0.18);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 0;
}

.checkbox-field input {
  width: auto;
  margin-top: 4px;
  padding: 0;
  accent-color: #7dd3a7;
  flex: 0 0 auto;
}

.checkbox-field span {
  color: #bfd0eb;
  font-size: 14px;
  line-height: 1.45;
}

.newsletter-consent a {
  color: #f4f8ff;
}

.newsletter-signup-note {
  margin: 2px 0 0;
  color: #9db0cd;
  font-size: 13px;
}

.newsletter-signup-note a {
  color: #f4f8ff;
}

.newsletter-page {
  background:
    radial-gradient(1000px 520px at 10% -10%, rgba(45, 212, 191, 0.18), transparent 60%),
    radial-gradient(1000px 520px at 90% 0%, rgba(96, 165, 250, 0.16), transparent 58%),
    #08101a;
}

.newsletter-page-hero {
  padding-top: 44px;
  padding-bottom: 32px;
}

.newsletter-page-hero-card {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(159, 198, 255, 0.18);
  background:
    radial-gradient(680px 220px at 0% 0%, rgba(45, 212, 191, 0.16), transparent 62%),
    linear-gradient(145deg, rgba(10, 21, 36, 0.96), rgba(13, 27, 46, 0.92));
  box-shadow: 0 24px 60px rgba(2, 8, 20, 0.3);
}

.newsletter-page-kicker {
  margin: 0;
  color: #7dd3a7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-page-hero-card h1 {
  margin: 12px 0 14px;
  max-width: 14ch;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  color: #f4f8ff;
}

.newsletter-page-hero-card .lead {
  max-width: 62ch;
  color: #c7d5eb;
}

.newsletter-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.newsletter-manage {
  padding-top: 12px;
  padding-bottom: 112px;
}

.newsletter-manage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.newsletter-manage-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(161, 191, 233, 0.22);
  background: linear-gradient(180deg, #f7fbff, #ebf3ff);
  box-shadow: 0 20px 50px rgba(2, 8, 20, 0.18);
  color: #10233f;
}

.newsletter-manage-card--subtle {
  background: linear-gradient(180deg, #eef4fb, #e7eff9);
}

.newsletter-manage-kicker {
  margin: 0 0 8px;
  color: #3b5e8d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-manage-card h2 {
  margin: 0 0 10px;
  color: #10233f;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.08;
}

.newsletter-manage-card p {
  margin: 0 0 14px;
  color: #385173;
  font-size: 17px;
  line-height: 1.55;
}

.newsletter-manage-list {
  margin-bottom: 18px;
  color: #1c385f;
}

.newsletter-signup-form--light label {
  color: #385173;
}

.newsletter-signup-form--light input[type="email"] {
  background: #fff;
  color: #10233f;
  border-color: rgba(38, 61, 100, 0.16);
}

.newsletter-signup-form--light input[type="email"]::placeholder {
  color: #7a8fab;
}

.newsletter-consent--light span {
  color: #385173;
}

.newsletter-consent--light a,
.newsletter-signup-note--light a {
  color: #10233f;
}

.newsletter-signup-note--light {
  color: #516884;
}

.product-detail-page main {
  padding-bottom: 30px;
  background:
    radial-gradient(900px 360px at 12% 0%, rgba(45, 212, 191, 0.1), transparent 68%),
    radial-gradient(1000px 380px at 90% -4%, rgba(96, 165, 250, 0.12), transparent 72%);
}

.pd-hero {
  padding: 40px 0 20px;
}

.pd-breadcrumb {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #93a2bc;
  font-size: 13px;
}

.pd-breadcrumb a {
  text-decoration: none;
  color: #b8c6dd;
}

.pd-breadcrumb strong {
  color: #e8eefb;
  font-weight: 600;
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.pd-eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #83d4d0;
}

.pd-hero-copy {
  border: 0;
  border-radius: 0;
  padding: 8px 0 10px;
  background: transparent;
}

.pd-hero-module {
  margin: 0 0 8px;
  color: #d7e4f8;
  font-size: clamp(15px, 1.25vw, 22px);
  line-height: 1.25;
  font-weight: 500;
}

.pd-hero h1 {
  margin: 0;
  font-size: clamp(32px, 2.8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 11.2ch;
}

.pd-hero-intro-card {
  margin-top: 18px;
  border: 0;
  border-radius: 0;
  padding: 16px 18px;
  background: rgba(10, 24, 53, 0.4);
}

.pd-hero-copy .lead {
  margin: 0;
  max-width: 52ch;
  color: #d5e1f5;
  font-size: 17px;
  line-height: 1.5;
}

.pd-pill-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(140, 170, 218, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #d2ddf0;
  background: rgba(255, 255, 255, 0.04);
}

.pd-cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-hero-trust {
  margin-top: 18px;
  padding: 16px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(121, 163, 226, 0.3);
  background:
    radial-gradient(520px 180px at 0% 0%, rgba(73, 201, 242, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(10, 16, 28, 0.66);
  box-shadow: 0 18px 42px rgba(6, 10, 18, 0.2);
}

.pd-hero-trust-line {
  margin: 0;
  color: #eef7ff;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pd-hero-trust-copy,
.pd-hero-trust-demo {
  margin: 10px 0 0;
  color: #c6d6ef;
  font-size: 16px;
  line-height: 1.6;
  max-width: 66ch;
}

.pd-hero-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
}

.pd-hero-trust-links a {
  color: #8dd8ff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.pd-meta {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pd-meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7d6ef;
  font-size: 15px;
}

.pd-meta li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa 70%);
}

.pd-hero-card {
  padding: 0;
  background:
    radial-gradient(500px 210px at 100% 0%, rgba(96, 165, 250, 0.14), transparent 70%),
    linear-gradient(168deg, rgba(13, 23, 44, 0.92), rgba(7, 12, 24, 0.9));
  border: 0;
  box-shadow: none;
}

.pd-hero-media-wrap {
  border-radius: 20px;
  padding: 6px;
  border: 1px solid rgba(124, 157, 212, 0.34);
  background: rgba(255, 255, 255, 0.02);
  height: 100%;
}

.pd-hero-card img {
  display: block;
  width: 100%;
  min-height: 610px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  object-fit: cover;
}

.pd-kpi-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pd-kpi {
  border: 1px solid rgba(124, 156, 208, 0.36);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  display: grid;
  gap: 2px;
}

.pd-kpi strong {
  font-size: 18px;
  line-height: 1.2;
}

.pd-kpi span {
  color: #9dafcb;
  font-size: 12px;
  line-height: 1.35;
}

.pd-hero-highlights h2 {
  margin: 14px 0 6px;
  font-size: 24px;
  line-height: 1.2;
}

.pd-hero-highlights .clean {
  margin-top: 8px;
}

.pd-proof-band {
  padding: 8px 0 14px;
}

.pd-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pd-proof-item {
  border: 1px solid rgba(120, 152, 206, 0.3);
  border-radius: 14px;
  padding: 12px 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  display: grid;
  gap: 3px;
}

.pd-proof-item strong {
  font-size: 22px;
}

.pd-proof-item span {
  color: #9eb1cf;
  font-size: 13px;
}

.pd-subnav {
  position: sticky;
  top: 0;
  z-index: 42;
  border-top: 0;
  border-bottom: 0;
  background: rgba(246, 250, 255, 0.96);
  backdrop-filter: blur(9px);
}

.pd-subnav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 5px 0;
}

.pd-subnav-product {
  color: #061017;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.pd-anchor-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.pd-anchor-nav a {
  text-decoration: none;
  border: 1px solid rgba(33, 58, 97, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  color: #1f3355;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  white-space: nowrap;
}

.pd-anchor-nav a:hover {
  color: #0c1f3d;
  border-color: rgba(37, 99, 235, 0.4);
  background: #fff;
}

.pd-subnav-action {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.pd-section {
  padding: 36px 0;
}

.pd-section.alt {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(900px 280px at 10% 0%, rgba(96, 165, 250, 0.08), transparent 74%),
    rgba(255, 255, 255, 0.015);
}

.pd-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.pd-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pd-suite-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 16px;
}

.pd-suite-tabs {
  margin: 0 auto 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: #d9e5f6;
  border: 1px solid rgba(49, 78, 121, 0.16);
}

.pd-suite-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1d355a;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.16s ease;
  white-space: nowrap;
}

.pd-suite-tab:hover {
  color: #0f2341;
  background: rgba(255, 255, 255, 0.55);
}

.pd-suite-tab.active {
  color: #f4f8ff;
  background: linear-gradient(135deg, #08162f, #0e2d57);
  box-shadow: 0 5px 14px rgba(16, 35, 68, 0.2);
}

.pd-suite-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.pd-suite-copy h3 {
  margin: 0 0 10px;
  color: #11294d;
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.pd-suite-copy p {
  margin: 0 0 14px;
  color: #4b6389;
  font-size: 18px;
  line-height: 1.45;
}

.pd-suite-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pd-suite-features li {
  position: relative;
  padding-left: 24px;
  color: #233f68;
  font-size: 17px;
  line-height: 1.45;
}

.pd-suite-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2a83ca;
  font-weight: 700;
}

.pd-suite-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-suite-media {
  margin: 0;
  border-radius: 18px;
  padding: 8px;
  border: 1px solid rgba(52, 82, 131, 0.25);
  background:
    radial-gradient(520px 240px at 100% 0%, rgba(96, 165, 250, 0.16), transparent 72%),
    linear-gradient(165deg, #0a1730, #0a1f40 55%, #081429);
}

.pd-suite-media img {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(143, 177, 230, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.pd-more-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.pd-more-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.pd-more-nav {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 8px;
}

.pd-more-nav-item {
  position: relative;
  text-align: left;
  border: 0;
  background: transparent;
  color: #4f5f7b;
  padding: 10px 6px 10px 16px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.16s ease;
}

.pd-more-nav-item:hover {
  color: #233c64;
  background: rgba(255, 255, 255, 0.45);
}

.pd-more-nav-item.active {
  color: #11294d;
  background: rgba(255, 255, 255, 0.72);
}

.pd-more-nav-item.active::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  bottom: 10px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2dd4bf, #60a5fa);
}

.pd-more-copy h3 {
  margin: 0 0 12px;
  color: #11294d;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.012em;
}

.pd-more-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.pd-more-features li {
  position: relative;
  padding-left: 20px;
  color: #253e67;
  font-size: 17px;
  line-height: 1.45;
}

.pd-more-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b3862;
  font-size: 20px;
  line-height: 1.1;
}

.pd-more-copy .btn {
  margin-top: 16px;
}

.pd-more-media {
  margin: 0;
  border-radius: 18px;
  padding: 8px;
  border: 1px solid rgba(52, 82, 131, 0.22);
  background:
    radial-gradient(520px 240px at 100% 0%, rgba(96, 165, 250, 0.14), transparent 72%),
    linear-gradient(165deg, #0b1730, #0b1e3e 55%, #091428);
}

.pd-more-media img {
  display: block;
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(143, 177, 230, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.pd-feature-grid {
  display: block;
}

.pd-function-explorer {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.55fr);
  gap: 26px;
  align-items: start;
}

.pd-function-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-function-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(81, 113, 168, 0.22);
  background: transparent;
  border-radius: 0;
  padding: 12px 8px 12px 18px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: 0.18s ease;
}

.pd-function-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: transparent;
  transition: 0.18s ease;
}

.pd-function-item:hover {
  border-bottom-color: rgba(59, 101, 168, 0.42);
  transform: translateX(2px);
}

.pd-function-item.active {
  background: transparent;
  border-bottom-color: rgba(54, 99, 168, 0.54);
  box-shadow: none;
}

.pd-function-item.active::before {
  background: linear-gradient(180deg, #39d1be, #6ea5ff);
}

.pd-function-item-title {
  display: block;
  margin-bottom: 0;
  color: #11284d;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.pd-function-stage {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.pd-function-copy h3 {
  margin: 0;
  color: #10284d;
  font-size: clamp(27px, 2.3vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.pd-function-text {
  margin: 12px 0 0;
  color: #445f8b;
  font-size: 15px;
  line-height: 1.55;
  max-width: 46ch;
}

.pd-function-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pd-function-actions .btn {
  min-width: 220px;
}

.pd-function-media {
  margin: 18px 0 0;
  border-radius: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.pd-function-media img {
  display: block;
  width: 100%;
  min-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  border: 0;
}

.pd-function-media-caption {
  margin: 10px 0 0;
  color: #4e6894;
  font-size: 13px;
  line-height: 1.4;
}

.pd-function-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.pd-function-thumb {
  border: 1px solid rgba(106, 134, 185, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px;
  text-align: left;
  cursor: pointer;
  transition: 0.18s ease;
}

.pd-function-thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(65, 120, 204, 0.42);
}

.pd-function-thumb.active {
  border-color: rgba(63, 125, 225, 0.62);
  box-shadow: 0 0 0 1px rgba(63, 125, 225, 0.18);
}

.pd-function-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  min-height: 0;
}

.pd-function-thumb span {
  display: block;
  margin-top: 7px;
  color: #17335a;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
}

.pd-function-slider-section {
  color: #e8efff;
  background:
    radial-gradient(900px 260px at 14% 0%, rgba(68, 150, 255, 0.14), transparent 74%),
    radial-gradient(900px 260px at 86% 0%, rgba(76, 209, 246, 0.12), transparent 74%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pd-fx-slider-head {
  text-align: center;
  margin-bottom: 26px;
}

.pd-fx-slider-head h2 {
  margin: 0;
  color: #f3f7ff;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pd-fx-slider-head p {
  margin: 16px auto 0;
  max-width: 62ch;
  color: #b1c0dc;
  font-size: 19px;
  line-height: 1.45;
}

.pd-fx-slider-nav {
  margin-bottom: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.pd-fx-arrow {
  border: 0;
  background: transparent;
  color: #7f89a0;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.pd-fx-arrow.active {
  color: #6ea5ff;
}

.pd-fx-arrow.is-disabled {
  color: #525a6d;
  cursor: default;
}

.pd-fx-slider-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pd-fx-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%),
    #161b24;
  padding: 24px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pd-fx-card[hidden] {
  display: none;
}

.pd-fx-card h3 {
  margin: 0;
  color: #f2f7ff;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.pd-fx-card p {
  margin: 14px 0 0;
  color: #bfcae0;
  font-size: 17px;
  line-height: 1.55;
}

.pd-fx-preview {
  margin-top: auto;
  border-radius: 16px;
  border: 1px solid rgba(97, 141, 219, 0.35);
  padding: 14px;
  display: grid;
  gap: 10px;
  background:
    radial-gradient(320px 120px at 100% 0%, rgba(111, 169, 255, 0.2), transparent 74%),
    linear-gradient(160deg, #ecf4ff, #dce9ff);
}

.pd-fx-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 700;
  color: #11306a;
  background: rgba(255, 255, 255, 0.88);
}

.pd-fx-line {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(28, 65, 125, 0.24);
}

.pd-fx-line.is-strong {
  width: 62%;
  height: 11px;
  background: linear-gradient(90deg, #4ac9df, #6fa8ff);
}

.pd-fx-line.is-accent {
  width: 78%;
  background: linear-gradient(90deg, #3a8fe4, #5f8eff);
}

.pd-fx-preview.is-v2 .pd-fx-line.is-strong {
  background: linear-gradient(90deg, #5ca6ff, #7f7dff);
}

.pd-fx-preview.is-v2 .pd-fx-line.is-accent {
  background: linear-gradient(90deg, #4598ff, #43c9e8);
}

.pd-fx-preview.is-v3 .pd-fx-line.is-strong {
  background: linear-gradient(90deg, #58d0e4, #70b6ff);
}

.pd-fx-preview.is-v3 .pd-fx-line.is-accent {
  background: linear-gradient(90deg, #6393ff, #5fc4f0);
}

.pd-fx-preview.is-v4 .pd-fx-line.is-strong {
  background: linear-gradient(90deg, #6bb1ff, #66d6ef);
}

.pd-fx-preview.is-v4 .pd-fx-line.is-accent {
  background: linear-gradient(90deg, #4b91f1, #6f8eff);
}

.pd-fx-slider-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pd-fx-dot {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.pd-fx-dot.active {
  width: 30px;
  background: #6ea5ff;
}

.pd-why-compare-section {
  color: #e8efff;
  background:
    radial-gradient(820px 240px at 18% 0%, rgba(67, 143, 241, 0.16), transparent 74%),
    radial-gradient(820px 240px at 82% 0%, rgba(56, 199, 228, 0.14), transparent 74%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pd-compare-head {
  margin-bottom: 42px;
  text-align: center;
}

.pd-compare-head h2 {
  margin: 0;
  color: #f2f7ff;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pd-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pd-compare-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #121721;
  padding: 30px 30px 32px;
}

.pd-compare-card.is-primary {
  position: relative;
  border-color: rgba(110, 165, 255, 0.34);
  background:
    radial-gradient(420px 160px at 0% 0%, rgba(69, 196, 227, 0.14), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #121721;
}

.pd-compare-card.is-primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(90deg, #44c7e2, #6e9fff);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.pd-compare-kicker {
  margin: 0 0 10px;
  color: #a9bcdf;
  font-size: 16px;
  line-height: 1.3;
}

.pd-compare-card h3 {
  margin: 0;
  color: #f4f8ff;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pd-compare-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.pd-compare-list li {
  position: relative;
  padding-left: 34px;
  color: #d7e2f6;
  font-size: 18px;
  line-height: 1.5;
}

.pd-compare-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  color: #6ea5ff;
  font-size: 21px;
  font-weight: 700;
}

.pd-compare-list.is-muted li {
  color: #bfcae0;
}

.pd-compare-list.is-muted li::before {
  content: "•";
  top: -0.02em;
  color: #cfd8ea;
  font-size: 24px;
  font-weight: 700;
}

.pd-compare-proof {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pd-compare-proof-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #d9e5f8;
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 16px;
}

.pd-cta-duo-section {
  color: #e8efff;
  background:
    radial-gradient(860px 260px at 18% 0%, rgba(73, 201, 242, 0.12), transparent 74%),
    radial-gradient(780px 220px at 82% 0%, rgba(71, 151, 255, 0.15), transparent 74%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pd-cta-duo-head {
  margin-bottom: 38px;
  text-align: center;
}

.pd-cta-duo-head p {
  margin: 0 0 10px;
  color: #a8b8d5;
  font-size: 19px;
  line-height: 1.32;
  font-weight: 600;
}

.pd-cta-duo-head h2 {
  margin: 0 auto;
  max-width: 920px;
  color: #eef4ff;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pd-cta-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pd-cta-duo-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(420px 180px at 14% 0%, rgba(87, 195, 255, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #141a26;
  padding: 30px 30px 32px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.pd-cta-duo-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 24px;
  border: 1px solid rgba(108, 151, 221, 0.28);
  background: linear-gradient(155deg, rgba(87, 129, 196, 0.22), rgba(73, 201, 242, 0.09));
  display: grid;
  place-items: center;
}

.pd-cta-duo-icon svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: #d6e6ff;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-cta-duo-icon .pd-cta-duo-outline {
  stroke: rgba(214, 230, 255, 0.55);
}

.pd-cta-duo-icon .pd-cta-duo-arrow {
  stroke: #62c6ee;
}

.pd-cta-duo-icon .pd-cta-duo-surface {
  fill: rgba(98, 166, 255, 0.18);
  stroke: rgba(131, 177, 255, 0.82);
}

.pd-cta-duo-icon .pd-cta-duo-divider {
  stroke: rgba(214, 230, 255, 0.72);
}

.pd-cta-duo-icon .pd-cta-duo-staple {
  stroke: rgba(214, 230, 255, 0.86);
}

.pd-cta-duo-icon .pd-cta-duo-chip,
.pd-cta-duo-icon .pd-cta-duo-block {
  fill: rgba(98, 198, 238, 0.52);
  stroke: rgba(98, 198, 238, 0.82);
}

.pd-cta-duo-icon .pd-cta-duo-dot {
  fill: #62c6ee;
  stroke: #62c6ee;
}

.pd-cta-duo-card h3 {
  margin: 0;
  color: #f2f7ff;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pd-cta-duo-card p {
  margin: 16px 0 0;
  color: #c7d5ee;
  font-size: 19px;
  line-height: 1.5;
  max-width: 36ch;
}

.pd-cta-duo-card .btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: 260px;
}

.pd-cta-duo-card .btn::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.1em;
  line-height: 1;
}

.pd-customer-stories-section {
  color: #e8efff;
  background:
    radial-gradient(860px 220px at 16% 0%, rgba(73, 201, 242, 0.09), transparent 72%),
    radial-gradient(780px 220px at 82% 0%, rgba(71, 151, 255, 0.12), transparent 74%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pd-customer-stories-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.pd-customer-stories-head > p:first-child {
  margin: 0 0 10px;
  color: #a8b8d5;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.pd-customer-stories-head h2 {
  margin: 0;
  color: #eef4ff;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pd-customer-stories-head > p:last-child {
  margin: 14px auto 0;
  max-width: 62ch;
  color: #c7d5ee;
  font-size: 18px;
  line-height: 1.55;
}

.pd-customer-stories-controls {
  margin: 34px 0 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.pd-customer-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(151, 184, 240, 0.34);
  background: rgba(255, 255, 255, 0.02);
  color: #dbe8ff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: 0.16s ease;
}

.pd-customer-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(151, 184, 240, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.pd-customer-arrow.active {
  color: #6ee0c7;
}

.pd-customer-arrow.is-disabled,
.pd-customer-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.pd-customer-stories-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3.15);
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.pd-customer-stories-track::-webkit-scrollbar {
  display: none;
}

.pd-customer-stories-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pd-customer-dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(214, 230, 255, 0.7);
  cursor: pointer;
  transition: 0.16s ease;
}

.pd-customer-dot.active {
  width: 42px;
  background: #0fd05b;
}

.pd-customer-story {
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(420px 170px at 100% 0%, rgba(98, 166, 255, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #131926;
  padding: 24px 24px 22px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.pd-customer-avatar {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(144, 180, 242, 0.44);
  box-shadow: 0 10px 26px rgba(5, 11, 21, 0.38);
}

.pd-customer-avatar span {
  color: #eef4ff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pd-customer-avatar.is-v1 {
  background: linear-gradient(145deg, #0d79d3, #14529d);
}

.pd-customer-avatar.is-v2 {
  background: linear-gradient(145deg, #1f8e75, #255aa9);
}

.pd-customer-avatar.is-v3 {
  background: linear-gradient(145deg, #2f78b4, #484ca8);
}

.pd-customer-avatar.is-v4 {
  background: linear-gradient(145deg, #1378aa, #2a6cba);
}

.pd-customer-industry {
  margin: 18px 0 0;
  color: #9eb2d8;
  font-size: 16px;
  line-height: 1.35;
}

.pd-customer-quote {
  margin: 14px 0 0;
  color: #e9f0ff;
  font-size: 18px;
  line-height: 1.6;
}

.pd-customer-author {
  margin: 14px 0 0;
  display: grid;
  gap: 4px;
}

.pd-customer-author strong {
  color: #f4f8ff;
  font-size: 20px;
  line-height: 1.25;
}

.pd-customer-author span {
  color: #c4d3ee;
  font-size: 16px;
  line-height: 1.35;
}

.pd-customer-video {
  margin-top: auto;
  padding-top: 18px;
  color: #dde9ff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.pd-customer-video:hover {
  color: #6ee0c7;
}

.pd-infopack-section {
  color: #e8efff;
  background:
    radial-gradient(820px 220px at 16% 0%, rgba(71, 151, 255, 0.15), transparent 74%),
    radial-gradient(820px 220px at 84% 0%, rgba(73, 201, 242, 0.13), transparent 74%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pd-infopack-shell {
  border: 1px solid rgba(56, 87, 133, 0.16);
  border-radius: 34px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ecf3ff 100%);
  padding: 48px 50px 54px;
  color: #10284d;
}

.pd-infopack-head {
  text-align: center;
  margin-bottom: 38px;
}

.pd-infopack-head p {
  margin: 0;
  color: #4f648a;
  font-size: 18px;
  line-height: 1.35;
}

.pd-infopack-head h2 {
  margin: 10px 0 0;
  color: #122a50;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pd-infopack-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.pd-infopack-copy > p {
  margin: 0;
  color: #314d79;
  font-size: 20px;
  line-height: 1.6;
  max-width: 37ch;
}

.pd-infopack-list {
  margin: 26px 0 0;
  padding-left: 28px;
  display: grid;
  gap: 16px;
}

.pd-infopack-list li {
  color: #2c456f;
  font-size: 17px;
  line-height: 1.55;
}

.pd-infopack-list li strong {
  color: #10284d;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.pd-infopack-copy .btn {
  margin-top: 28px;
  border-color: rgba(35, 62, 105, 0.48);
  color: #143463;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 620;
}

.pd-infopack-copy .btn:hover {
  border-color: rgba(59, 103, 170, 0.56);
  color: #10284d;
  background: rgba(255, 255, 255, 0.82);
}

.pd-pack-visual {
  position: relative;
  min-height: 580px;
  padding: 18px 0;
}

.pd-pack-main,
.pd-pack-doc {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(58, 93, 145, 0.28);
  box-shadow: 0 18px 38px rgba(13, 30, 58, 0.19);
  background: #f1f7ff;
}

.pd-pack-main {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
}

.pd-pack-main img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.pd-pack-main figcaption,
.pd-pack-doc figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 10px;
  padding: 7px 11px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 620;
  color: #e9f0ff;
  background: rgba(8, 16, 31, 0.72);
}

.pd-pack-doc {
  position: absolute;
  width: 270px;
}

.pd-pack-doc img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pd-pack-doc-a {
  right: 10px;
  bottom: 34px;
  transform: rotate(-1.9deg);
}

.pd-pack-doc-b {
  right: 232px;
  bottom: 2px;
  transform: rotate(2.1deg);
}

.pd-pack-badge {
  position: absolute;
  right: -8px;
  bottom: -2px;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #f3f9ff;
  background: linear-gradient(160deg, #44c8df, #6ea6ff);
  box-shadow: 0 14px 28px rgba(23, 50, 98, 0.26);
}

.pd-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pd-use-item {
  display: flex;
  align-items: center;
  border: 1px solid rgba(120, 151, 203, 0.3);
  border-radius: 14px;
  padding: 12px 13px;
  color: #cfdaee;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: 0.16s ease;
  min-height: 54px;
}

.pd-use-item span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.pd-use-item span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
  flex-shrink: 0;
}

.pd-use-item:hover {
  border-color: rgba(96, 165, 250, 0.45);
  color: #f4f7ff;
  background: rgba(96, 165, 250, 0.12);
}

.pd-use-item-content {
  display: grid;
  gap: 6px;
}

.pd-use-item-title {
  display: block;
  color: #f4f7ff;
  font-size: 16px;
  line-height: 1.35;
}

.pd-use-item-text {
  margin: 0;
  color: #b8cae6;
  font-size: 14px;
  line-height: 1.5;
}

.pd-use-item-roles {
  color: #8fc8d9;
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pd-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pd-flow-item {
  border: 0;
  border-radius: 0;
  padding: 10px 10px 12px;
  background: transparent;
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.pd-flow-icon,
.pd-flow-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #d9e9fb, #c9ddf5);
  box-shadow: inset 0 0 0 1px rgba(97, 133, 187, 0.35);
}

.pd-flow-icon {
  color: #2d72b7;
}

.pd-flow-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.pd-flow-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-flow-num {
  color: transparent;
  font-size: 0;
}

.pd-flow-num::before,
.pd-flow-num::after {
  content: "";
  position: absolute;
  display: block;
}

.pd-flow-item:nth-child(1) .pd-flow-num::before {
  width: 19px;
  height: 19px;
  border: 2.5px solid #2d72b7;
  border-radius: 999px;
  left: 13px;
  top: 12px;
}

.pd-flow-item:nth-child(1) .pd-flow-num::after {
  width: 10px;
  height: 2.5px;
  background: #2d72b7;
  border-radius: 999px;
  right: 11px;
  bottom: 13px;
  transform: rotate(45deg);
}

.pd-flow-item:nth-child(2) .pd-flow-num::before {
  width: 24px;
  height: 14px;
  left: 14px;
  top: 12px;
  border-radius: 2px;
  background:
    linear-gradient(#2d72b7, #2d72b7) left 0 top 1px / 22px 2px no-repeat,
    linear-gradient(#2d72b7, #2d72b7) left 0 top 6px / 22px 2px no-repeat,
    linear-gradient(#2d72b7, #2d72b7) left 0 top 11px / 22px 2px no-repeat;
}

.pd-flow-item:nth-child(2) .pd-flow-num::after {
  width: 22px;
  height: 12px;
  left: 15px;
  bottom: 11px;
  border-radius: 2px;
  background:
    radial-gradient(circle at 3px 2px, #4a97e4 0 2px, transparent 2.2px),
    radial-gradient(circle at 12px 7px, #4a97e4 0 2px, transparent 2.2px),
    radial-gradient(circle at 19px 2px, #4a97e4 0 2px, transparent 2.2px);
}

.pd-flow-item:nth-child(3) .pd-flow-num::before {
  width: 12px;
  height: 17px;
  left: 20px;
  top: 12px;
  border: 2.5px solid #2d72b7;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.pd-flow-item:nth-child(3) .pd-flow-num::after {
  width: 18px;
  height: 2.5px;
  left: 17px;
  bottom: 12px;
  border-radius: 999px;
  background: #2d72b7;
}

.pd-flow-item:nth-child(4) .pd-flow-num::before {
  width: 17px;
  height: 2.5px;
  left: 15px;
  top: 24px;
  border-radius: 999px;
  background: #2d72b7;
}

.pd-flow-item:nth-child(4) .pd-flow-num::after {
  width: 8px;
  height: 8px;
  right: 14px;
  top: 20px;
  border-right: 2.5px solid #2d72b7;
  border-top: 2.5px solid #2d72b7;
  transform: rotate(45deg);
}

.pd-flow-step {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4e6893;
  font-weight: 700;
}

.pd-flow-item h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.pd-flow-item p {
  margin: 0;
  color: #4b6389;
  font-size: 15px;
  line-height: 1.5;
}

.product-detail-page #ablauf.pd-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.pd-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pd-pricing-head {
  max-width: 1080px;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.pd-pricing-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.pd-pricing-head p {
  max-width: 920px;
}

.pd-price-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(52, 82, 132, 0.22);
  background:
    radial-gradient(340px 120px at 0% 0%, rgba(96, 165, 250, 0.08), transparent 72%),
    linear-gradient(180deg, #f7faff 0%, #edf3fc 100%);
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(18, 35, 63, 0.08);
}

.pd-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.78), rgba(96, 165, 250, 0.8));
}

.pd-price-card.featured {
  border-color: rgba(56, 103, 174, 0.35);
  background:
    radial-gradient(360px 140px at 100% 0%, rgba(45, 212, 191, 0.09), transparent 74%),
    linear-gradient(180deg, #f9fcff 0%, #edf4ff 100%);
  box-shadow: 0 14px 34px rgba(15, 37, 70, 0.13);
}

.pd-price-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  color: #11284d;
  min-height: 2.4em;
}

.pd-price-head {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 6px;
}

.pd-price-prefix {
  margin: 0;
  margin-top: 2px;
  color: #243b62;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.pd-price-row {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 4px;
  min-height: 0;
  margin-bottom: 0;
}

.pd-price-row strong {
  font-size: 38px;
  line-height: 1;
  color: #0f203f;
  letter-spacing: -0.03em;
}

.pd-price-row span {
  color: #24406d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.pd-price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  border-radius: 999px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.96), rgba(96, 165, 250, 0.92));
  color: #061017;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border: 0;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.pd-price-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.01);
}

.pd-price-demo {
  margin-top: 4px;
  color: #173664;
  font-size: 17px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.pd-price-trust {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(120, 169, 231, 0.26);
  background: linear-gradient(180deg, rgba(230, 245, 255, 0.96), rgba(244, 250, 255, 0.98));
}

.pd-price-trust-line {
  margin: 0;
  color: #0f203f;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.pd-price-trust-note {
  margin: 8px 0 0;
  color: #35527f;
  font-size: 14px;
  line-height: 1.55;
}

.pd-price-trust-note a {
  color: #0d61c7;
  font-weight: 700;
}

.pd-price-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pd-price-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  color: #263b62;
  font-size: 16px;
  line-height: 1.4;
}

.pd-price-list li::before {
  content: "✓";
  color: #1f7ccb;
  font-weight: 700;
}

.pd-price-note {
  margin: 18px 0 0;
  color: #5a6f95;
  font-size: 12px;
  line-height: 1.45;
}

.pd-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pd-quote {
  border: 1px solid rgba(116, 149, 204, 0.34);
  border-radius: 16px;
  padding: 16px 16px 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.pd-quote-head {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(117, 154, 216, 0.5);
  padding: 4px 10px;
  font-size: 12px;
  color: #abc1e5;
  margin-bottom: 10px;
}

.pd-quote p {
  margin: 0 0 10px;
  color: #dbe4f4;
  font-size: 17px;
}

.pd-quote cite {
  font-style: normal;
  color: #9fb0cb;
  font-size: 14px;
}

.pd-faq {
  display: grid;
  gap: 10px;
}

.pd-faq details {
  border: 1px solid rgba(117, 151, 207, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  padding: 12px 14px;
}

.pd-faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

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

.pd-faq summary::after {
  content: "+";
  float: right;
  color: #8fb0e0;
  font-size: 22px;
  line-height: 1;
  margin-top: -2px;
}

.pd-faq details[open] summary::after {
  content: "−";
}

.pd-faq p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.pd-final-cta {
  margin-top: 4px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 250, 0.38);
  background:
    radial-gradient(600px 220px at 0% 0%, rgba(96, 165, 250, 0.24), transparent 70%),
    radial-gradient(450px 220px at 100% 0%, rgba(45, 212, 191, 0.15), transparent 72%),
    rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 14px;
  align-items: center;
}

.pd-final-cta h2 {
  margin: 0 0 7px;
}

.pd-final-cta p {
  margin: 0;
  color: var(--muted);
}

.pd-final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.pd-final-actions .btn {
  min-width: 220px;
}

.pd-final-actions .btn.primary {
  box-shadow: 0 8px 24px rgba(31, 120, 243, 0.3);
}

@media (max-width: 980px) {
  .pd-hero-grid,
  .pd-suite-content,
  .pd-more-grid,
  .pd-feature-grid,
  .pd-flow-grid,
  .pd-price-grid,
  .pd-quote-grid,
  .pd-proof-grid {
    grid-template-columns: 1fr;
  }

  .pd-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-final-cta {
    grid-template-columns: 1fr;
  }

  .pd-final-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pd-price-head {
    min-height: auto;
  }

  .pd-hero-trust {
    padding: 15px 16px 16px;
  }

  .pd-hero-trust-line {
    font-size: 13px;
  }

  .pd-hero-trust-copy,
  .pd-hero-trust-demo {
    font-size: 15px;
  }

  .pd-price-card h3,
  .pd-price-row {
    min-height: 0;
  }

  .pd-subnav {
    top: 0;
  }

  .pd-subnav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .pd-subnav-product {
    text-align: left;
    font-size: 20px;
  }

  .pd-anchor-nav {
    justify-content: flex-start;
  }

  .pd-subnav-action {
    justify-self: end;
    font-size: 14px;
    padding: 9px 14px;
  }

  .pd-suite-tabs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    margin-bottom: 18px;
  }

  .pd-suite-copy h3 {
    font-size: clamp(30px, 5vw, 40px);
  }

  .pd-suite-copy p {
    font-size: 17px;
  }

  .pd-suite-media img {
    min-height: 320px;
  }

  .pd-function-explorer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pd-function-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .pd-function-item {
    min-width: 280px;
  }

  .pd-function-item:hover {
    transform: none;
  }

  .pd-function-stage {
    padding: 0;
  }

  .pd-function-copy h3 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .pd-function-text {
    font-size: 15px;
    max-width: none;
  }

  .pd-function-actions .btn {
    min-width: 0;
    flex: 1 1 220px;
  }

  .pd-function-media {
    margin-top: 18px;
  }

  .pd-function-media img {
    min-height: 300px;
  }

  .pd-function-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-fx-slider-head {
    margin-bottom: 18px;
  }

  .pd-fx-slider-head h2 {
    font-size: 30px;
  }

  .pd-fx-slider-head p {
    font-size: 17px;
  }

  .pd-fx-slider-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-fx-card {
    min-height: 520px;
    padding: 20px;
  }

  .pd-fx-card h3 {
    font-size: 30px;
  }

  .pd-fx-card p {
    font-size: 16px;
  }

  .pd-compare-head {
    margin-bottom: 28px;
  }

  .pd-compare-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pd-compare-card {
    padding: 22px 22px 24px;
  }

  .pd-compare-kicker {
    font-size: 15px;
  }

  .pd-compare-card h3 {
    font-size: 30px;
  }

  .pd-compare-list li {
    font-size: 17px;
    padding-left: 30px;
  }

  .pd-compare-proof {
    margin-top: 22px;
    justify-content: flex-start;
  }

  .pd-cta-duo-head {
    margin-bottom: 30px;
  }

  .pd-cta-duo-head p {
    font-size: 19px;
  }

  .pd-cta-duo-head h2 {
    font-size: 30px;
    max-width: 720px;
  }

  .pd-cta-duo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pd-cta-duo-card {
    min-height: 0;
    border-radius: 24px;
    padding: 24px 22px 24px;
  }

  .pd-cta-duo-icon {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .pd-cta-duo-icon svg {
    width: 60px;
    height: 60px;
  }

  .pd-cta-duo-card h3 {
    font-size: 30px;
  }

  .pd-cta-duo-card p {
    font-size: 18px;
    margin-top: 14px;
    max-width: none;
  }

  .pd-cta-duo-card .btn {
    margin-top: 20px;
    min-width: 0;
    width: auto;
  }

  .pd-customer-stories-controls {
    margin: 24px 0 14px;
  }

  .pd-customer-stories-track {
    grid-auto-columns: calc((100% - 20px) / 2.15);
    gap: 20px;
  }

  .pd-customer-stories-dots {
    margin-top: 16px;
  }

  .pd-customer-story {
    min-height: 0;
    border-radius: 22px;
    padding: 20px 18px;
  }

  .pd-customer-avatar {
    width: 78px;
    height: 78px;
  }

  .pd-customer-avatar span {
    font-size: 22px;
  }

  .pd-customer-quote {
    font-size: 17px;
  }

  .pd-customer-author strong {
    font-size: 18px;
  }

  .pd-infopack-shell {
    border-radius: 28px;
    padding: 32px 30px 36px;
  }

  .pd-infopack-head {
    margin-bottom: 28px;
  }

  .pd-infopack-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pd-infopack-copy > p {
    font-size: 18px;
    max-width: none;
  }

  .pd-infopack-list {
    margin-top: 18px;
    gap: 12px;
  }

  .pd-infopack-list li {
    font-size: 16px;
  }

  .pd-infopack-list li strong {
    font-size: 19px;
  }

  .pd-pack-visual {
    min-height: 500px;
  }

  .pd-pack-main {
    width: 100%;
  }

  .pd-pack-main img {
    height: 320px;
  }

  .pd-pack-doc {
    width: 230px;
  }

  .pd-pack-doc img {
    height: 152px;
  }

  .pd-pack-doc-a {
    right: 8px;
    bottom: 28px;
  }

  .pd-pack-doc-b {
    right: 172px;
    bottom: 0;
  }

  .pd-pack-badge {
    width: 120px;
    height: 120px;
    font-size: 20px;
  }

  .pd-more-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-top: 0;
    padding-bottom: 2px;
  }

  .pd-more-nav-item {
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
  }

  .pd-more-nav-item.active::before {
    display: none;
  }

  .pd-more-copy h3 {
    font-size: clamp(26px, 4.2vw, 34px);
  }

  .pd-more-features li {
    font-size: 16px;
  }

  .pd-more-media img {
    min-height: 320px;
  }

  .pd-hero-module {
    font-size: 18px;
  }

  .pd-hero h1 {
    font-size: clamp(34px, 5.4vw, 44px);
    max-width: none;
  }

  .pd-flow-item {
    min-height: auto;
  }

  .pd-flow-item h3 {
    font-size: 23px;
  }

  .pd-flow-item p {
    font-size: 15px;
  }

  .pd-hero-card img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .pd-hero-copy {
    padding: 18px;
  }

  .pd-anchor-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
  }

  .pd-anchor-nav a {
    white-space: nowrap;
  }

  .pd-subnav-product {
    font-size: 19px;
  }

  .pd-subnav-action {
    width: auto;
    flex-shrink: 0;
  }

  .pd-suite-tab {
    font-size: 13px;
    padding: 9px 13px;
  }

  .pd-function-item {
    min-width: 240px;
    padding: 11px 11px 11px 14px;
  }

  .pd-function-item-title {
    font-size: 16px;
  }

  .pd-function-copy h3 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .pd-function-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .pd-function-media img {
    min-height: 230px;
  }

  .pd-function-thumbs {
    grid-template-columns: 1fr;
  }

  .pd-fx-slider-head h2 {
    font-size: 30px;
  }

  .pd-fx-slider-head p {
    font-size: 15px;
    line-height: 1.5;
  }

  .pd-fx-slider-nav {
    margin-bottom: 14px;
    justify-content: space-between;
  }

  .pd-fx-arrow {
    font-size: 32px;
  }

  .pd-fx-slider-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pd-fx-card {
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .pd-fx-card h3 {
    font-size: 30px;
  }

  .pd-fx-card p {
    font-size: 15px;
  }

  .pd-fx-preview {
    margin-top: 16px;
  }

  .pd-compare-head {
    margin-bottom: 22px;
  }

  .pd-compare-head h2,
  .pd-compare-card h3 {
    font-size: 30px;
  }

  .pd-compare-card {
    border-radius: 20px;
    padding: 18px 16px 20px;
  }

  .pd-compare-card.is-primary::before {
    border-radius: 20px;
  }

  .pd-cta-duo-head {
    margin-bottom: 24px;
  }

  .pd-cta-duo-head p {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .pd-cta-duo-head h2 {
    font-size: 30px;
    max-width: 100%;
  }

  .pd-cta-duo-card {
    border-radius: 20px;
    padding: 18px 16px 20px;
  }

  .pd-cta-duo-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    margin-bottom: 14px;
  }

  .pd-cta-duo-icon svg {
    width: 52px;
    height: 52px;
  }

  .pd-cta-duo-card h3 {
    font-size: 30px;
  }

  .pd-cta-duo-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .pd-cta-duo-card .btn {
    width: 100%;
  }

  .pd-customer-stories-head > p:first-child {
    font-size: 15px;
  }

  .pd-customer-stories-head h2 {
    font-size: 30px;
  }

  .pd-customer-stories-head > p:last-child {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }

  .pd-customer-stories-controls {
    margin: 18px 0 12px;
    justify-content: space-between;
  }

  .pd-customer-arrow {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .pd-customer-stories-track {
    grid-auto-columns: 86%;
    gap: 12px;
  }

  .pd-customer-stories-dots {
    margin-top: 12px;
    gap: 10px;
  }

  .pd-customer-dot {
    width: 12px;
    height: 12px;
  }

  .pd-customer-dot.active {
    width: 32px;
  }

  .pd-customer-story {
    border-radius: 20px;
    padding: 16px;
  }

  .pd-customer-avatar {
    width: 66px;
    height: 66px;
  }

  .pd-customer-avatar span {
    font-size: 18px;
  }

  .pd-customer-industry {
    margin-top: 14px;
    font-size: 14px;
  }

  .pd-customer-quote {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }

  .pd-customer-author strong {
    font-size: 18px;
  }

  .pd-customer-author span,
  .pd-customer-video {
    font-size: 14px;
  }

  .pd-compare-list {
    margin-top: 14px;
    gap: 10px;
  }

  .pd-compare-list li {
    font-size: 15px;
    line-height: 1.45;
    padding-left: 24px;
  }

  .pd-compare-list li::before {
    font-size: 18px;
  }

  .pd-compare-list.is-muted li::before {
    font-size: 18px;
    top: 0.02em;
  }

  .pd-compare-proof-item {
    font-size: 12px;
    padding: 8px 12px;
  }

  .pd-infopack-shell {
    border-radius: 22px;
    padding: 24px 16px 24px;
  }

  .pd-infopack-head {
    margin-bottom: 20px;
  }

  .pd-infopack-head p {
    font-size: 15px;
  }

  .pd-infopack-head h2 {
    font-size: 30px;
  }

  .pd-infopack-copy > p {
    font-size: 16px;
    line-height: 1.5;
  }

  .pd-infopack-list {
    margin-top: 14px;
    padding-left: 20px;
    gap: 10px;
  }

  .pd-infopack-list li {
    font-size: 14px;
    line-height: 1.45;
  }

  .pd-infopack-list li strong {
    font-size: 17px;
  }

  .pd-infopack-copy .btn {
    margin-top: 18px;
  }

  .pd-pack-visual {
    min-height: 420px;
    padding: 6px 0 2px;
  }

  .pd-pack-main img {
    height: 220px;
  }

  .pd-pack-main figcaption,
  .pd-pack-doc figcaption {
    font-size: 11px;
    padding: 6px 9px;
  }

  .pd-pack-doc {
    width: 160px;
    border-radius: 14px;
  }

  .pd-pack-doc img {
    height: 102px;
  }

  .pd-pack-doc-a {
    right: 2px;
    bottom: 24px;
  }

  .pd-pack-doc-b {
    right: 108px;
    bottom: 6px;
  }

  .pd-pack-badge {
    right: -2px;
    bottom: -4px;
    width: 88px;
    height: 88px;
    font-size: 13px;
    line-height: 1.1;
  }

  .pd-suite-copy h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .pd-suite-copy p,
  .pd-suite-features li {
    font-size: 16px;
  }

  .pd-suite-media img {
    min-height: 240px;
  }

  .pd-more-copy h3 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .pd-more-features li {
    font-size: 15px;
  }

  .pd-more-media img {
    min-height: 240px;
  }

  .pd-hero-module {
    font-size: 16px;
  }

  .pd-hero h1 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .pd-use-grid {
    grid-template-columns: 1fr;
  }

  .pd-kpi-grid {
    grid-template-columns: 1fr;
  }

  .pd-hero-highlights h2 {
    font-size: 22px;
  }

  .pd-proof-item strong {
    font-size: 20px;
  }

  .pd-hero-card img {
    min-height: 220px;
  }

  .pd-final-actions .btn {
    min-width: 0;
    width: 100%;
  }
}

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

  .client-strip-title {
    text-align: center;
    font-size: 16px;
  }

  .client-logos {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-logos img {
    height: 28px;
    max-width: 130px;
  }

  .demo-cta-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .demo-cta-content h2 {
    font-size: 28px;
  }

  .demo-cta-content p {
    font-size: 17px;
  }

  .invoice-focus-inner {
    padding: 34px 0 36px;
  }

  .invoice-focus-kicker {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .invoice-focus-inner h2 {
    font-size: 28px;
  }

  .invoice-focus-text {
    margin-top: 18px;
    font-size: 16px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .value-item h3 {
    font-size: 22px;
    min-height: 0;
  }

  .value-actions {
    margin-top: 24px;
  }

  .offer-card h3 {
    font-size: 21px;
  }

  .blog-teaser-nav {
    font-size: 34px;
  }

  .blog-teaser-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .blog-teaser-body h3 {
    min-height: 0;
    font-size: 21px;
  }

  .newsletter-signup-card {
    grid-template-columns: 1fr;
  }

  .newsletter-signup-copy h2 {
    max-width: none;
  }

  .newsletter-manage-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-page-hero-card h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-card {
    border-radius: 22px;
    padding: 12px;
  }

  .offer-card-body {
    padding: 14px 6px 6px;
  }

  .offer-card h3 {
    min-height: 0;
  }

  .blog-teaser-grid {
    grid-template-columns: 1fr;
  }

  .blog-teaser-nav {
    justify-content: center;
  }

  .footer-rich-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-signup-card {
    padding: 24px 20px;
  }

  .newsletter-signup-panel {
    padding: 20px;
  }

  .newsletter-signup .form-actions .btn {
    width: 100%;
  }

  .newsletter-page-hero-card,
  .newsletter-manage-card {
    padding: 24px 20px;
  }

  .newsletter-page-actions .btn,
  .newsletter-manage .form-actions .btn {
    width: 100%;
  }

  .footer-solutions span {
    width: 100%;
    margin-right: 0;
  }
}

/* Product Detail Editorial Theme */
.product-detail-page {
  background: #e5ecf7;
}

.product-detail-page main {
  color: #0f172a;
  background: linear-gradient(180deg, #dfe8f5 0px, #e9f0fa 220px, #e6edf8 100%);
}

.product-detail-page .pd-hero-dark {
  padding: 32px 0 28px;
  background:
    radial-gradient(900px 380px at 8% -10%, rgba(56, 189, 248, 0.2), transparent 66%),
    radial-gradient(900px 360px at 90% 0%, rgba(16, 185, 129, 0.14), transparent 72%),
    linear-gradient(166deg, #08132a, #0b1d3c 58%, #071325);
  border-bottom: 1px solid rgba(158, 183, 232, 0.28);
}

.product-detail-page .pd-breadcrumb a,
.product-detail-page .pd-breadcrumb strong {
  color: #d9e4fb;
}

.product-detail-page .pd-hero-copy {
  border: 0;
  background: transparent;
}

.product-detail-page .pd-hero-intro-card {
  background: rgba(7, 22, 50, 0.54);
  border-color: rgba(132, 168, 226, 0.2);
}

.product-detail-page .pd-hero-dark h1,
.product-detail-page .pd-hero-dark h2 {
  color: #eaf2ff;
}

.product-detail-page .pd-hero-copy .lead,
.product-detail-page .pd-meta li {
  color: #d2def3;
}

.product-detail-page .pd-hero-dark .pd-kpi strong,
.product-detail-page .pd-hero-dark .pd-hero-highlights .clean,
.product-detail-page .pd-hero-dark .pd-proof-item strong {
  color: #e6efff;
}

.product-detail-page .pd-hero-dark .pd-kpi span,
.product-detail-page .pd-hero-dark .pd-proof-item span {
  color: #a9bddc;
}

.product-detail-page .pd-hero-dark .btn:not(.primary) {
  color: #e2ebfa;
  border-color: rgba(141, 171, 222, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.product-detail-page .pd-hero-dark .btn:not(.primary):hover {
  background: rgba(255, 255, 255, 0.12);
}

.product-detail-page .pd-subnav {
  background: rgba(255, 255, 255, 0.95);
  border-top: 0;
  border-bottom: 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(16, 33, 58, 0.08);
}

.product-detail-page .pd-subnav-product {
  color: #081223;
}

.product-detail-page .pd-anchor-nav a {
  border-color: rgba(40, 65, 99, 0.18);
  color: #1f3355;
  background: rgba(255, 255, 255, 0.85);
}

.product-detail-page .pd-anchor-nav a:hover {
  border-color: rgba(37, 99, 235, 0.4);
  color: #0c1f3d;
  background: #ffffff;
}

.product-detail-page .pd-subnav-action {
  box-shadow: 0 8px 20px rgba(34, 128, 221, 0.24);
}

.product-detail-page--shop .pd-shop-trial-btn {
  min-width: max-content;
  padding-inline: 28px;
  box-shadow: 0 16px 34px rgba(27, 101, 198, 0.22);
}

.product-detail-page--shop .pd-shop-guarantee-section {
  padding-top: 18px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, #e6edf8 0%, #e2e9f5 100%);
}

.product-detail-page--shop .pd-shop-guarantee-card {
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  background:
    radial-gradient(520px 280px at 8% 18%, rgba(71, 151, 255, 0.28), transparent 70%),
    radial-gradient(420px 240px at 100% 90%, rgba(73, 201, 242, 0.2), transparent 70%),
    linear-gradient(132deg, #071325 0%, #05111f 54%, #07101d 100%);
  border: 1px solid rgba(47, 90, 152, 0.34);
  box-shadow: 0 18px 42px rgba(7, 18, 30, 0.22);
}

.product-detail-page--shop .pd-shop-guarantee-visual {
  min-height: 320px;
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.product-detail-page--shop .pd-shop-guarantee-visual span,
.product-detail-page--shop .pd-shop-guarantee-visual strong,
.product-detail-page--shop .pd-shop-guarantee-visual small {
  display: block;
}

.product-detail-page--shop .pd-shop-guarantee-visual span {
  color: #66b7ff;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.product-detail-page--shop .pd-shop-guarantee-visual strong {
  color: #f2fff4;
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 7ch;
}

.product-detail-page--shop .pd-shop-guarantee-copy {
  padding: 54px 54px 54px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-page--shop .pd-shop-guarantee-copy > p {
  margin: 0;
  color: rgba(228, 245, 233, 0.78);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.product-detail-page--shop .pd-shop-guarantee-copy h2 {
  margin: 12px 0 0;
  color: #f2f7ff;
  font-size: clamp(34px, 2.8vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: none;
  text-wrap: initial;
}

.product-detail-page--shop .pd-shop-guarantee-copy h2 span {
  display: block;
  white-space: nowrap;
}

.product-detail-page--shop .pd-shop-guarantee-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.product-detail-page--shop .pd-shop-guarantee-list li {
  position: relative;
  padding-left: 38px;
  color: #eef5ff;
  font-size: 18px;
  line-height: 1.5;
}

.product-detail-page--shop .pd-shop-guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #66b7ff;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}

.product-detail-page--shop .pd-shop-guarantee-btn {
  margin-top: 34px;
  align-self: flex-start;
  min-width: 320px;
}

.product-detail-page--shop .pd-pricing-head h2 {
  font-size: clamp(32px, 3.6vw, 46px);
}

.product-detail-page--shop .pd-pricing-head p {
  max-width: 760px;
  font-size: 18px;
}

.product-detail-page--shop .pd-price-card {
  gap: 14px;
}

.product-detail-page--shop .pd-price-cta,
.product-detail-page--shop .pd-price-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.16s ease, filter 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.product-detail-page--shop .pd-price-cta {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.96), rgba(96, 165, 250, 0.92));
  color: #061017;
  border: 0;
}

.product-detail-page--shop .pd-price-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.01);
}

.product-detail-page--shop .pd-price-demo {
  margin-top: 0;
  padding: 16px 18px;
  border: 1px solid rgba(112, 157, 224, 0.54);
  background: rgba(255, 255, 255, 0.52);
  color: #173664;
  text-decoration: none;
  text-underline-offset: 0;
  text-decoration-thickness: 0;
}

.product-detail-page--shop .pd-price-demo:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(88, 137, 214, 0.72);
  color: #0f2d59;
}

.product-detail-page .pd-editorial {
  padding: 42px 0 26px;
}

.product-detail-page .pd-shop-transition-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.product-detail-page .pd-shop-transition-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(47, 77, 126, 0.16);
  background:
    radial-gradient(360px 180px at 100% 0%, rgba(100, 171, 255, 0.12), transparent 72%),
    rgba(249, 252, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 34, 63, 0.08);
}

.product-detail-page .pd-shop-transition-copy {
  max-width: 760px;
}

.product-detail-page .pd-shop-transition-copy h2 {
  margin: 0;
  color: #102347;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.product-detail-page .pd-shop-transition-copy p:last-child {
  margin: 14px 0 0;
  color: #4a6387;
  font-size: 18px;
  line-height: 1.65;
}

.product-detail-page .pd-shop-transition-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.product-detail-page .pd-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.product-detail-page .pd-editorial-copy,
.product-detail-page .pd-gallery {
  border: 0;
  border-radius: 22px;
  background: #f3f7fe;
}

.product-detail-page .pd-hero-card {
  border: 0;
  box-shadow: none;
}

.product-detail-page .pd-editorial-copy {
  padding: 24px;
}

.product-detail-page .pd-editorial-kicker {
  margin: 0 0 10px;
  color: #46638f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
}

.product-detail-page .pd-editorial-copy h2 {
  margin: 0;
  color: #0d1f3f;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  max-width: 18ch;
}

.product-detail-page .pd-editorial-text {
  margin: 14px 0 0;
  color: #3b4e6e;
  font-size: 18px;
  line-height: 1.55;
}

.product-detail-page .pd-benefit-grid {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.product-detail-page .pd-benefit-item {
  border: 1px solid rgba(27, 54, 89, 0.12);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  background: #edf4ff;
}

.product-detail-page .pd-benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #36c4ff, #6b8fff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.product-detail-page .pd-benefit-item:nth-child(2) .pd-benefit-icon {
  background: linear-gradient(145deg, #2dd4bf, #4f9cff);
}

.product-detail-page .pd-benefit-item:nth-child(3) .pd-benefit-icon {
  background: linear-gradient(145deg, #7dd3fc, #60a5fa);
}

.product-detail-page .pd-benefit-item h3 {
  margin: 0;
  font-size: 18px;
  color: #12284d;
}

.product-detail-page .pd-benefit-item p {
  margin: 0;
  grid-column: 2 / 3;
  color: #4a5f84;
  font-size: 15px;
  line-height: 1.5;
}

.product-detail-page .pd-gallery {
  padding: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  background: linear-gradient(170deg, #f7faff, #eaf1fc 72%);
}

.product-detail-page .pd-gallery-item {
  margin: 0;
  border: 1px solid rgba(38, 63, 96, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: #f8fbff;
}

.product-detail-page .pd-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  background: #0c1732;
}

.product-detail-page .pd-gallery-item figcaption {
  padding: 10px 12px;
  font-size: 14px;
  color: #253e67;
  font-weight: 600;
}

.product-detail-page .pd-logo-band {
  padding: 46px 0 52px;
  background:
    radial-gradient(1400px 300px at 0% 0%, rgba(22, 163, 74, 0.12), transparent 55%),
    radial-gradient(1400px 300px at 100% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-page .pd-logo-inner {
  display: grid;
  gap: 24px;
  padding: 0;
}

.product-detail-page .pd-logo-inner p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.product-detail-page .pd-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.product-detail-page .pd-logo-row img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 150px;
  object-fit: contain;
  opacity: 1;
}

.product-detail-page .pd-section.pd-light {
  color: #102038;
  background: #eef3fb;
  border-top: 1px solid rgba(40, 64, 99, 0.1);
}

.product-detail-page .pd-section.pd-light.alt {
  background: linear-gradient(180deg, #e8effa, #e4ecf8);
}

.product-detail-page .pd-section.pd-light h2 {
  color: #122a50;
}

.product-detail-page .pd-section.pd-light .pd-section-head p {
  color: #4f6489;
}

.product-detail-page .pd-section.pd-light .pd-section-head {
  margin-bottom: 52px;
}

.product-detail-page .pd-section.pd-light .pd-pricing-head,
.product-detail-page .pd-section.pd-light .pd-suite-head,
.product-detail-page .pd-section.pd-light .pd-more-head {
  margin-bottom: 58px;
}

.product-detail-page .pd-section.pd-light .pd-section-head,
.product-detail-page .pd-section.pd-light .pd-pricing-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-detail-page .pd-section.pd-light .pd-section-head h2,
.product-detail-page .pd-section.pd-light .pd-pricing-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-align: center;
}

.product-detail-page .pd-feature-card,
.product-detail-page .pd-use-item,
.product-detail-page .pd-flow-item,
.product-detail-page .pd-quote,
.product-detail-page .pd-faq details {
  border-color: rgba(34, 58, 93, 0.18);
  background: #f3f7fd;
  box-shadow: 0 8px 24px rgba(18, 35, 63, 0.06);
}

.product-detail-page .pd-feature-card h3,
.product-detail-page .pd-flow-item h3 {
  color: #12284c;
}

.product-detail-page .pd-feature-card p,
.product-detail-page .pd-flow-item p,
.product-detail-page .pd-quote p,
.product-detail-page .pd-faq p {
  color: #4b6084;
}

.product-detail-page .pd-price-card {
  border-color: rgba(40, 69, 115, 0.25);
  background:
    radial-gradient(360px 140px at 0% 0%, rgba(96, 165, 250, 0.11), transparent 72%),
    linear-gradient(180deg, #f8fbff 0%, #ecf3fe 100%);
  box-shadow: 0 10px 26px rgba(19, 37, 67, 0.08);
}

.product-detail-page .pd-price-card.featured {
  border-color: rgba(60, 108, 180, 0.35);
  box-shadow: 0 14px 34px rgba(17, 38, 73, 0.12);
}

.product-detail-page .pd-price-card h3,
.product-detail-page .pd-price-prefix,
.product-detail-page .pd-price-row span,
.product-detail-page .pd-price-list li {
  color: #1d3761;
}

.product-detail-page .pd-price-row strong {
  color: #10284d;
}

.product-detail-page .pd-price-demo {
  color: #163766;
}

.product-detail-page .pd-use-item {
  color: #1f3961;
  background: #f6f9fe;
}

.product-detail-page .pd-use-item:hover {
  background: #e5eefb;
}

.product-detail-page .pd-quote-head,
.product-detail-page .pd-proof-item span {
  color: #5372a2;
}

.product-detail-page .pd-proof-item {
  border-color: rgba(35, 59, 95, 0.16);
  background: #f3f7fd;
}

.product-detail-page .pd-proof-item strong {
  color: #10294e;
}

.product-detail-page .pd-quote cite {
  color: #4d6794;
}

.product-detail-page .pd-faq summary {
  color: #132c53;
}

.product-detail-page .pd-faq summary::after {
  color: #5f7dac;
}

.product-detail-page .pd-final-cta {
  border-color: rgba(54, 101, 173, 0.24);
  background:
    radial-gradient(580px 220px at 0% 0%, rgba(37, 99, 235, 0.14), transparent 72%),
    radial-gradient(420px 200px at 100% 0%, rgba(45, 212, 191, 0.1), transparent 72%),
    #eef4fd;
}

.product-detail-page .pd-final-cta h2 {
  color: #11294e;
}

.product-detail-page .pd-final-cta p {
  color: #4d6288;
}

.product-detail-page .pd-hero-copy,
.product-detail-page .pd-hero-card,
.product-detail-page .pd-editorial-copy,
.product-detail-page .pd-gallery,
.product-detail-page .pd-benefit-item,
.product-detail-page .pd-gallery-item,
.product-detail-page .pd-logo-inner,
.product-detail-page .pd-proof-item,
.product-detail-page .pd-feature-card,
.product-detail-page .pd-use-item,
.product-detail-page .pd-flow-item,
.product-detail-page .pd-faq details {
  background: transparent !important;
  box-shadow: none;
}

.product-detail-page .pd-use-item {
  border-color: rgba(44, 72, 117, 0.16);
  background:
    radial-gradient(220px 100px at 100% 0%, rgba(111, 169, 255, 0.08), transparent 72%),
    rgba(255, 255, 255, 0.72) !important;
}

.product-detail-page .pd-use-item:hover {
  border-color: rgba(62, 108, 177, 0.24);
  background:
    radial-gradient(220px 100px at 100% 0%, rgba(111, 169, 255, 0.11), transparent 72%),
    rgba(255, 255, 255, 0.9) !important;
}

.product-detail-page .pd-use-item-title {
  color: #16315c;
}

.product-detail-page .pd-use-item-text {
  color: #56719b;
}

.product-detail-page .pd-use-item-roles {
  color: #4fb7cf;
}

@media (max-width: 980px) {
  .product-detail-page .pd-editorial-grid,
  .product-detail-page .pd-logo-row {
    grid-template-columns: 1fr;
  }

  .product-detail-page .pd-shop-transition-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-detail-page .pd-shop-transition-actions {
    justify-content: flex-start;
  }

  .product-detail-page .pd-section.pd-light .pd-section-head {
    margin-bottom: 36px;
  }

  .product-detail-page .pd-section.pd-light .pd-pricing-head,
  .product-detail-page .pd-section.pd-light .pd-suite-head,
  .product-detail-page .pd-section.pd-light .pd-more-head {
    margin-bottom: 40px;
  }

  .product-detail-page--shop .pd-shop-guarantee-card {
    grid-template-columns: 1fr;
  }

  .product-detail-page--shop .pd-shop-guarantee-visual {
    min-height: 0;
    padding: 44px 38px 18px;
  }

  .product-detail-page--shop .pd-shop-guarantee-copy {
    padding: 22px 38px 44px;
  }
}

@media (max-width: 720px) {
  .product-detail-page .pd-shop-transition-card {
    padding: 22px;
    border-radius: 22px;
  }

  .product-detail-page .pd-shop-transition-actions {
    width: 100%;
  }

  .product-detail-page .pd-shop-transition-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product-detail-page--shop .pd-shop-guarantee-visual {
    padding: 34px 26px 14px;
  }

  .product-detail-page--shop .pd-shop-guarantee-copy {
    padding: 20px 26px 30px;
  }

  .product-detail-page--shop .pd-shop-guarantee-copy h2 {
    max-width: none;
  }

  .product-detail-page--shop .pd-shop-guarantee-btn,
  .product-detail-page--shop .pd-shop-trial-btn,
  .product-detail-page--shop .pd-price-cta,
  .product-detail-page--shop .pd-price-demo {
    width: 100%;
    min-width: 0;
  }
}

/* Larger section-end spacing on Home + Product pages */
.home-page .product-hub-section {
  padding-top: 36px;
  padding-bottom: 68px;
}

.home-page .trust-band {
  padding-top: 92px;
  padding-bottom: 104px;
}

.home-page .demo-cta {
  padding-top: 56px;
  padding-bottom: 80px;
}

.home-page .invoice-focus {
  padding-top: 44px;
  padding-bottom: 112px;
}

.home-page .value-section {
  padding-top: 12px;
  padding-bottom: 132px;
}

.home-page .offer-cards-section {
  padding-top: 72px;
  padding-bottom: 144px;
}

.home-page .blog-teaser-section {
  padding-top: 72px;
  padding-bottom: 136px;
}

.home-page .newsletter-signup {
  padding-top: 18px;
  padding-bottom: 112px;
}

.product-detail-page .pd-hero-dark {
  padding-top: 64px;
  padding-bottom: 56px;
}

.product-detail-page .pd-logo-band {
  padding-top: 92px;
  padding-bottom: 104px;
}

.product-detail-page .pd-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Blog Overview Page */
.blog-overview-page {
  color: #10274c;
  background: #edf2f8;
}

.blog-overview-page .wrap {
  max-width: 1400px;
}

.blog-overview-page section {
  padding-top: 92px;
  padding-bottom: 96px;
}

.blog-topicbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #161920;
  color: #e2e9f7;
}

.blog-topicbar-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

.blog-topicbar-label {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-topic-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-topic-nav a {
  text-decoration: none;
  color: #cfd7ea;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.16s ease;
}

.blog-topic-nav a:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.6);
  background: rgba(96, 165, 250, 0.16);
}

.blog-topicbar-cta {
  border-radius: 999px;
  border: 0;
  color: #061223;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.96), rgba(96, 165, 250, 0.92));
  font-size: 15px;
  font-weight: 700;
  padding-inline: 18px;
  white-space: nowrap;
}

.blog-featured-section {
  background: #04060a;
  color: #f4f7ff;
}

.blog-section-header {
  margin-bottom: 38px;
  text-align: center;
}

.blog-section-header--left {
  text-align: left;
}

.blog-section-header h1,
.blog-section-header h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 22px;
}

.blog-featured-stack {
  display: grid;
  gap: 22px;
}

.blog-featured-card {
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111523;
}

.blog-featured-card--main {
  min-height: 676px;
}

.blog-featured-card a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.blog-featured-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 16, 0.15) 0%, rgba(4, 8, 16, 0.8) 72%, rgba(4, 8, 16, 0.94) 100%);
  pointer-events: none;
}

.blog-featured-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 24px 24px;
}

.blog-card-meta {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(244, 247, 255, 0.8);
  font-weight: 600;
}

.blog-featured-overlay h2 {
  margin: 0;
  color: #f6f8ff;
  font-size: clamp(22px, 1.9vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 20ch;
}

.blog-featured-stack .blog-featured-overlay h2 {
  font-size: clamp(19px, 1.5vw, 28px);
  max-width: none;
}

.blog-audience-section {
  background: linear-gradient(180deg, #dfeee8 0%, #e8f3ef 100%);
  border-top: 1px solid rgba(24, 39, 65, 0.08);
  border-bottom: 1px solid rgba(24, 39, 65, 0.08);
}

.blog-audience-section .blog-section-header h2 {
  color: #101d34;
}

.blog-audience-grid {
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-audience-card {
  border-radius: 24px;
  background: #05070b;
  color: #eff4ff;
  padding: 22px 18px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 240px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
}

.blog-audience-card h3 {
  margin: 2px 0 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.blog-audience-card p {
  margin: 0;
  color: #9fadc6;
  font-size: 15px;
  line-height: 1.5;
}

.blog-audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #60a5fa;
  display: inline-block;
  position: relative;
}

.blog-audience-icon::before,
.blog-audience-icon::after {
  content: "";
  position: absolute;
  background: #60a5fa;
}

.blog-audience-icon--small::before {
  width: 22px;
  height: 3px;
  left: 11px;
  top: 13px;
}

.blog-audience-icon--small::after {
  width: 14px;
  height: 14px;
  left: 15px;
  bottom: 11px;
  border-radius: 2px;
}

.blog-audience-icon--mid::before {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  left: 10px;
  top: 17px;
  background: transparent;
  border: 2px solid #60a5fa;
}

.blog-audience-icon--mid::after {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  right: 10px;
  top: 17px;
  background: transparent;
  border: 2px solid #60a5fa;
}

.blog-audience-icon--public::before {
  width: 22px;
  height: 12px;
  border-radius: 999px 999px 2px 2px;
  left: 11px;
  top: 10px;
}

.blog-audience-icon--public::after {
  width: 20px;
  height: 14px;
  left: 12px;
  bottom: 10px;
  border-radius: 3px;
  background: transparent;
  border: 2px solid #60a5fa;
}

.blog-lexicon-section {
  background:
    radial-gradient(860px 260px at 8% 18%, rgba(96, 165, 250, 0.12), transparent 72%),
    radial-gradient(720px 240px at 96% 12%, rgba(45, 212, 191, 0.1), transparent 72%),
    #edf2f8;
  border-top: 1px solid rgba(24, 39, 65, 0.08);
  border-bottom: 1px solid rgba(24, 39, 65, 0.08);
}

.blog-lexicon-card {
  border-radius: 36px;
  border: 1px solid rgba(177, 191, 218, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 255, 0.76));
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: 26px;
  align-items: stretch;
}

.blog-lexicon-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.blog-lexicon-kicker {
  margin: 0;
  color: #4d648d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-lexicon-copy h2 {
  margin: 0;
  color: #111f38;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.blog-lexicon-copy p:last-of-type {
  margin: 0;
  color: #51607a;
  font-size: 18px;
  line-height: 1.72;
  max-width: 44ch;
}

.blog-lexicon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.blog-lexicon-preview {
  border-radius: 30px;
  background:
    radial-gradient(240px 180px at 100% 0%, rgba(96, 165, 250, 0.18), transparent 70%),
    radial-gradient(220px 180px at 0% 100%, rgba(45, 212, 191, 0.18), transparent 70%),
    #0f1626;
  border: 1px solid rgba(96, 165, 250, 0.24);
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 16px;
  color: #eef4ff;
}

.blog-lexicon-preview-kicker {
  color: #cbd7ee;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-lexicon-preview-search {
  min-height: 74px;
  border-radius: 24px;
  border: 1px solid rgba(122, 152, 214, 0.3);
  background: rgba(18, 28, 48, 0.9);
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #dbe7fb;
  font-size: 17px;
  font-weight: 700;
}

.blog-lexicon-preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-lexicon-preview-chips span {
  min-width: 44px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(122, 152, 214, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8effc;
  font-size: 14px;
  font-weight: 800;
}

.blog-lexicon-preview-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.blog-lexicon-preview-list li {
  color: #eef4ff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-category-section {
  background: #edf2f8;
}

.blog-category-section--alt {
  background: #ebf0f7;
}

.blog-category-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.blog-category-aside h3 {
  margin: 0;
  color: #111f38;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.blog-category-aside a {
  margin-top: 28px;
  display: inline-block;
  color: #2d72b7;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  text-underline-offset: 3px;
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-article-card a {
  display: block;
  text-decoration: none;
}

.blog-article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

.blog-article-card h4 {
  margin: 6px 0 0;
  color: #131f34;
  font-size: clamp(20px, 1.4vw, 28px);
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.blog-article-card .blog-card-meta,
.blog-important-card .blog-card-meta {
  margin-top: 12px;
  margin-bottom: 8px;
  color: #637190;
}

.blog-topics-section {
  background: #edf2f8;
  border-top: 1px solid rgba(31, 49, 80, 0.08);
  border-bottom: 1px solid rgba(31, 49, 80, 0.08);
}

.blog-topics-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.blog-topics-layout h2 {
  margin: 0;
  color: #111f38;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.blog-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.blog-topic-chips a {
  text-decoration: none;
  color: #1d2f4f;
  border: 2px solid rgba(21, 33, 57, 0.82);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-topic-chips a:hover {
  background: #111f38;
  color: #f4f7ff;
}

.blog-important-section {
  background: #edf2f8;
}

.blog-important-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-important-card a {
  text-decoration: none;
  display: block;
}

.blog-important-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

.blog-important-card h3 {
  margin: 6px 0 0;
  color: #141f35;
  font-size: clamp(22px, 1.6vw, 32px);
  line-height: 1.13;
  letter-spacing: -0.015em;
}

.blog-important-card p {
  margin: 10px 0 0;
  color: #5d6f8e;
  font-size: 16px;
  line-height: 1.5;
}

.blog-authors-section {
  background: #edf2f8;
}

.blog-authors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.blog-author-card {
  text-align: center;
}

.blog-author-avatar {
  margin: 0 auto 18px;
  width: 178px;
  height: 178px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ecf3ff;
  background:
    radial-gradient(80px 80px at 25% 20%, rgba(125, 211, 252, 0.4), transparent 72%),
    linear-gradient(145deg, #6f88b7, #33507e);
}

.blog-author-card:nth-child(2) .blog-author-avatar {
  background:
    radial-gradient(80px 80px at 28% 20%, rgba(45, 212, 191, 0.4), transparent 72%),
    linear-gradient(145deg, #7c6ba7, #344f80);
}

.blog-author-card:nth-child(3) .blog-author-avatar {
  background:
    radial-gradient(80px 80px at 28% 20%, rgba(255, 255, 255, 0.34), transparent 72%),
    linear-gradient(145deg, #7f9a7a, #3d5f67);
}

.blog-author-card:nth-child(4) .blog-author-avatar {
  background:
    radial-gradient(80px 80px at 28% 20%, rgba(96, 165, 250, 0.42), transparent 72%),
    linear-gradient(145deg, #8b7f9f, #455d86);
}

.blog-author-card h3 {
  margin: 0;
  color: #151f32;
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.blog-author-card p {
  margin: 8px 0 0;
  color: #556987;
  font-size: 16px;
  line-height: 1.42;
}

.blog-cta-section {
  background: #04060a;
  color: #f4f7ff;
}

.blog-cta-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.blog-cta-symbol {
  position: relative;
  width: 140px;
  height: 190px;
  margin: 0 auto;
}

.blog-cta-symbol span {
  position: absolute;
  display: block;
  border: 10px solid #60a5fa;
  border-radius: 999px;
}

.blog-cta-symbol span:first-child {
  width: 76px;
  height: 140px;
  left: 0;
  top: 14px;
}

.blog-cta-symbol span:last-child {
  width: 76px;
  height: 140px;
  left: 54px;
  top: 14px;
  border-color: #2d72b7;
}

.blog-cta-card h2 {
  margin: 0 0 14px;
  color: #f7f9ff;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.blog-cta-card p {
  margin: 0;
  color: #d2dbeb;
  font-size: 18px;
  line-height: 1.55;
  max-width: 35ch;
}

.blog-cta-btn {
  margin-top: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: #f4f7ff;
  color: #101d34;
  font-size: 16px;
  font-weight: 700;
  padding: 11px 22px;
}

.blog-cta-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.lexicon-overview-page main,
.lexicon-article-page main {
  background: #eef3fb;
}

.lexicon-topicbar {
  background: #161920;
}

.lexicon-topicbar-inner {
  grid-template-columns: auto 1fr auto;
}

.lexicon-topic-nav {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.lexicon-topic-nav::-webkit-scrollbar {
  display: none;
}

.lexicon-category-link {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dce5f5;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 14px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.lexicon-category-link.active,
.lexicon-category-link:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.82);
  background: rgba(96, 165, 250, 0.24);
}

.lexicon-hero,
.lexicon-article-hero {
  background:
    radial-gradient(920px 320px at 6% 0%, rgba(96, 165, 250, 0.18), transparent 70%),
    radial-gradient(760px 280px at 92% 18%, rgba(45, 212, 191, 0.14), transparent 70%),
    #030508;
  color: #f4f7ff;
}

.lexicon-hero {
  padding: 88px 0 108px;
}

.lexicon-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: end;
}

.lexicon-hero-inner {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 18px;
}

.lexicon-hero-kicker,
.lexicon-article-kicker {
  margin: 0;
  color: #d8e2f6;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lexicon-hero h1,
.lexicon-article-copy h1 {
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lexicon-hero-accent {
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 199, 87, 0.98), rgba(45, 212, 191, 0.92));
}

.lexicon-hero-copy {
  margin: 0;
  color: #eef4ff;
  font-size: 24px;
  line-height: 1.35;
}

.lexicon-hero-description {
  margin: 0;
  color: #c8d4ea;
  font-size: 20px;
  line-height: 1.68;
  max-width: 40ch;
}

.lexicon-search-card {
  border: 1px solid rgba(122, 152, 214, 0.24);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(22, 30, 48, 0.94), rgba(14, 22, 38, 0.88));
  padding: 28px 30px;
  display: grid;
  gap: 18px;
}

.lexicon-search-kicker {
  margin: 0;
  color: #c9d8f3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lexicon-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.lexicon-search-form input {
  min-height: 64px;
  border-radius: 22px;
  border: 1px solid rgba(122, 152, 214, 0.28);
  background: rgba(6, 14, 30, 0.78);
  color: #f2f6ff;
  padding: 0 20px;
  font-size: 18px;
}

.lexicon-search-form input::placeholder {
  color: #9eb0cf;
}

.lexicon-search-submit {
  min-height: 64px;
  padding-inline: 24px;
}

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

.lexicon-search-meta p {
  margin: 0;
  color: #cad5ea;
  font-size: 15px;
  line-height: 1.5;
}

.lexicon-search-reset {
  border: 0;
  background: transparent;
  color: #8cb7ff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
}

.lexicon-alphabet-section,
.lexicon-directory-section,
.lexicon-article-content {
  background: #eef3fb;
}

.lexicon-overview-page .lexicon-alphabet-section {
  padding: 64px 0 32px;
}

.lexicon-overview-page .lexicon-directory-section {
  padding: 32px 0 88px;
}

.lexicon-category-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 46px;
}

.lexicon-category-card {
  text-align: left;
  border: 1px solid rgba(177, 191, 218, 0.76);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  padding: 24px 22px;
  display: grid;
  gap: 12px;
}

.lexicon-category-card.active,
.lexicon-category-card:hover {
  border-color: rgba(96, 165, 250, 0.56);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.lexicon-category-card-count {
  margin: 0;
  color: #2d72b7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lexicon-category-card h3 {
  margin: 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.lexicon-category-card p {
  margin: 0;
  color: #526176;
  font-size: 15px;
  line-height: 1.55;
}

.lexicon-alphabet-header,
.lexicon-directory-header {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.lexicon-alphabet-label {
  margin: 0;
  color: #1d2433;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lexicon-alphabet-header h2,
.lexicon-directory-header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.lexicon-directory-header p {
  margin: 0;
  color: #51607a;
  font-size: 18px;
  line-height: 1.5;
}

.lexicon-alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.lexicon-alphabet-link {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.lexicon-alphabet-link.is-disabled {
  color: #96a3b8;
  text-decoration: none;
  pointer-events: none;
}

.lexicon-directory {
  display: grid;
  gap: 86px;
  margin-top: 76px;
}

.lexicon-letter-block {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.lexicon-letter-heading {
  position: sticky;
  top: 110px;
  color: #2d72b7;
  font-size: clamp(46px, 3.2vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.lexicon-letter-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 34px;
}

.lexicon-entry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 26px;
}

.lexicon-entry-list a {
  color: #171d2a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lexicon-entry-list a:hover {
  color: #1f57b7;
}

.lexicon-error {
  margin: 0;
  color: #9f1239;
  font-size: 18px;
  line-height: 1.5;
}

.lexicon-article-toolbar {
  top: 0;
}

.lexicon-article-hero {
  padding: 46px 0 56px;
}

.lexicon-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.lexicon-article-copy {
  display: grid;
  gap: 18px;
}

.lexicon-article-question {
  margin: 0;
  color: #8cb7ff;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lexicon-article-intro {
  margin: 0;
  color: #dbe6f8;
  font-size: 18px;
  line-height: 1.58;
  max-width: 42ch;
}

.lexicon-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lexicon-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #c6d3ea;
  font-size: 15px;
  font-weight: 600;
}

.lexicon-article-side {
  display: grid;
  gap: 18px;
}

.lexicon-fact-card {
  border: 1px solid rgba(122, 152, 214, 0.26);
  border-radius: 28px;
  background: rgba(14, 23, 40, 0.72);
  padding: 22px 24px;
}

.lexicon-fact-label {
  margin: 0 0 8px;
  color: #9db4dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lexicon-fact-value {
  margin: 0;
  color: #f7f9ff;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.lexicon-article-nav {
  background: #f7faff;
  border-bottom: 1px solid rgba(177, 191, 218, 0.78);
}

.lexicon-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
}

.lexicon-section-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e8eef8;
  color: #31445f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.lexicon-article-content {
  padding: 72px 0 88px;
}

.lexicon-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: start;
}

.lexicon-article-main {
  display: grid;
  gap: 32px;
}

.lexicon-summary-panel {
  border: 1px solid rgba(177, 191, 218, 0.78);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 255, 0.74));
  padding: 30px 34px;
}

.lexicon-summary-panel h3 {
  margin: 0 0 16px;
  color: #101828;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lexicon-summary-panel ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 12px;
}

.lexicon-summary-panel li {
  color: #46556f;
  font-size: 16px;
  line-height: 1.62;
}

.lexicon-article-main > h2,
.lexicon-faq-block h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(26px, 1.9vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.lexicon-section-card,
.lexicon-related-box,
.lexicon-tip-box,
.lexicon-faq-item {
  border: 1px solid rgba(177, 191, 218, 0.78);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
}

.lexicon-section-card {
  padding: 32px 34px;
}

.lexicon-section-card + .lexicon-section-card {
  margin-top: 18px;
}

.lexicon-section-card h3,
.lexicon-related-box h3,
.lexicon-faq-item h3,
.lexicon-tip-box h2 {
  margin: 0 0 14px;
  color: #121826;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.lexicon-section-card p,
.lexicon-related-box p,
.lexicon-faq-item p,
.lexicon-tip-box p {
  margin: 0;
  color: #46556f;
  font-size: 16px;
  line-height: 1.64;
}

.lexicon-tip-box {
  padding: 30px 34px;
}

.lexicon-tip-kicker {
  margin: 0 0 10px;
  color: #4f678f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lexicon-article-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.lexicon-related-box {
  padding: 26px 28px;
}

.lexicon-related-links {
  display: grid;
  gap: 14px;
}

.lexicon-related-links a {
  color: #1f57b7;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.lexicon-related-links a:hover {
  text-decoration: underline;
}

.lexicon-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lexicon-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e6edf8;
  color: #31445f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.lexicon-chip--link {
  text-decoration: none;
}

.lexicon-faq-block {
  display: grid;
  gap: 18px;
}

.lexicon-faq-list {
  display: grid;
  gap: 22px;
}

.lexicon-faq-item {
  padding: 26px 28px;
}

@media (max-width: 1300px) {
  .blog-topicbar-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .blog-topic-nav {
    justify-content: flex-start;
  }

  .blog-featured-grid {
    grid-template-columns: 1fr;
  }

  .blog-lexicon-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-card--main {
    min-height: 560px;
  }

  .blog-category-row {
    grid-template-columns: 1fr;
  }

  .blog-topics-layout {
    grid-template-columns: 1fr;
  }

  .blog-important-grid,
  .blog-authors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lexicon-topicbar-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .lexicon-topic-nav {
    justify-content: flex-start;
  }

  .lexicon-letter-columns,
  .lexicon-category-card-grid,
  .lexicon-hero-grid,
  .lexicon-article-hero-grid,
  .lexicon-article-layout,
  .blog-lexicon-card {
    grid-template-columns: 1fr;
  }

  .lexicon-article-aside {
    position: static;
  }
}

@media (max-width: 980px) {
  .blog-overview-page section {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .blog-section-header h1,
  .blog-section-header h2 {
    font-size: clamp(24px, 6vw, 34px);
  }

  .blog-topicbar-label {
    font-size: 28px;
  }

  .blog-featured-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .blog-featured-card--main {
    min-height: 440px;
  }

  .blog-featured-overlay h2 {
    font-size: clamp(22px, 5vw, 32px);
    max-width: none;
  }

  .blog-featured-stack .blog-featured-overlay h2 {
    font-size: clamp(20px, 4.3vw, 28px);
  }

  .blog-audience-grid,
  .blog-article-grid {
    grid-template-columns: 1fr;
  }

  .blog-category-aside h3,
  .blog-topics-layout h2,
  .blog-article-card h4,
  .blog-important-card h3,
  .blog-author-card h3 {
    font-size: clamp(22px, 5.5vw, 30px);
  }

  .blog-author-card p {
    font-size: 17px;
  }

  .blog-important-grid,
  .blog-authors-grid,
  .blog-cta-grid {
    grid-template-columns: 1fr;
  }

  .blog-cta-grid {
    gap: 26px;
    text-align: center;
  }

  .blog-cta-card p {
    margin-inline: auto;
  }

  .lexicon-hero {
    padding: 72px 0 88px;
  }

  .lexicon-search-form {
    grid-template-columns: 1fr;
  }

  .blog-lexicon-card {
    padding: 26px;
  }

  .blog-lexicon-preview {
    padding: 22px;
  }

  .lexicon-search-submit {
    width: 100%;
  }

  .lexicon-search-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .lexicon-hero h1,
  .lexicon-article-copy h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .lexicon-letter-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lexicon-letter-heading {
    position: static;
    font-size: 40px;
  }

  .lexicon-directory {
    gap: 58px;
    margin-top: 56px;
  }

  .lexicon-entry-list a {
    font-size: 17px;
  }

  .lexicon-section-card,
  .lexicon-tip-box,
  .lexicon-related-box,
  .lexicon-faq-item {
    border-radius: 26px;
  }
}

/* Blog Category Overview */
.blog-category-page {
  background: #eef3f9;
  color: #122a50;
  font-family: "Arimo", var(--font);
}

.blog-category-page h1,
.blog-category-page h2,
.blog-category-page h3,
.blog-category-page h4,
.blog-category-page .blog-topicbar-label,
.blog-category-page .blog-cat-filter legend,
.blog-category-page .blog-cat-filter h3 {
  font-family: "Poppins", var(--font);
}

.blog-category-page .wrap {
  max-width: 1440px;
}

.blog-category-page section {
  padding-top: 88px;
  padding-bottom: 92px;
}

.blog-topicbar-inner--category .blog-topic-nav a.active {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.82);
  background: rgba(96, 165, 250, 0.28);
}

.blog-cat-hero {
  background:
    radial-gradient(1100px 380px at 10% 0%, rgba(96, 165, 250, 0.18), transparent 72%),
    linear-gradient(166deg, #071327, #081a36 58%, #071225);
  color: #ebf2ff;
}

.blog-cat-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.blog-cat-hero-copy h1 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.blog-cat-hero-separator {
  display: inline-block;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  margin: 24px 0 26px;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
}

.blog-cat-hero-copy p {
  margin: 0;
  max-width: 43ch;
  color: #d4e1f6;
  font-size: 18px;
  line-height: 1.5;
}

.blog-cat-hero-pattern {
  border-left: 1px solid rgba(150, 181, 233, 0.25);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-content: space-evenly;
  justify-items: center;
  gap: 12px;
  padding: 6px 0 6px 26px;
}

.blog-cat-hero-pattern span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #60a5fa;
  opacity: 0.95;
}

.blog-cat-hero-pattern span:nth-child(5n + 1),
.blog-cat-hero-pattern span:nth-child(5n + 4) {
  height: 84px;
  width: 18px;
  border-radius: 16px;
}

.blog-cat-hero-pattern span:nth-child(5n + 2) {
  height: 44px;
  width: 18px;
  border-radius: 12px;
}

.blog-cat-featured {
  background: #edf2f8;
}

.blog-featured-grid--category .blog-featured-card::after {
  background: linear-gradient(180deg, rgba(4, 8, 16, 0.12) 0%, rgba(4, 8, 16, 0.74) 72%, rgba(4, 8, 16, 0.9) 100%);
}

.blog-featured-grid--category .blog-featured-card h2 {
  max-width: 18ch;
}

.blog-cat-list {
  background: #edf2f8;
}

.blog-cat-list-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.blog-cat-filter {
  position: sticky;
  top: 92px;
  border-radius: 20px;
  border: 1px solid rgba(22, 44, 78, 0.12);
  background: #f7faff;
  padding: 20px 16px;
}

.blog-cat-filter h3 {
  margin: 0 0 18px;
  color: #13294f;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.12;
}

.blog-cat-filter fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.blog-cat-filter legend {
  margin: 0 0 10px;
  width: 100%;
  border-bottom: 1px solid rgba(35, 61, 103, 0.28);
  padding-bottom: 8px;
  color: #1d355f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  font-weight: 700;
}

.blog-cat-filter label {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #203a66;
  font-size: 16px;
  line-height: 1.4;
}

.blog-cat-filter input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  border-radius: 4px;
  accent-color: #60a5fa;
}

.blog-cat-filter-actions {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.blog-cat-filter-actions .btn {
  width: 100%;
  border-radius: 999px;
}

.blog-cat-filter-actions .btn:not(.primary) {
  color: #18325c;
  border-color: rgba(18, 38, 70, 0.34);
  background: transparent;
}

.blog-cat-articles-area {
  display: grid;
  gap: 28px;
}

.blog-cat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
}

.blog-cat-card a {
  text-decoration: none;
  display: block;
}

.blog-cat-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  object-fit: cover;
  display: block;
}

.blog-cat-card .blog-card-meta {
  margin-top: 12px;
  margin-bottom: 8px;
  color: #62708f;
}

.blog-cat-card h3 {
  margin: 0;
  color: #122243;
  font-size: clamp(22px, 1.6vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.blog-cat-card p {
  margin: 10px 0 0;
  color: #5a6c8d;
  font-size: 16px;
  line-height: 1.48;
}

.blog-cat-empty {
  margin: 0;
  color: #36527f;
  font-size: 16px;
}

.blog-cat-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.blog-cat-pagination button,
.blog-cat-pagination span {
  border: 0;
  background: transparent;
  color: #1e355f;
  font-size: 19px;
  line-height: 1;
}

.blog-cat-pagination button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.blog-cat-pagination button:hover {
  background: rgba(96, 165, 250, 0.16);
}

.blog-cat-pagination button.active {
  background: #2a3648;
  color: #ffffff;
}

.blog-cat-pagination button.next {
  width: auto;
  padding-inline: 10px;
  font-size: 30px;
}

@media (max-width: 1180px) {
  .blog-cat-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-cat-hero-pattern {
    border-left: 0;
    border-top: 1px solid rgba(150, 181, 233, 0.25);
    padding: 22px 0 0;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
  }

  .blog-cat-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-cat-filter {
    position: static;
  }
}

@media (max-width: 980px) {
  .blog-category-page section {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .blog-cat-hero-copy h1 {
    font-size: clamp(24px, 6.8vw, 34px);
  }

  .blog-cat-hero-copy p {
    font-size: 16px;
    max-width: none;
  }

  .blog-featured-grid--category .blog-featured-card--main {
    min-height: 420px;
  }

  .blog-cat-cards {
    grid-template-columns: 1fr;
  }

  .blog-cat-card h3 {
    font-size: clamp(22px, 5.8vw, 30px);
  }
}

/* Blog Admin */
.blog-admin-page,
.admin-dashboard-page {
  background: #ecf2f9;
  color: #12284e;
  font-family: "Arimo", var(--font);
}

.blog-admin-page h1,
.blog-admin-page h2,
.blog-admin-page h3,
.blog-admin-page .admin-kicker,
.admin-dashboard-page h1,
.admin-dashboard-page h2,
.admin-dashboard-page h3,
.admin-dashboard-page .admin-kicker {
  font-family: "Poppins", var(--font);
}

.blog-admin-page .wrap,
.admin-dashboard-page .wrap {
  max-width: 1440px;
}

.admin-hero {
  background:
    radial-gradient(1000px 300px at 10% 0%, rgba(96, 165, 250, 0.16), transparent 72%),
    linear-gradient(165deg, #071327, #071a34 56%, #071225);
  color: #eef4ff;
  padding-top: 74px;
  padding-bottom: 80px;
}

.admin-kicker {
  margin: 0;
  color: #84c6ff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.admin-hero p {
  margin: 0;
  max-width: 72ch;
  color: #d5e2f7;
  font-size: 18px;
  line-height: 1.52;
}

.admin-workspace {
  padding-top: 74px;
  padding-bottom: 90px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.admin-form {
  display: grid;
  gap: 20px;
}

.admin-card {
  border-radius: 20px;
  border: 1px solid rgba(24, 45, 77, 0.14);
  background: #f8fbff;
  padding: 22px 20px;
}

.admin-card h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.admin-subheading {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.admin-divider {
  border: 0;
  border-top: 1px solid rgba(24, 45, 77, 0.14);
  margin: 20px 0;
}

.admin-note {
  margin: -4px 0 14px;
  color: #4d638a;
  font-size: 15px;
}

.admin-grid {
  display: grid;
  gap: 14px;
}

.admin-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-grid-span-2 {
  grid-column: 1 / -1;
}

.admin-card label {
  margin: 0;
  display: grid;
  gap: 6px;
  color: #1d355f;
  font-size: 14px;
  font-weight: 700;
}

.blog-admin-page input,
.blog-admin-page textarea,
.blog-admin-page select,
.admin-dashboard-page input,
.admin-dashboard-page textarea,
.admin-dashboard-page select {
  width: 100%;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(23, 46, 83, 0.2);
  background: #ffffff;
  color: #12284e;
  font: inherit;
  padding: 10px 12px;
}

.blog-admin-page textarea,
.admin-dashboard-page textarea {
  resize: vertical;
  min-height: 90px;
}

.blog-admin-page input:focus,
.blog-admin-page textarea:focus,
.blog-admin-page select:focus,
.admin-dashboard-page input:focus,
.admin-dashboard-page textarea:focus,
.admin-dashboard-page select:focus {
  outline: 2px solid rgba(96, 165, 250, 0.5);
  border-color: rgba(96, 165, 250, 0.7);
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #63799f;
  font-size: 12px;
  line-height: 1.35;
}

[data-word-counter].is-ok {
  color: #1e7f5a;
}

[data-word-counter].is-warn {
  color: #b45309;
}

.admin-sections {
  display: grid;
  gap: 16px;
}

.admin-section-item {
  border-radius: 14px;
  border: 1px solid rgba(24, 45, 77, 0.13);
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.image-field {
  border-radius: 14px;
  border: 1px dashed rgba(24, 45, 77, 0.26);
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.image-status {
  margin-top: 8px;
  display: grid;
  gap: 4px;
}

.image-status p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}

.image-status p.ok {
  color: #18724f;
}

.image-status p.bad {
  color: #b91c1c;
}

.image-preview {
  width: 100%;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid rgba(24, 45, 77, 0.14);
  background: #edf3fc;
  max-height: 240px;
  object-fit: cover;
}

.image-preview-avatar {
  width: 140px;
  height: 140px;
  border-radius: 999px;
}

.admin-side {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
}

.admin-side-card {
  border-radius: 18px;
  border: 1px solid rgba(24, 45, 77, 0.14);
  background: #f8fbff;
  padding: 16px;
}

.admin-side-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
}

.admin-actions {
  display: grid;
  gap: 8px;
}

.admin-actions .btn {
  width: 100%;
  border-radius: 999px;
}

.admin-side-note {
  margin: 12px 0 0;
  color: #5e7396;
  font-size: 12px;
  line-height: 1.45;
}

.admin-status {
  margin: 12px 0 0;
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
}

.admin-status[data-tone="ok"] {
  color: #1e7f5a;
}

.admin-status[data-tone="warn"] {
  color: #b45309;
}

#json-preview {
  margin: 0;
  max-height: 540px;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid rgba(24, 45, 77, 0.18);
  background: #0a1630;
  color: #d9e8ff;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-side {
    position: static;
  }
}

@media (max-width: 900px) {
  .admin-grid-2 {
    grid-template-columns: 1fr;
  }

  .admin-hero {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .admin-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .admin-hero p {
    font-size: 16px;
  }
}

.admin-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

.admin-session-info {
  margin: 0;
  color: #d7e5fa;
  font-size: 14px;
  font-weight: 600;
}

.admin-session-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-session-actions .btn {
  border-radius: 999px;
  padding: 10px 14px;
}

.admin-dashboard-status {
  margin-top: 14px;
}

.admin-table-wrap {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(24, 45, 77, 0.12);
  background: #ffffff;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.admin-table th,
.admin-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(24, 45, 77, 0.1);
  vertical-align: top;
  text-align: left;
  color: #17315f;
  font-size: 14px;
}

.admin-table th {
  background: #f1f6ff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #51688f;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-table-btn {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
}

.admin-table-btn-danger {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.34);
  color: #9f1239;
}

.admin-feedback-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-feedback-toolbar p {
  margin: 0;
  color: #4d638a;
  font-size: 15px;
}

.admin-feedback-table .admin-table th,
.admin-feedback-table .admin-table td {
  vertical-align: middle;
}

.admin-feedback-table code {
  font-size: 12px;
}

.admin-feedback-title {
  display: grid;
  gap: 4px;
}

.admin-feedback-title strong {
  color: #12284e;
  font-size: 15px;
  line-height: 1.35;
}

.admin-feedback-title span {
  color: #5f7396;
  font-size: 13px;
  line-height: 1.45;
}

.admin-feedback-inline-field {
  min-width: 130px;
}

.admin-feedback-inline-field input,
.admin-feedback-inline-field select {
  min-width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  background: #ffffff;
}

.admin-feedback-votes {
  display: inline-flex;
  min-width: 48px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 43, 66, 0.06);
  color: #17315f;
  font-size: 13px;
  font-weight: 800;
}

.admin-login-page {
  min-height: 100vh;
  background:
    radial-gradient(1000px 380px at 14% -10%, rgba(45, 212, 191, 0.23), transparent 74%),
    radial-gradient(940px 360px at 86% 0%, rgba(96, 165, 250, 0.22), transparent 70%),
    #05070b;
  color: #eef4ff;
  font-family: "Arimo", var(--font);
}

.admin-login-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 18px;
}

.admin-login-card {
  width: min(520px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(135, 168, 224, 0.42);
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(94, 178, 255, 0.2), transparent 76%),
    linear-gradient(160deg, rgba(19, 35, 64, 0.98), rgba(8, 14, 26, 0.99));
  padding: 28px 24px;
  box-shadow: 0 30px 80px rgba(2, 8, 20, 0.66);
}

.admin-login-brand {
  margin-bottom: 18px;
}

.admin-login-kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8dd1ff;
  font-family: "Poppins", var(--font);
}

.admin-login-card h1 {
  margin: 12px 0 8px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-family: "Poppins", var(--font);
}

.admin-login-copy {
  margin: 0 0 20px;
  color: #c4d7f6;
}

.admin-login-form {
  display: grid;
  gap: 12px;
}

.admin-login-form label {
  margin: 0;
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: #d7e6ff;
}

.admin-login-form input {
  width: 100%;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(129, 157, 208, 0.42);
  background: rgba(9, 18, 36, 0.85);
  color: #f0f5ff;
  font: inherit;
  padding: 12px 14px;
}

.admin-login-form input:focus {
  outline: 2px solid rgba(96, 165, 250, 0.5);
  border-color: rgba(96, 165, 250, 0.82);
}

.admin-login-form .btn {
  margin-top: 4px;
  border-radius: 999px;
  min-height: 46px;
}

.admin-login-status {
  margin: 4px 0 0;
  min-height: 20px;
  color: #c7daf7;
  font-size: 14px;
  font-weight: 700;
}

.blog-preview-page {
  background: #edf3fb;
  color: #132b52;
  font-family: "Arimo", var(--font);
}

.blog-preview-page h1,
.blog-preview-page h2,
.blog-preview-page h3,
.blog-preview-page .preview-kicker,
.blog-preview-page .preview-rec-label {
  font-family: "Poppins", var(--font);
}

.blog-preview-page .wrap {
  max-width: 1240px;
}

.preview-toolbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(26, 48, 86, 0.12);
}

.blog-article-page .preview-toolbar {
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.preview-toolbar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.blog-article-page .preview-toolbar-inner {
  min-height: 44px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.preview-toolbar-note {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6f95;
}

.preview-toolbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-toolbar-actions .btn {
  border-radius: 999px;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.preview-hero {
  background:
    radial-gradient(1150px 420px at 14% 0%, rgba(84, 170, 255, 0.16), transparent 72%),
    linear-gradient(160deg, #081328, #071a34 56%, #071226);
  color: #edf4ff;
  padding: 56px 0 64px;
}

.preview-load-state {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #bad3f6;
}

.preview-load-state[data-tone="ok"] {
  color: #65d8aa;
}

.preview-load-state[data-tone="warn"] {
  color: #ffd089;
}

.preview-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.preview-kicker {
  margin: 0;
  font-size: 13px;
  color: #8fd8ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-hero-copy h1 {
  margin: 14px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.preview-intro {
  margin: 0;
  font-size: 18px;
  line-height: 1.48;
  color: #cfe1fb;
  max-width: 44ch;
}

.preview-hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.preview-hero-actions .btn {
  border-radius: 999px;
  min-height: 44px;
  padding: 11px 18px;
  font-size: 16px;
}

.preview-meta-line {
  margin: 22px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7d8f2;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.preview-hero-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(129, 171, 237, 0.48);
  background: rgba(7, 14, 29, 0.7);
  box-shadow: 0 30px 70px rgba(1, 10, 29, 0.42);
}

.preview-hero-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.preview-author {
  padding: 26px 0 0;
}

.preview-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-author-row img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(21, 43, 80, 0.16);
}

.preview-author-meta p {
  margin: 0;
}

.preview-author-name {
  font-size: 16px;
  font-weight: 700;
}

.preview-author-role {
  color: #4f648c;
  font-size: 15px;
}

.preview-toc {
  padding: 28px 0 0;
}

.preview-toc .wrap {
  border-radius: 18px;
  border: 1px solid rgba(23, 45, 83, 0.12);
  background: #f8fbff;
  padding: 20px 22px;
}

.preview-toc h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.12;
}

.preview-toc ul {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 8px;
}

.preview-toc li {
  font-size: 16px;
  line-height: 1.36;
}

.preview-content {
  padding: 28px 0 0;
}

.preview-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.preview-sections {
  display: grid;
  gap: 34px;
}

.blog-article-page .preview-sections {
  display: grid;
  gap: 18px;
  align-content: start;
}

.blog-article-page .preview-section-block {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.blog-article-page .preview-section-block > *:last-child {
  margin-bottom: 0;
}

.preview-section-block h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.preview-section-block p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.55;
  color: #1f3458;
}

.preview-section-block ul {
  margin: 0;
  padding-left: 28px;
  display: grid;
  gap: 10px;
}

.preview-section-block li {
  font-size: 18px;
  line-height: 1.5;
  color: #1f3458;
}

.preview-side {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
}

.preview-info-box {
  border-radius: 16px;
  border: 1px solid rgba(23, 45, 83, 0.13);
  background: #f8fbff;
  padding: 16px;
}

.preview-info-box h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.14;
}

.preview-info-box p,
.preview-info-box li {
  color: #27426c;
  font-size: 16px;
  line-height: 1.55;
}

.preview-info-box ul {
  margin: 0 0 12px;
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.preview-info-box .btn {
  width: 100%;
  border-radius: 999px;
}

.preview-quotes {
  padding: 32px 0 0;
}

.preview-quotes .wrap {
  display: grid;
  gap: 12px;
}

.preview-quote-card {
  margin: 0;
  border-radius: 18px;
  background: #f5f8ff;
  border: 1px solid rgba(23, 45, 83, 0.12);
  padding: 20px 22px;
}

.preview-quote-card p {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.16;
  font-family: "Poppins", var(--font);
  font-style: italic;
  font-weight: 700;
}

.preview-quote-card cite {
  margin-top: 12px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #51678e;
  font-style: normal;
}

.preview-topics {
  padding: 34px 0 0;
}

.preview-topics h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
}

.preview-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-chip {
  border-radius: 999px;
  border: 1px solid rgba(22, 43, 78, 0.34);
  background: rgba(255, 255, 255, 0.8);
  color: #17325d;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.preview-recommended {
  padding: 36px 0 74px;
}

.preview-recommended .wrap {
  border-radius: 24px;
  background:
    radial-gradient(900px 300px at 12% 0%, rgba(95, 169, 255, 0.16), transparent 72%),
    linear-gradient(164deg, #101728, #0d1220 56%, #0a101d);
  color: #ecf4ff;
  border: 1px solid rgba(143, 176, 231, 0.26);
  padding: 22px;
}

.preview-rec-label {
  margin: 0;
  color: #8dd3ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-recommended-main h2 {
  margin: 10px 0;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
}

.preview-recommended-main p {
  margin: 0;
  max-width: 60ch;
  color: #bfd2f4;
  font-size: 18px;
}

.preview-recommended-main .btn {
  margin-top: 18px;
  border-radius: 999px;
}

.preview-related-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.preview-related-card {
  border-radius: 14px;
  border: 1px solid rgba(144, 171, 222, 0.34);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.preview-related-card a {
  color: #eaf2ff;
  text-decoration: none;
  display: grid;
  gap: 8px;
}

.preview-related-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.preview-related-card span {
  color: #93b5ea;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1140px) {
  .preview-hero-grid {
    grid-template-columns: 1fr;
  }

  .preview-content-layout {
    grid-template-columns: 1fr;
  }

  .preview-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .admin-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-toolbar-inner {
    min-height: 56px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .preview-intro,
  .preview-section-block p,
  .preview-section-block li,
  .preview-info-box p,
  .preview-info-box li {
    font-size: 16px;
  }

  .preview-section-block h2,
  .preview-topics h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .preview-quote-card p {
    font-size: clamp(20px, 6.4vw, 28px);
  }

  .preview-side {
    grid-template-columns: 1fr;
  }

  .preview-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Keep CTA heading sizes aligned with infopack heading size on product pages. */
.product-detail-page .pd-cta-duo-head p {
  font-size: 18px;
}

.product-detail-page .pd-cta-duo-head h2,
.product-detail-page .pd-cta-duo-card h3 {
  font-size: 30px;
  line-height: 1.14;
}

.mega-overlay--support {
  width: min(560px, calc(100vw - 36px));
  left: auto;
  right: 0;
  transform: none;
}

.mega-overlay--support::before {
  display: block;
}

.mega-panel--support-menu {
  grid-template-columns: 1fr;
  border: 0;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(244, 246, 250, 0.99), rgba(233, 237, 244, 0.99));
  color: #121722;
  box-shadow: 0 30px 80px rgba(3, 8, 18, 0.34);
}

.mega-panel--support-menu::before,
.mega-panel--support-menu::after {
  display: none;
}

.mega-support-menu-col {
  padding: 28px 32px 34px;
  border: 0;
  background: transparent;
}

.mega-support-menu-col h3 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
  color: #10141d;
}

.mega-support-menu-list {
  display: grid;
  gap: 4px;
}

.mega-support-menu-list a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
  color: #202632;
  transition: 0.16s ease;
}

.mega-support-menu-list a:hover {
  color: #0a4fd9;
  transform: translateX(4px);
}

.support-page {
  background:
    radial-gradient(900px 440px at 24% -5%, rgba(45, 212, 191, 0.16), transparent 68%),
    radial-gradient(1100px 560px at 86% 10%, rgba(96, 165, 250, 0.18), transparent 60%),
    #04070c;
}

.support-page .topbar {
  background: rgba(4, 7, 12, 0.92);
  backdrop-filter: blur(10px);
}

.support-hero-section,
.support-detail-hero {
  padding-top: 42px;
  padding-bottom: 34px;
}

.support-hero-grid,
.support-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: 38px;
  align-items: center;
}

.support-eyebrow,
.support-page-kicker {
  margin: 0 0 14px;
  font-size: var(--type-kicker-lg);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ab9ff;
}

.support-hero-copy h1,
.support-detail-copy h1 {
  margin: 0;
  font-size: var(--type-hero-h1);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f2f6ff;
}

.support-hero-copy > p:not(.support-eyebrow),
.support-detail-copy .support-lead {
  margin: 24px 0 0;
  max-width: 52ch;
  font-size: var(--type-body-lead);
  line-height: 1.5;
  color: rgba(233, 240, 255, 0.88);
}

.support-hero-actions,
.support-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.support-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(141, 171, 228, 0.36);
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.16s ease;
}

.support-link-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.support-hero-visual,
.support-detail-aside {
  position: relative;
}

.support-hero-card,
.support-detail-aside-card {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  border: 1px solid rgba(131, 177, 255, 0.26);
  background:
    radial-gradient(620px 340px at 80% 0%, rgba(96, 165, 250, 0.28), transparent 58%),
    radial-gradient(420px 220px at 12% 88%, rgba(45, 212, 191, 0.2), transparent 64%),
    linear-gradient(160deg, rgba(17, 28, 50, 0.98), rgba(7, 13, 26, 0.98));
  box-shadow:
    0 24px 80px rgba(1, 6, 16, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.support-hero-card {
  padding: 28px;
}

.support-detail-aside-card {
  padding: 28px;
}

.support-hero-screen {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(140, 177, 239, 0.25);
  background: linear-gradient(180deg, rgba(10, 17, 31, 0.92), rgba(12, 22, 40, 0.92));
}

.support-hero-screen::before {
  content: "";
  position: absolute;
  inset: 16px 18px auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.support-window-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}

.support-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(230, 236, 248, 0.35);
}

.support-window-dots span:last-child {
  background: rgba(45, 212, 191, 0.7);
}

.support-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(129, 158, 210, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: #d8e5ff;
  font-size: 14px;
}

.support-hero-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
}

.support-hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-hero-tile {
  min-height: 112px;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(134, 164, 219, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.support-hero-tile strong,
.support-hero-stat strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.2;
  color: #f3f7ff;
}

.support-hero-tile span,
.support-hero-stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #97a8c9;
}

.support-hero-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(96, 165, 250, 0.14);
  color: #91d5ff;
}

.support-hero-icon svg {
  width: 24px;
  height: 24px;
}

.support-hero-stat {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(240px, calc(100% - 56px));
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(130, 161, 215, 0.22);
  background: rgba(8, 15, 27, 0.82);
  backdrop-filter: blur(12px);
}

.support-hero-stat-bar {
  position: relative;
  margin-top: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.support-hero-stat-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
}

.support-local-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 34;
  margin-top: 0;
  padding: 10px 0 12px;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.94));
  border-bottom: 1px solid rgba(132, 166, 228, 0.16);
  backdrop-filter: blur(12px);
}

.support-local-nav-wrap .wrap {
  display: flex;
  align-items: center;
}

.support-local-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.support-local-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(132, 166, 228, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #cfdbf3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: 0.16s ease;
}

.support-local-nav a:hover {
  border-color: rgba(110, 184, 255, 0.42);
  color: #f5f8ff;
}

.support-local-nav a.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.95), rgba(96, 165, 250, 0.92));
  color: #05111d;
}

@media (max-width: 720px) {
  .support-local-nav-wrap {
    padding: 8px 0 10px;
  }

  .support-local-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .support-local-nav::-webkit-scrollbar {
    display: none;
  }

  .support-local-nav a {
    height: 44px;
    padding: 0 18px;
  }
}

.support-overview-surface {
  padding-top: 14px;
}

.support-overview-frame {
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(243, 246, 251, 0.99), rgba(234, 239, 247, 0.98));
  color: #131924;
  box-shadow: 0 24px 80px rgba(2, 7, 18, 0.28);
}

.support-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.support-overview-header h2 {
  margin: 0;
  font-size: var(--type-section-h2);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.support-overview-header p {
  margin: 0;
  max-width: 48ch;
  color: #4f596c;
  font-size: var(--type-body-lead);
  line-height: 1.55;
}

.support-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-service-card,
.support-mini-card,
.support-detail-card,
.support-side-note,
.support-topic-card,
.support-faq-card,
.support-cta-band {
  border-radius: 30px;
}

.support-service-card,
.support-mini-card,
.support-detail-card,
.support-side-note,
.support-topic-card,
.support-faq-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(178, 191, 214, 0.55);
  box-shadow: 0 18px 40px rgba(34, 47, 72, 0.08);
}

.support-service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.support-service-card-media {
  min-height: 206px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(202, 211, 227, 0.72);
  background:
    radial-gradient(220px 120px at 18% 12%, rgba(96, 165, 250, 0.18), transparent 72%),
    radial-gradient(220px 120px at 82% 88%, rgba(45, 212, 191, 0.16), transparent 72%),
    linear-gradient(180deg, #fbfcff, #eef3fb);
}

.support-service-card-media svg {
  width: 78px;
  height: 78px;
  color: #2d4f7f;
}

.support-service-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 26px;
}

.support-service-card-body h3,
.support-topic-card h2,
.support-faq-card h2,
.support-detail-card h2,
.support-side-note h3 {
  margin: 0;
  color: #141922;
  letter-spacing: -0.02em;
}

.support-service-card-body h3 {
  font-size: var(--type-card-title-md);
  line-height: 1.18;
}

.support-service-card-body p,
.support-topic-card p,
.support-faq-card p,
.support-detail-card p,
.support-side-note p {
  margin: 14px 0 0;
  color: #495365;
  font-size: var(--type-body-default);
  line-height: 1.6;
}

.support-service-card-body .btn,
.support-mini-card .btn,
.support-topic-card .btn,
.support-cta-band .btn {
  margin-top: auto;
}

.support-cta-band .btn {
  margin-top: 0;
  flex-shrink: 0;
}

.support-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.support-mini-card {
  padding: 24px 24px 26px;
  background: rgba(255, 255, 255, 0.82);
  color: #151c28;
}

.support-mini-card h3 {
  margin: 0;
  font-size: var(--type-card-title-md);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.support-mini-card p {
  margin: 12px 0 0;
  color: #4f596c;
  font-size: var(--type-body-default);
  line-height: 1.55;
}

.support-detail-main {
  padding-top: 10px;
}

.support-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.34fr);
  gap: 22px;
}

.support-detail-stack,
.support-side-stack {
  display: grid;
  gap: 18px;
}

.support-detail-card,
.support-faq-card,
.support-topic-card,
.support-side-note {
  padding: 26px;
  color: #141922;
}

.support-detail-card ul,
.support-detail-card ol,
.support-side-note ul,
.support-topic-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #485261;
  font-size: var(--type-body-default);
  line-height: 1.65;
}

.support-detail-card ol {
  padding-left: 22px;
}

.support-detail-card li + li,
.support-side-note li + li,
.support-topic-card li + li {
  margin-top: 10px;
}

.support-related-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.support-side-note strong {
  color: #141922;
}

.support-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(116, 153, 220, 0.24);
  background:
    radial-gradient(300px 160px at 12% 0%, rgba(96, 165, 250, 0.18), transparent 70%),
    linear-gradient(160deg, rgba(15, 28, 52, 0.98), rgba(7, 14, 26, 0.99));
}

.support-cta-band h2 {
  margin: 0;
  color: #eff4ff;
  font-size: var(--type-section-h2);
  line-height: 1.14;
}

.support-cta-band p {
  margin: 12px 0 0;
  color: #b8c8e2;
  font-size: 16px;
  line-height: 1.55;
}

.support-faq-list {
  display: grid;
  gap: 14px;
}

.support-faq-item {
  border-radius: 22px;
  border: 1px solid rgba(176, 191, 216, 0.6);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.support-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #141922;
}

.support-faq-item summary::-webkit-details-marker {
  display: none;
}

.support-faq-item summary::after {
  content: "+";
  float: right;
  color: #2b5fb7;
}

.support-faq-item[open] summary::after {
  content: "−";
}

.support-faq-answer {
  padding: 0 24px 22px;
  color: #495365;
  font-size: var(--type-body-default);
  line-height: 1.65;
}

.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-topic-card h2 {
  font-size: var(--type-card-title-md);
  line-height: 1.18;
}

.support-topic-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 25, 34, 0.06);
  color: #314256;
  font-size: var(--type-meta);
  font-weight: 600;
}

.support-metric-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  align-items: stretch;
}

.support-metric {
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(128, 160, 220, 0.16);
}

.support-metric strong {
  display: block;
  font-size: var(--type-metric-title);
  line-height: 1.15;
  color: #f2f6ff;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.support-metric span {
  display: block;
  margin-top: 10px;
  color: #a7b7d6;
  font-size: var(--type-metric-body);
  line-height: 1.45;
}

.support-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.support-inline-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 25, 34, 0.06);
  color: #304053;
  font-size: var(--type-meta);
  font-weight: 600;
}

.support-page .footer {
  padding-top: 36px;
}

@media (max-width: 1180px) {
  .support-hero-grid,
  .support-detail-hero-grid,
  .support-detail-grid,
  .support-service-grid,
  .support-topic-grid {
    grid-template-columns: 1fr;
  }

  .support-overview-header,
  .support-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-hero-card,
  .support-detail-aside-card {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  .support-hero-copy h1,
  .support-detail-copy h1 {
    font-size: clamp(34px, 5.4vw, 44px);
  }

  .support-hero-copy > p:not(.support-eyebrow),
  .support-detail-copy .support-lead {
    max-width: none;
    font-size: var(--type-body-lead);
  }

  .support-overview-frame,
  .support-service-card-body,
  .support-service-card-media,
  .support-detail-card,
  .support-topic-card,
  .support-faq-card,
  .support-side-note,
  .support-mini-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .support-mini-grid,
  .support-metric-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .mega-overlay--support {
    width: min(92vw, 560px);
  }

  .support-hero-section,
  .support-detail-hero,
  .support-detail-main,
  .support-overview-surface {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .support-hero-copy h1,
  .support-detail-copy h1 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .support-hero-card,
  .support-detail-aside-card {
    min-height: 360px;
    border-radius: 30px;
    padding: 20px;
  }

  .support-hero-screen {
    min-height: 250px;
    padding: 18px;
  }

  .support-hero-card-grid,
  .support-mini-grid {
    grid-template-columns: 1fr;
  }

  .support-overview-frame {
    padding: 20px;
    border-radius: 28px;
  }

  .support-service-card-body h3,
  .support-mini-card h3 {
    font-size: 22px;
  }

  .support-service-card-body p,
  .support-topic-card p,
  .support-faq-card p,
  .support-detail-card p,
  .support-side-note p {
    font-size: var(--type-body-compact);
  }

  .support-service-card-media {
    min-height: 168px;
  }

  .support-faq-item summary {
    font-size: 18px;
    padding: 18px 20px;
  }

  .support-faq-answer {
    padding: 0 20px 20px;
    font-size: var(--type-body-compact);
  }
}

/* Final support typography lock to keep support subpages on the same scale as home/product references. */
.support-page .support-hero-copy h1,
.support-page .support-detail-copy h1 {
  font-size: var(--type-hero-h1);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.support-page .support-hero-copy > p:not(.support-eyebrow),
.support-page .support-detail-copy .support-lead {
  max-width: 52ch;
  font-size: var(--type-body-lead);
  line-height: 1.5;
}

.support-page .support-overview-header h2,
.support-page .support-cta-band h2 {
  font-size: var(--type-section-h2);
  line-height: 1.14;
}

.support-page .support-service-card-body h3,
.support-page .support-mini-card h3,
.support-page .support-topic-card h2,
.support-page .support-faq-card h2,
.support-page .support-detail-card h2,
.support-page .support-side-note h3 {
  color: #141922;
  font-size: var(--type-card-title-md);
  line-height: 1.18;
}

.support-page .support-mini-card a,
.support-page .support-mini-card a:visited,
.support-page .support-mini-card h3,
.support-page .support-mini-card h3 a,
.support-page .support-mini-card h3 a:visited {
  color: #141922;
}

.support-page .support-service-card-body p,
.support-page .support-mini-card p,
.support-page .support-topic-card p,
.support-page .support-faq-card p,
.support-page .support-detail-card p,
.support-page .support-side-note p,
.support-page .support-detail-card ul,
.support-page .support-side-note ul,
.support-page .support-topic-card ul,
.support-page .support-faq-answer {
  font-size: var(--type-body-default);
}

.support-page .support-metric strong {
  font-size: clamp(18px, 1.45vw, var(--type-metric-title));
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.support-page .support-metric span,
.support-page .support-hero-tile span,
.support-page .support-hero-stat span {
  font-size: var(--type-metric-body);
}

@media (max-width: 980px) {
  .support-page .support-hero-copy h1,
  .support-page .support-detail-copy h1 {
    font-size: clamp(34px, 5.4vw, 44px);
  }
}

@media (max-width: 720px) {
  .support-page .support-hero-copy h1,
  .support-page .support-detail-copy h1 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .support-page .support-service-card-body p,
  .support-page .support-mini-card p,
  .support-page .support-topic-card p,
  .support-page .support-faq-card p,
  .support-page .support-detail-card p,
  .support-page .support-side-note p,
  .support-page .support-detail-card ul,
  .support-page .support-side-note ul,
  .support-page .support-topic-card ul,
  .support-page .support-faq-answer {
    font-size: var(--type-body-compact);
  }

  .support-page .support-metric strong {
    font-size: 18px;
  }
}

.support-faq-page .support-faq-hero-panel {
  min-height: 500px;
}

.support-faq-page .support-faq-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-consulting-page .support-detail-hero {
  padding-bottom: 52px;
}

.support-consulting-hero-grid {
  align-items: center;
}

.support-consulting-copy .support-lead {
  max-width: 58ch;
}

.support-consulting-visual {
  position: relative;
}

.support-consulting-photo-card {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(196, 211, 234, 0.6);
  background:
    linear-gradient(180deg, rgba(236, 241, 249, 0.96), rgba(226, 234, 246, 0.96)),
    linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(96, 165, 250, 0.14));
  box-shadow: 0 24px 80px rgba(4, 9, 20, 0.34);
}

.support-consulting-photo-glow {
  position: absolute;
  inset: -2% auto auto -8%;
  width: 74%;
  height: 42%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.28), transparent 72%);
  pointer-events: none;
}

.support-consulting-team {
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  pointer-events: none;
}

.support-consulting-person {
  position: absolute;
  bottom: 0;
  border-radius: 44px 44px 0 0;
  background:
    radial-gradient(circle at 46% 18%, rgba(255, 240, 224, 0.92) 0 10%, transparent 10.4%),
    radial-gradient(circle at 46% 16%, #f1d5be 0 16%, transparent 16.4%),
    linear-gradient(180deg, rgba(240, 244, 250, 0.76), rgba(200, 211, 227, 0.76) 42%, rgba(181, 194, 215, 0.72));
  filter: saturate(0.96);
}

.support-consulting-person::before {
  content: "";
  position: absolute;
  inset: 8% 12% auto 12%;
  height: 18%;
  border-radius: 999px 999px 44px 44px;
  background: linear-gradient(180deg, rgba(188, 154, 118, 0.95), rgba(113, 82, 58, 0.94));
}

.support-consulting-person::after {
  content: "";
  position: absolute;
  inset: 24% 18% 0 18%;
  border-radius: 46px 46px 0 0;
  background: linear-gradient(180deg, rgba(246, 236, 230, 0.98), rgba(224, 214, 208, 0.98));
}

.support-consulting-person--left {
  left: 10%;
  width: 42%;
  height: 68%;
}

.support-consulting-person--right {
  right: 3%;
  width: 38%;
  height: 78%;
  background:
    radial-gradient(circle at 46% 18%, rgba(255, 238, 222, 0.92) 0 10%, transparent 10.4%),
    radial-gradient(circle at 46% 16%, #efd0b8 0 16%, transparent 16.4%),
    linear-gradient(180deg, rgba(214, 224, 239, 0.72), rgba(170, 186, 210, 0.78) 42%, rgba(145, 164, 194, 0.8));
}

.support-consulting-note {
  position: absolute;
  width: min(250px, 44%);
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(157, 181, 218, 0.55);
  background: rgba(252, 254, 255, 0.92);
  box-shadow: 0 16px 44px rgba(50, 68, 98, 0.14);
}

.support-consulting-note strong {
  display: block;
  margin: 0;
  color: #111722;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.support-consulting-note span {
  display: block;
  margin-top: 10px;
  color: #4e5a6d;
  font-size: 15px;
  line-height: 1.5;
}

.support-consulting-note--top {
  top: 8%;
  left: 6%;
}

.support-consulting-note--mid {
  top: 30%;
  right: 6%;
}

.support-consulting-note--bottom {
  bottom: 9%;
  left: 8%;
}

.support-consulting-surface {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.99), rgba(235, 240, 247, 0.98));
}

.support-consulting-surface + .support-consulting-surface {
  border-top: 1px solid rgba(186, 198, 220, 0.72);
}

.support-consulting-story,
.support-consulting-portfolio,
.support-consulting-cta-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.support-consulting-story {
  padding: 0;
  display: grid;
  gap: 40px;
}

.support-consulting-story-block h2,
.support-consulting-portfolio-copy h2,
.support-consulting-cta-card h2 {
  margin: 0;
  color: #141922;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.support-consulting-story-block p,
.support-consulting-portfolio-copy p,
.support-consulting-side-card p,
.support-consulting-side-card ul,
.support-consulting-portfolio-list ul,
.support-consulting-cta-card p {
  margin: 18px 0 0;
  color: #424d61;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.62;
}

.support-consulting-portfolio {
  padding: 0;
}

.support-consulting-section-kicker {
  margin-bottom: 16px;
  color: #6077a4;
}

.support-consulting-portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 26px;
  margin-top: 28px;
}

.support-consulting-portfolio-list {
  padding: 0;
  border: 0;
  background: transparent;
}

.support-consulting-portfolio-list ul,
.support-consulting-side-card ul {
  padding-left: 24px;
}

.support-consulting-portfolio-list li,
.support-consulting-side-card li {
  margin: 0;
}

.support-consulting-portfolio-list li + li,
.support-consulting-side-card li + li {
  margin-top: 14px;
}

.support-consulting-portfolio-side {
  display: grid;
  gap: 18px;
}

.support-consulting-side-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.support-consulting-side-card h3 {
  margin: 0;
  color: #141922;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.support-consulting-side-card p,
.support-consulting-side-card ul {
  font-size: var(--type-body-default);
}

.support-consulting-cta-section {
  padding-bottom: 44px;
}

.support-consulting-cta-card {
  padding: 0;
}

.support-consulting-cta-card p {
  max-width: none;
}

.support-consulting-cta-card .btn {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .support-consulting-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .support-consulting-note {
    width: min(260px, 48%);
  }
}

@media (max-width: 980px) {
  .support-consulting-page .support-detail-hero {
    padding-bottom: 36px;
  }

  .support-consulting-photo-card {
    min-height: 500px;
  }

  .support-consulting-story,
  .support-consulting-portfolio,
  .support-consulting-cta-card {
    padding: 0;
    border-radius: 0;
  }

  .support-consulting-story-block h2,
  .support-consulting-portfolio-copy h2,
  .support-consulting-cta-card h2 {
    font-size: clamp(24px, 4.4vw, 34px);
  }

  .support-consulting-story-block p,
  .support-consulting-portfolio-copy p,
  .support-consulting-side-card p,
  .support-consulting-side-card ul,
  .support-consulting-portfolio-list ul,
  .support-consulting-cta-card p {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .support-consulting-photo-card {
    min-height: 420px;
    border-radius: 30px;
  }

  .support-consulting-note {
    width: auto;
    max-width: none;
    padding: 14px 16px 16px;
  }

  .support-consulting-note strong {
    font-size: 18px;
  }

  .support-consulting-note span {
    font-size: 14px;
  }

  .support-consulting-note--top {
    top: 6%;
    left: 5%;
    right: 24%;
  }

  .support-consulting-note--mid {
    top: auto;
    bottom: 29%;
    left: 5%;
    right: 10%;
  }

  .support-consulting-note--bottom {
    left: 5%;
    right: 18%;
    bottom: 6%;
  }

  .support-consulting-person--left {
    left: 2%;
    width: 48%;
    height: 60%;
  }

  .support-consulting-person--right {
    right: -3%;
    width: 44%;
    height: 70%;
  }

  .support-consulting-story {
    gap: 30px;
  }

  .support-consulting-story-block p,
  .support-consulting-portfolio-copy p,
  .support-consulting-side-card p,
  .support-consulting-side-card ul,
  .support-consulting-portfolio-list ul,
  .support-consulting-cta-card p {
    font-size: var(--type-body-compact);
    line-height: 1.65;
  }

  .support-consulting-surface {
    padding: 38px 0;
  }
}

.support-feedback-page .support-detail-hero {
  padding-bottom: 48px;
}

.support-feedback-copy .support-lead {
  max-width: 58ch;
}

.support-feedback-visual {
  position: relative;
}

.support-feedback-preview {
  min-height: 560px;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(196, 211, 234, 0.6);
  background:
    radial-gradient(540px 220px at 18% 8%, rgba(96, 165, 250, 0.18), transparent 70%),
    radial-gradient(360px 200px at 82% 84%, rgba(45, 212, 191, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(239, 243, 249, 0.98), rgba(227, 235, 245, 0.98));
  box-shadow: 0 24px 80px rgba(4, 9, 20, 0.34);
  padding: 28px;
}

.support-feedback-window {
  height: 100%;
  min-height: 500px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(157, 181, 218, 0.55);
  background: rgba(252, 254, 255, 0.92);
  box-shadow: 0 16px 44px rgba(50, 68, 98, 0.14);
}

.support-feedback-window .support-hero-status {
  border-color: rgba(157, 181, 218, 0.72);
  background: rgba(255, 255, 255, 0.9);
  color: #31445f;
}

.support-feedback-toolbar,
.support-feedback-filters,
.support-feedback-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-feedback-toolbar {
  margin-top: 18px;
}

.support-feedback-toolbar span,
.support-feedback-filters span,
.support-feedback-list-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 25, 34, 0.06);
  color: #304053;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-feedback-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(182, 195, 219, 0.6);
  background: rgba(244, 247, 252, 0.98);
}

.support-feedback-compose span {
  color: #526179;
  font-size: 16px;
  font-weight: 600;
}

.support-feedback-compose button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.95), rgba(96, 165, 250, 0.92));
  color: #05111d;
  font: inherit;
  font-weight: 800;
}

.support-feedback-idea-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.support-feedback-idea {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(182, 195, 219, 0.6);
  background: rgba(244, 247, 252, 0.98);
}

.support-feedback-votes,
.portal-feedback-list-votes {
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 14px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(29, 54, 97, 0.96), rgba(15, 28, 52, 0.98));
  color: #eef4ff;
}

.support-feedback-votes strong,
.portal-feedback-list-votes strong,
.portal-feedback-vote-card strong,
.support-feedback-screen-score {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.support-feedback-votes span,
.portal-feedback-list-votes span,
.portal-feedback-vote-card span {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b9c9e3;
}

.support-feedback-idea-copy h3 {
  margin: 0;
  color: #141922;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.support-feedback-idea-copy p {
  margin: 8px 0 0;
  color: #4e5a6d;
  font-size: 15px;
  line-height: 1.55;
}

.support-feedback-surface {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.99), rgba(235, 240, 247, 0.98));
}

.support-feedback-surface + .support-feedback-surface {
  border-top: 1px solid rgba(186, 198, 220, 0.72);
}

.support-feedback-story,
.support-feedback-portal-block,
.support-feedback-handbook-block {
  display: grid;
  gap: 40px;
}

.support-feedback-story-block h2,
.support-feedback-portal-copy h2,
.support-feedback-handbook-copy h2 {
  margin: 0;
  color: #141922;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.support-feedback-story-block p,
.support-feedback-portal-copy p,
.support-feedback-handbook-copy p,
.support-feedback-handbook-note p {
  margin: 18px 0 0;
  color: #424d61;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.62;
}

.support-feedback-section-kicker {
  margin-bottom: 16px;
  color: #6077a4;
}

.support-feedback-portal-block,
.support-feedback-handbook-block {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.support-feedback-portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.support-feedback-surface .support-link-btn {
  border-color: rgba(157, 181, 218, 0.72);
  background: rgba(255, 255, 255, 0.72);
  color: #23354b;
}

.support-feedback-surface .support-link-btn:hover {
  background: rgba(255, 255, 255, 0.92);
}

.support-feedback-portal-frame {
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(196, 211, 234, 0.6);
  background:
    radial-gradient(520px 220px at 18% 8%, rgba(96, 165, 250, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(239, 243, 249, 0.98), rgba(227, 235, 245, 0.98));
  box-shadow: 0 24px 80px rgba(4, 9, 20, 0.22);
  padding: 24px;
}

.support-feedback-portal-screen {
  min-height: 100%;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(157, 181, 218, 0.55);
  background: rgba(252, 254, 255, 0.92);
}

.support-feedback-screen-head strong,
.support-feedback-screen-entry strong,
.support-feedback-handbook-note h3 {
  display: block;
  margin: 0;
  color: #141922;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.support-feedback-screen-head span {
  display: block;
  margin-top: 8px;
  color: #60708b;
  font-size: 15px;
}

.support-feedback-screen-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.support-feedback-screen-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 25, 34, 0.06);
  color: #304053;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-feedback-screen-entry {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(182, 195, 219, 0.6);
  background: rgba(244, 247, 252, 0.98);
}

.support-feedback-screen-score {
  display: grid;
  place-items: center;
  min-height: 70px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(29, 54, 97, 0.96), rgba(15, 28, 52, 0.98));
  color: #eef4ff;
}

.support-feedback-screen-entry p {
  margin: 8px 0 0;
  color: #4e5a6d;
  font-size: 15px;
  line-height: 1.55;
}

.support-feedback-handbook-note {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(191, 205, 228, 0.58);
  background: rgba(255, 255, 255, 0.78);
}

.support-feedback-handbook-copy .btn {
  margin-top: 24px;
}

.portal-feedback-page {
  background: linear-gradient(180deg, #eef3f9 0%, #f7f9fc 100%);
  color: #141922;
}

.portal-feedback-page .support-link-btn {
  border-color: rgba(157, 181, 218, 0.78);
  background: rgba(255, 255, 255, 0.74);
  color: #23354b;
}

.portal-feedback-page .support-link-btn:hover {
  background: rgba(255, 255, 255, 0.94);
}

.portal-feedback-page .wrap {
  max-width: 1480px;
}

.portal-feedback-toolbar {
  position: sticky;
  top: 0;
  z-index: 15;
  padding: 14px 0;
  background: rgba(245, 248, 252, 0.94);
  border-bottom: 1px solid rgba(184, 197, 220, 0.68);
  backdrop-filter: blur(12px);
}

.portal-feedback-toolbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.portal-feedback-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #617188;
  font-size: 14px;
  font-weight: 700;
}

.portal-feedback-breadcrumbs a {
  color: #4f6178;
  text-decoration: none;
}

.portal-feedback-breadcrumbs a:hover {
  color: #27384d;
}

.portal-feedback-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-feedback-shell {
  padding: 26px 0 48px;
}

.portal-feedback-layout,
.portal-feedback-detail-layout {
  display: grid;
  gap: 22px;
}

.portal-feedback-layout {
  grid-template-columns: 260px minmax(0, 1fr);
}

.portal-feedback-detail-layout {
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: start;
}

.portal-feedback-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 88px;
}

.portal-feedback-side-card,
.portal-feedback-panel,
.portal-feedback-detail-card,
.portal-feedback-vote-card {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(178, 191, 214, 0.55);
  box-shadow: 0 18px 40px rgba(34, 47, 72, 0.08);
}

.portal-feedback-side-kicker {
  margin: 0 0 14px;
  color: #121a27;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-feedback-side-nav {
  display: grid;
  gap: 10px;
}

.portal-feedback-side-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(19, 25, 34, 0.05);
  color: #314054;
  border: 1px solid rgba(175, 188, 212, 0.42);
}

.portal-feedback-side-nav a.is-active,
.portal-feedback-side-nav a:hover {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.3);
  color: #122132;
}

.portal-feedback-side-card p:last-of-type {
  color: #4f596c;
  font-size: var(--type-body-default);
  line-height: 1.6;
}

.portal-feedback-module-radar {
  display: grid;
  gap: 12px;
}

.portal-feedback-module-radar div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(19, 25, 34, 0.04);
  border: 1px solid rgba(175, 188, 212, 0.34);
}

.portal-feedback-module-radar strong {
  color: #182233;
  font-size: 15px;
  line-height: 1.2;
}

.portal-feedback-module-radar span {
  color: #5b6c84;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.portal-feedback-main {
  display: grid;
  gap: 20px;
}

.portal-feedback-header h1,
.portal-feedback-detail-card h1,
.portal-feedback-handbook-hero h1 {
  margin: 10px 0 0;
  color: #141922;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.portal-feedback-header p,
.portal-feedback-detail-lead {
  margin: 16px 0 0;
  color: #4c596d;
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
}

.portal-feedback-panel-top {
  display: grid;
  gap: 16px;
}

.portal-feedback-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(244, 247, 252, 0.98), rgba(236, 242, 249, 0.98));
  border: 1px solid rgba(180, 193, 217, 0.64);
}

.portal-feedback-compose span {
  color: #3e4e65;
  font-size: 16px;
  font-weight: 700;
}

.portal-feedback-searchbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(19, 25, 34, 0.96);
  border: 1px solid rgba(127, 160, 214, 0.18);
}

.portal-feedback-searchbar span {
  color: #9eb3d6;
  font-size: 15px;
  font-weight: 700;
}

.portal-feedback-searchbar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
  color: #0f1826;
  font-size: 15px;
  line-height: 1;
}

.portal-feedback-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portal-feedback-snapshot-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(245, 248, 252, 0.98);
  border: 1px solid rgba(182, 195, 219, 0.64);
}

.portal-feedback-snapshot-card strong {
  display: block;
  color: #141922;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.portal-feedback-snapshot-card span {
  display: block;
  margin-top: 8px;
  color: #596b84;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portal-feedback-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-feedback-filters span,
.portal-feedback-list-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 25, 34, 0.06);
  color: #304053;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portal-feedback-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portal-feedback-panel-footer {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.portal-feedback-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-feedback-status-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31, 43, 66, 0.06);
  border: 1px solid rgba(180, 192, 214, 0.56);
  color: #405066;
  font-size: 14px;
  font-weight: 700;
}

.portal-feedback-panel .portal-feedback-compose {
  margin-top: 0;
}

.portal-feedback-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.portal-feedback-list-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(182, 195, 219, 0.6);
  background: rgba(244, 247, 252, 0.98);
}

.portal-feedback-list-body h2 {
  margin: 10px 0 0;
  color: #141922;
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1.22;
}

.portal-feedback-list-body h2 a {
  color: inherit;
  text-decoration: none;
}

.portal-feedback-list-body h2 a:hover {
  color: #1857ad;
}

.portal-feedback-list-body p,
.portal-feedback-detail-section p,
.portal-feedback-detail-section ul,
.portal-feedback-comment p {
  margin: 10px 0 0;
  color: #4e5a6d;
  font-size: 16px;
  line-height: 1.6;
}

.portal-feedback-list-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portal-feedback-list-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portal-feedback-list-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 43, 66, 0.06);
  color: #52637b;
  font-size: 12px;
  font-weight: 700;
}

.portal-feedback-list-users {
  display: flex;
  align-items: center;
}

.portal-feedback-list-users span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -6px;
  border-radius: 999px;
  border: 2px solid rgba(244, 247, 252, 0.98);
  background: linear-gradient(135deg, #5678a8, #2b466c);
  color: #edf3ff;
  font-size: 11px;
  font-weight: 800;
}

.portal-feedback-list-users span:first-child {
  margin-left: 0;
}

.portal-feedback-vote-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  align-self: start;
  position: sticky;
  top: 88px;
}

.portal-feedback-vote-card p {
  margin: 0;
  color: #5f708c;
  font-size: 14px;
  text-align: center;
}

.portal-feedback-detail-card {
  display: grid;
  gap: 22px;
}

.portal-feedback-form-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}

.portal-feedback-form-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(178, 191, 214, 0.55);
  box-shadow: 0 18px 40px rgba(34, 47, 72, 0.08);
}

.portal-feedback-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.portal-feedback-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portal-feedback-field {
  display: grid;
  gap: 10px;
}

.portal-feedback-field--wide {
  grid-column: 1 / -1;
}

.portal-feedback-field span {
  color: #1b2536;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.portal-feedback-field input,
.portal-feedback-field select,
.portal-feedback-field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(178, 191, 214, 0.72);
  background: rgba(244, 247, 252, 0.98);
  color: #1d2737;
  font: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.portal-feedback-field input,
.portal-feedback-field select {
  min-height: 70px;
  height: 70px;
}

.portal-feedback-field textarea {
  min-height: 150px;
  resize: vertical;
}

.portal-feedback-field input:focus,
.portal-feedback-field select:focus,
.portal-feedback-field textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.14);
}

.portal-feedback-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 6px;
}

.portal-feedback-form-actions .btn,
.portal-feedback-form-actions .support-link-btn {
  min-height: 70px;
  height: 70px;
  padding: 0 28px;
  font-size: 18px;
  font-weight: 700;
}

.portal-feedback-form-status {
  margin: -2px 0 0;
  min-height: 22px;
  color: #5f708c;
  font-size: 14px;
  font-weight: 700;
}

.portal-feedback-form-status[data-tone="ok"] {
  color: #18724f;
}

.portal-feedback-form-status[data-tone="warn"] {
  color: #b45309;
}

.portal-feedback-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.portal-feedback-item-actions .btn,
.portal-feedback-item-actions .support-link-btn {
  min-height: 48px;
  height: 48px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
}

.portal-feedback-item-actions .btn[data-voted="true"] {
  background: rgba(58, 202, 190, 0.18);
  border-color: rgba(58, 202, 190, 0.36);
  color: #12324c;
}

.portal-feedback-detail-section h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  color: #141922;
}

.portal-feedback-detail-section ul {
  padding-left: 20px;
}

.portal-feedback-comment + .portal-feedback-comment {
  margin-top: 14px;
}

.portal-feedback-comment {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(182, 195, 219, 0.6);
  background: rgba(244, 247, 252, 0.98);
}

.portal-feedback-comment strong {
  color: #141922;
  font-size: 16px;
}

.portal-feedback-handbook-hero {
  background: linear-gradient(180deg, #eef3f9 0%, #f7f9fc 100%);
  padding-bottom: 40px;
}

.portal-feedback-handbook-grid {
  align-items: center;
}

.portal-feedback-handbook-hero .support-page-kicker {
  color: #7ea8ef;
}

.portal-feedback-handbook-hero .support-detail-copy h1 {
  color: #141922;
}

.portal-feedback-handbook-hero .support-detail-copy .support-lead {
  color: #53637d;
}

.portal-feedback-handbook-visual {
  position: relative;
}

.portal-feedback-handbook-photo {
  min-height: 460px;
  border-radius: 40px;
  border: 1px solid rgba(196, 211, 234, 0.6);
  background:
    radial-gradient(520px 240px at 18% 8%, rgba(96, 165, 250, 0.14), transparent 70%),
    radial-gradient(380px 220px at 82% 84%, rgba(45, 212, 191, 0.12), transparent 70%),
    linear-gradient(135deg, rgba(212, 225, 244, 0.95), rgba(194, 209, 230, 0.95));
  box-shadow: 0 24px 80px rgba(4, 9, 20, 0.2);
}

.support-portal-page .support-detail-hero {
  background:
    radial-gradient(960px 360px at 10% -5%, rgba(96, 165, 250, 0.18), transparent 70%),
    linear-gradient(180deg, #06111f 0%, #071425 52%, #071120 100%);
}

.support-portal-hero-grid {
  align-items: center;
}

.support-portal-preview {
  position: relative;
  min-height: 600px;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid rgba(120, 152, 209, 0.28);
  background:
    radial-gradient(320px 260px at 16% 90%, rgba(45, 212, 191, 0.18), transparent 72%),
    radial-gradient(380px 320px at 84% 10%, rgba(96, 165, 250, 0.16), transparent 74%),
    linear-gradient(155deg, rgba(11, 21, 38, 0.96), rgba(11, 24, 48, 0.94));
  box-shadow: 0 28px 80px rgba(3, 8, 18, 0.32);
}

.support-portal-window {
  height: 100%;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid rgba(129, 162, 220, 0.22);
  background: linear-gradient(180deg, rgba(6, 18, 37, 0.94), rgba(8, 20, 39, 0.9));
}

.support-portal-window-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 159, 208, 0.16);
}

.support-portal-window-head strong {
  color: #f3f7ff;
  font-size: 20px;
  line-height: 1.1;
}

.support-portal-window-head span {
  color: #8da6cf;
  font-size: 14px;
  font-weight: 700;
}

.support-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-portal-tile {
  min-height: 144px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(128, 158, 210, 0.18);
}

.support-portal-tile strong {
  display: block;
  color: #f4f7ff;
  font-size: 20px;
  line-height: 1.15;
}

.support-portal-tile p {
  margin: 12px 0 0;
  color: #9eb2d2;
  font-size: 15px;
  line-height: 1.55;
}

.support-portal-tile--accent {
  background:
    radial-gradient(160px 110px at 85% 20%, rgba(96, 165, 250, 0.18), transparent 72%),
    rgba(255, 255, 255, 0.06);
}

.support-portal-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-portal-status {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(125, 156, 211, 0.16);
}

.support-portal-status strong {
  display: block;
  color: #f4f7ff;
  font-size: 28px;
  line-height: 1;
}

.support-portal-status span {
  display: block;
  margin-top: 8px;
  color: #91a7c9;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.support-portal-surface {
  background: #eef3f9;
}

.support-portal-story {
  display: grid;
  gap: 64px;
}

.support-portal-story-block {
  max-width: 980px;
}

.support-portal-story-block h2,
.support-portal-areas-copy h2,
.support-portal-feedback-copy h2,
.support-portal-cta-card h2 {
  margin: 0;
  color: #141922;
  font-size: clamp(32px, 2.7vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.support-portal-story-block p,
.support-portal-areas-copy p,
.support-portal-feedback-copy p,
.support-portal-cta-card p {
  margin: 22px 0 0;
  max-width: 62ch;
  color: #3f4f66;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.72;
}

.support-portal-areas {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.support-portal-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-portal-area-card,
.support-portal-feedback-note {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(181, 195, 221, 0.58);
  box-shadow: 0 18px 42px rgba(30, 41, 60, 0.08);
}

.support-portal-area-card h3,
.support-portal-feedback-note h3 {
  margin: 0;
  color: #141922;
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1.14;
}

.support-portal-area-card p,
.support-portal-feedback-note p {
  margin: 14px 0 0;
  color: #485a74;
  font-size: 16px;
  line-height: 1.65;
}

.support-portal-feedback {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.support-portal-feedback-stack {
  display: grid;
  gap: 18px;
}

.support-portal-feedback-note a {
  color: #1857ad;
  text-decoration: none;
}

.support-portal-feedback-note a:hover {
  text-decoration: underline;
}

.support-portal-cta-section {
  background: #eef3f9;
}

.support-portal-cta-card {
  padding: 0;
}

@media (max-width: 1180px) {
  .support-feedback-portal-block,
  .support-feedback-handbook-block,
  .support-portal-areas,
  .support-portal-feedback,
  .portal-feedback-layout,
  .portal-feedback-detail-layout {
    grid-template-columns: 1fr;
  }

  .portal-feedback-form-layout {
    grid-template-columns: 1fr;
  }

  .portal-feedback-sidebar,
  .portal-feedback-vote-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .support-feedback-preview {
    min-height: 500px;
    padding: 22px;
  }

  .support-feedback-window,
  .support-feedback-portal-screen {
    padding: 18px;
  }

  .support-feedback-story-block h2,
  .support-feedback-portal-copy h2,
  .support-feedback-handbook-copy h2 {
    font-size: clamp(24px, 4.4vw, 34px);
  }

  .portal-feedback-header h1,
  .portal-feedback-detail-card h1,
  .portal-feedback-handbook-hero h1 {
    font-size: clamp(28px, 5vw, 38px);
  }

  .portal-feedback-snapshot {
    grid-template-columns: 1fr;
  }

  .support-portal-story-block h2,
  .support-portal-areas-copy h2,
  .support-portal-feedback-copy h2,
  .support-portal-cta-card h2 {
    font-size: clamp(28px, 4.4vw, 40px);
  }

  .support-portal-story-block p,
  .support-portal-areas-copy p,
  .support-portal-feedback-copy p,
  .support-portal-cta-card p {
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  .support-feedback-preview {
    min-height: 420px;
    border-radius: 30px;
    padding: 16px;
  }

  .support-feedback-window,
  .support-feedback-portal-frame,
  .support-feedback-portal-screen,
  .portal-feedback-side-card,
  .portal-feedback-panel,
  .portal-feedback-detail-card,
  .portal-feedback-vote-card {
    border-radius: 24px;
  }

  .support-feedback-compose,
  .portal-feedback-panel .portal-feedback-compose {
    grid-template-columns: 1fr;
  }

  .support-feedback-idea,
  .support-feedback-screen-entry,
  .portal-feedback-list-item {
    grid-template-columns: 1fr;
  }

  .support-portal-grid,
  .support-portal-status-row,
  .support-portal-area-grid,
  .portal-feedback-form-grid,
  .portal-feedback-panel-footer {
    grid-template-columns: 1fr;
  }

  .portal-feedback-compose,
  .portal-feedback-searchbar {
    grid-template-columns: 1fr;
  }

  .portal-feedback-toolbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-feedback-toolbar-actions {
    width: 100%;
  }

  .portal-feedback-toolbar-actions .btn {
    width: 100%;
  }

  .portal-feedback-shell {
    padding-top: 18px;
  }

  .portal-feedback-form-card {
    padding: 22px;
  }

  .portal-feedback-form-actions,
  .portal-feedback-panel-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .portal-feedback-list-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-feedback-status-strip {
    display: grid;
  }
}

.support-faq-page .support-faq-hero-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 166, 222, 0.18);
  color: #9eb3d6;
  font-size: 13px;
  font-weight: 600;
}

.support-faq-page .support-faq-hero-quicklist {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.support-faq-page .support-faq-quickitem {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(125, 158, 219, 0.16);
}

.support-faq-page .support-faq-quickitem img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.support-faq-page .support-faq-quickitem strong {
  display: block;
  color: #eef4ff;
  font-size: 18px;
  line-height: 1.2;
}

.support-faq-page .support-faq-quickitem span {
  display: block;
  margin-top: 4px;
  color: #9eb0cf;
  font-size: 13px;
  line-height: 1.45;
}

.support-faq-product-overview {
  padding-top: 20px;
}

.support-faq-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-faq-product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(178, 191, 214, 0.55);
  box-shadow: 0 18px 40px rgba(34, 47, 72, 0.08);
  color: #141922;
}

.support-faq-product-card img {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
}

.support-faq-product-card h3 {
  margin: 0;
  font-size: var(--type-card-title-md);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.support-faq-product-card p {
  margin: 12px 0 0;
  color: #4f596c;
  font-size: var(--type-body-default);
  line-height: 1.55;
}

.support-faq-product-card .btn {
  margin-top: auto;
}

.support-faq-products-main {
  padding-top: 32px;
}

.support-overview-header--dark h2 {
  color: #eef4ff;
}

.support-overview-header--dark p {
  color: #b7c6e1;
}

.support-faq-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-faq-product-section {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(178, 191, 214, 0.55);
  box-shadow: 0 18px 40px rgba(34, 47, 72, 0.08);
  color: #141922;
  scroll-margin-top: 120px;
}

.support-faq-product-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.support-faq-product-head img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
}

.support-faq-product-head h3 {
  margin: 0;
  font-size: var(--type-card-title-md);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.support-faq-product-head p {
  margin: 10px 0 0;
  color: #4f596c;
  font-size: var(--type-body-default);
  line-height: 1.55;
}

.support-faq-product-section .support-faq-list {
  gap: 12px;
}

.support-faq-product-section .support-faq-item {
  background: rgba(255, 255, 255, 0.74);
}

.support-faq-product-section .support-faq-item summary {
  font-size: 17px;
}

.support-faq-knowledge-band {
  margin-top: 30px;
}

@media (max-width: 1180px) {
  .support-faq-product-grid,
  .support-faq-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .support-faq-product-grid,
  .support-faq-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .support-faq-page .support-faq-hero-panel {
    min-height: 420px;
  }

  .support-faq-product-card,
  .support-faq-product-section {
    padding: 20px;
    border-radius: 24px;
  }

  .support-faq-product-head h3,
  .support-faq-product-card h3 {
    font-size: 22px;
  }

  .support-faq-product-head p,
  .support-faq-product-card p {
    font-size: var(--type-body-compact);
  }

  .support-faq-product-section .support-faq-item summary {
    font-size: 16px;
  }
}

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

.support-faq-image-aside {
  align-self: stretch;
}

.support-faq-hero-figure {
  margin: 0;
  height: 100%;
  min-height: 520px;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(131, 177, 255, 0.26);
  box-shadow: 0 24px 80px rgba(1, 6, 16, 0.54);
  background: linear-gradient(160deg, rgba(15, 24, 42, 0.98), rgba(7, 14, 26, 0.98));
}

.support-faq-hero-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.faq-help-hero {
  padding-bottom: 18px;
}

.faq-help-hero-bar {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.faq-help-hero-copy {
  max-width: 760px;
}

.faq-help-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-help-title-row img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.faq-help-title-row h1 {
  margin: 0;
}

.faq-help-hero-tools {
  display: grid;
  gap: 16px;
  min-width: min(100%, 420px);
}

.faq-help-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(120, 155, 219, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.faq-help-search input,
.faq-help-search button {
  margin-top: 0;
}

.faq-help-search input {
  width: 100%;
  min-width: 0;
  min-height: 70px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background: rgba(9, 15, 28, 0.88);
  color: #eef4ff;
  font: inherit;
  box-sizing: border-box;
}

.faq-help-search input::placeholder {
  color: #99adce;
}

.faq-help-search button {
  min-height: 70px;
  padding: 0 26px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.95), rgba(96, 165, 250, 0.92));
  color: #05111d;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.faq-help-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-help-shell {
  padding-top: 12px;
}

.faq-help-frame {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(243, 246, 251, 0.99), rgba(234, 239, 247, 0.98));
  color: #131924;
  box-shadow: 0 24px 80px rgba(2, 7, 18, 0.28);
}

.faq-help-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 102px;
}

.faq-help-sidebar-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(178, 191, 214, 0.55);
  box-shadow: 0 18px 40px rgba(34, 47, 72, 0.08);
}

.faq-help-sidebar-title {
  margin: 0 0 14px;
  color: #121a27;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-help-sidebar-nav {
  display: grid;
  gap: 10px;
}

.faq-help-sidebar-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(19, 25, 34, 0.05);
  color: #314054;
  border: 1px solid rgba(175, 188, 212, 0.42);
  transition: 0.16s ease;
}

.faq-help-sidebar-nav a strong,
.faq-help-sidebar-nav a span {
  display: block;
}

.faq-help-sidebar-nav a strong {
  font-size: 17px;
  line-height: 1.25;
}

.faq-help-sidebar-nav a span {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #5c697d;
}

.faq-help-sidebar-nav a:hover,
.faq-help-sidebar-nav a.is-active {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.3);
  color: #122132;
}

.faq-help-sidebar-note p {
  margin: 0;
  color: #4f596c;
  font-size: var(--type-body-default);
  line-height: 1.6;
}

.faq-help-sidebar-note .btn {
  margin-top: 18px;
}

.faq-help-content {
  display: grid;
  gap: 18px;
}

.faq-help-content-intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  color: #141922;
}

.faq-help-content-intro h2 {
  margin: 0;
  font-size: var(--type-section-h2);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.faq-help-content-intro p {
  margin: 0;
  max-width: 44ch;
  color: #4f596c;
  font-size: var(--type-body-lead);
  line-height: 1.55;
}

.faq-help-section {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(178, 191, 214, 0.55);
  box-shadow: 0 18px 40px rgba(34, 47, 72, 0.08);
  scroll-margin-top: 110px;
}

.faq-help-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 16px;
}

.faq-help-section-head h2 {
  margin: 0;
  color: #141922;
  font-size: var(--type-card-title-md);
  line-height: 1.18;
}

.faq-help-section-head p {
  margin: 0;
  max-width: 44ch;
  color: #4f596c;
  font-size: var(--type-body-default);
  line-height: 1.55;
}

.faq-help-entry-list {
  display: grid;
  gap: 14px;
}

.faq-help-entry {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(244, 247, 252, 0.98);
  border: 1px solid rgba(182, 195, 219, 0.6);
}

.faq-help-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.faq-help-entry-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(19, 25, 34, 0.06);
  color: #304053;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.faq-help-entry h3 {
  margin: 0;
  color: #141922;
  font-size: 28px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.faq-help-entry h3 a {
  color: inherit;
  text-decoration: none;
}

.faq-help-entry h3 a:hover {
  color: #1857ad;
}

.faq-help-entry p {
  margin: 14px 0 0;
  color: #4a5568;
  font-size: var(--type-body-default);
  line-height: 1.68;
  max-width: 70ch;
}

.faq-help-cta {
  margin-top: 6px;
}

/* FAQ module overview pages: align visual style with article subpages */
.faq-help-page {
  background: linear-gradient(180deg, #eef3f9 0%, #f7f9fc 100%);
}

.faq-help-page .wrap {
  max-width: 1480px;
}

.faq-help-page .faq-help-hero {
  padding-top: 20px;
  padding-bottom: 10px;
}

.faq-help-page .faq-help-hero-copy {
  color: #2c394d;
}

.faq-help-page .support-page-kicker {
  color: #5f7390;
}

.faq-help-page .faq-help-title-row h1 {
  color: #141c2a;
}

.faq-help-page .support-detail-copy .support-lead {
  color: #4d5a70;
}

.faq-help-page .faq-help-hero-tools {
  min-width: min(100%, 420px);
  gap: 12px;
}

.faq-help-page .faq-help-search {
  padding: 8px;
  gap: 12px;
}

.faq-help-page .faq-help-search input,
.faq-help-page .faq-help-search button {
  min-height: 56px;
  height: 56px;
}

.faq-help-page .faq-help-search input {
  padding: 0 20px;
}

.faq-help-page .faq-help-search button {
  min-width: 180px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-help-page .faq-help-hero-actions {
  gap: 10px;
}

.faq-help-page .faq-help-hero-actions .btn,
.faq-help-page .faq-help-hero-actions .support-link-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 16px;
}

.faq-help-page .faq-help-shell {
  padding-top: 0;
  padding-bottom: 12px;
}

.faq-help-page .faq-help-frame {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-help-page .faq-help-sidebar-card {
  background: rgba(255, 255, 255, 0.94);
}

.faq-help-page .faq-help-content {
  gap: 16px;
}

.faq-help-page .faq-help-content-intro {
  padding-top: 2px;
}

.faq-help-page .faq-help-content-intro h2 {
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.16;
}

.faq-help-page .faq-help-content-intro p {
  display: none;
}

.faq-help-page .faq-help-section {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-help-page .faq-help-section + .faq-help-section {
  margin-top: 12px;
}

.faq-help-page .faq-help-section-head {
  align-items: start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184, 197, 220, 0.68);
}

.faq-help-page .faq-help-section-head h2 {
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.faq-help-page .faq-help-section-head p {
  display: none;
}

.faq-help-page .faq-help-entry-list {
  gap: 0;
}

.faq-help-page .faq-help-entry {
  padding: 12px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.faq-help-page .faq-help-entry + .faq-help-entry {
  border-top: 1px solid rgba(184, 197, 220, 0.68);
}

.faq-help-page .faq-help-entry-meta {
  display: none;
}

.faq-help-page .faq-help-entry h3 {
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.2;
  margin: 0;
}

.faq-help-page .faq-help-entry h3 a {
  color: #144ea0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.faq-help-page .faq-help-entry h3 a:hover {
  color: #0f3f83;
}

.faq-help-page .faq-help-entry p {
  margin: 8px 0 0;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.55;
  max-width: 90ch;
}

.faq-help-page .faq-help-cta {
  margin-top: 14px;
}

.faq-help-page .footer.footer-rich {
  margin-top: 48px;
}

.faq-article-hero {
  padding-top: 20px;
  padding-bottom: 8px;
}

.faq-article-hero-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.faq-article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #617188;
  font-size: 14px;
  font-weight: 700;
}

.faq-article-breadcrumbs a {
  color: #4f6178;
  text-decoration: none;
}

.faq-article-breadcrumbs a:hover {
  color: #27384d;
}

.faq-article-search {
  min-width: min(100%, 420px);
}

.faq-help-search.faq-article-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 12px;
  padding: 8px;
}

.faq-help-search.faq-article-search input,
.faq-help-search.faq-article-search button {
  height: 56px;
  min-height: 56px;
}

.faq-help-search.faq-article-search input {
  padding: 0 20px;
}

.faq-help-search.faq-article-search button {
  min-width: 190px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-article-shell {
  padding-top: 0;
  padding-bottom: 12px;
}

.faq-article-frame {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 230px;
  gap: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #131924;
  box-shadow: none;
  align-items: start;
}

.faq-article-side {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 102px;
}

.faq-article-main {
  padding: 2px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  align-self: start;
}

.faq-article-header {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(184, 197, 220, 0.68);
}

.faq-article-title-wrap {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.faq-article-title-wrap img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

.faq-article-product {
  margin: 0 0 8px;
  color: #59708d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-article-header h1 {
  margin: 0;
  color: #141922;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: none;
  text-wrap: pretty;
}

.faq-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.faq-article-meta span,
.faq-article-categories span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 25, 34, 0.06);
  color: #304053;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-article-body {
  display: block;
  padding-top: 10px;
}

.faq-article-intro {
  margin: 0;
  color: #344155;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  max-width: none;
  text-wrap: pretty;
}

.faq-article-section {
  margin-top: 22px;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-article-section + .faq-article-section {
  margin-top: 24px;
}

.faq-article-section h2 {
  margin: 0 0 8px;
  color: #141922;
  font-size: 22px;
  line-height: 1.18;
}

.faq-article-section p {
  margin: 0;
  color: #415065;
  font-size: var(--type-body-default);
  line-height: 1.66;
}

.faq-article-steps,
.faq-article-notes {
  margin: 0;
  padding-left: 24px;
  color: #415065;
  font-size: var(--type-body-default);
  line-height: 1.66;
}

.faq-article-steps li + li,
.faq-article-notes li + li {
  margin-top: 8px;
}

.faq-article-steps strong {
  color: #141922;
}

.faq-article-related {
  display: grid;
  gap: 12px;
}

.faq-article-related a {
  color: #1b5db9;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.45;
}

.faq-article-related a:hover {
  color: #0f488f;
}

.faq-article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-article-cta {
  margin-top: 22px;
}

.faq-article-page {
  background: linear-gradient(180deg, #eef3f9 0%, #f7f9fc 100%);
}

.faq-article-page .wrap {
  max-width: 1480px;
}

.faq-article-page .faq-help-sidebar-card {
  background: rgba(255, 255, 255, 0.94);
}

.faq-article-page .footer.footer-rich {
  margin-top: 48px;
}

.faq-article-page main {
  padding-bottom: 0;
}

@media (max-width: 1180px) {
  .faq-help-hero-bar,
  .faq-help-frame,
  .faq-help-content-intro,
  .faq-help-section-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-help-frame {
    grid-template-columns: 1fr;
  }

  .faq-help-sidebar {
    position: static;
  }

  .faq-article-hero-bar,
  .faq-article-frame {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-article-frame {
    grid-template-columns: 1fr;
  }

  .faq-article-side {
    position: static;
  }

  .faq-article-main {
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  .support-faq-hero-figure {
    min-height: 380px;
  }

  .faq-help-title-row img {
    width: 52px;
    height: 52px;
  }

  .faq-help-entry h3 {
    font-size: 24px;
  }

  .faq-help-page .faq-help-entry h3 {
    font-size: clamp(17px, 3.8vw, 22px);
  }

  .faq-article-intro {
    font-size: 18px;
  }

  .faq-article-header h1 {
    font-size: clamp(26px, 5vw, 34px);
    max-width: none;
  }
}

@media (max-width: 720px) {
  .support-faq-hero-figure {
    min-height: 300px;
    border-radius: 30px;
  }

  .faq-help-search {
    grid-template-columns: 1fr;
  }

  .faq-help-page .faq-help-search button {
    min-width: 0;
  }

  .faq-help-page .faq-help-hero-actions .btn,
  .faq-help-page .faq-help-hero-actions .support-link-btn {
    min-height: 44px;
    width: 100%;
  }

  .faq-help-search.faq-article-search {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-help-search.faq-article-search button {
    min-width: 0;
  }

  .faq-help-frame {
    padding: 20px;
    border-radius: 28px;
  }

  .faq-help-page .faq-help-frame {
    padding: 0;
    border-radius: 0;
  }

  .faq-help-sidebar-card,
  .faq-help-section,
  .faq-help-entry {
    border-radius: 24px;
  }

  .faq-help-page .faq-help-sidebar-card,
  .faq-help-page .faq-help-section,
  .faq-help-page .faq-help-entry {
    border-radius: 0;
  }

  .faq-help-section,
  .faq-help-sidebar-card {
    padding: 20px;
  }

  .faq-help-entry {
    padding: 18px 20px;
  }

  .faq-help-entry h3 {
    font-size: 22px;
  }

  .faq-article-frame {
    gap: 18px;
  }

  .faq-article-main {
    padding: 0;
  }

  .faq-article-title-wrap {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .faq-article-title-wrap img {
    width: 52px;
    height: 52px;
  }

  .faq-article-intro {
    font-size: 17px;
  }

  .faq-article-section h2 {
    font-size: 22px;
  }

  .faq-article-section p,
  .faq-article-steps,
  .faq-article-notes {
    font-size: var(--type-body-compact);
  }
}

.pd-price-grid--shared {
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.pd-price-card--shared-main {
  gap: 18px;
}

.pd-shared-pricing-text {
  margin: 0;
  color: #385072;
  font-size: 16px;
  line-height: 1.6;
}

.pd-shared-pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-shared-pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(98, 141, 207, 0.28);
  color: #29456d;
  font-size: 14px;
  font-weight: 700;
}

.pd-shared-pricing-note {
  margin: auto 0 0;
  color: #587095;
  font-size: 13px;
  line-height: 1.45;
}

.pd-shared-pricing-link {
  margin-top: auto;
  color: #1e4f9d;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.pd-shared-pricing-link:hover {
  text-decoration: underline;
}

.pd-shared-pricing-examples {
  display: grid;
  gap: 12px;
}

.pd-shared-example {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(52, 82, 132, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.pd-shared-example h4,
.pd-shared-example p,
.pd-shared-example strong,
.pd-shared-example span {
  margin: 0;
}

.pd-shared-example h4 {
  color: #132948;
  font-size: 18px;
  line-height: 1.2;
}

.pd-shared-example p,
.pd-shared-example span {
  color: #4d658a;
  font-size: 14px;
  line-height: 1.5;
}

.pd-shared-example strong {
  color: #173664;
  font-size: 16px;
  line-height: 1.2;
}

.pd-price-card--shared-loading {
  min-height: 260px;
  justify-content: center;
}

.pricing-page {
  background: #dfe6f0;
  color: #0f203f;
}

.pricing-page main {
  display: block;
}

.pricing-hero {
  padding: 56px 0 42px;
  background:
    radial-gradient(760px 360px at 0% 0%, rgba(75, 133, 228, 0.16), transparent 70%),
    linear-gradient(180deg, #071222 0%, #0a1322 100%);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-hero-copy,
.pricing-hero-side {
  min-width: 0;
}

.pricing-hero-eyebrow,
.pricing-section-kicker,
.pricing-highlight-kicker {
  margin: 0 0 14px;
  color: #7fa9eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-hero h1 {
  margin: 0;
  max-width: 12ch;
  color: #f4f8ff;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pricing-hero-intro {
  margin: 22px 0 0;
  max-width: 820px;
  color: #d3deef;
  font-size: 22px;
  line-height: 1.55;
}

.pricing-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(112, 157, 224, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #edf4ff;
  font-size: 14px;
  font-weight: 700;
}

.pricing-badge-row--light {
  margin-top: 18px;
}

.pricing-badge--light {
  background: rgba(232, 239, 249, 0.72);
  color: #24406d;
}

.pricing-hero-actions,
.pricing-main-actions,
.pricing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pricing-highlight-card,
.pricing-main-card,
.pricing-group-card,
.pricing-ladder-card,
.pricing-usecase-card,
.pricing-info-panel,
.pricing-faq-item,
.pricing-final-card {
  border-radius: 28px;
  border: 1px solid rgba(47, 77, 126, 0.16);
  background: rgba(249, 252, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 34, 63, 0.08);
}

.pricing-highlight-card {
  height: 100%;
  padding: 32px;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(100, 171, 255, 0.14), transparent 72%),
    rgba(10, 18, 34, 0.74);
  border-color: rgba(108, 152, 224, 0.24);
}

.pricing-highlight-card h2,
.pricing-highlight-card p,
.pricing-highlight-card li {
  color: #f2f6ff;
}

.pricing-highlight-card h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-highlight-card p {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.pricing-highlight-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-highlight-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.pricing-highlight-card li::before {
  content: "✓";
  color: #63c7ef;
  font-weight: 800;
}

.pricing-section {
  padding: 54px 0;
}

.pricing-section-light {
  background: #dfe6f0;
}

.pricing-section-dark {
  background:
    radial-gradient(720px 300px at 100% 0%, rgba(69, 109, 181, 0.18), transparent 66%),
    linear-gradient(180deg, #08121f 0%, #0a1421 100%);
}

.pricing-section-dark .pricing-section-head h2,
.pricing-section-dark .pricing-section-head p,
.pricing-section-dark .pricing-group-card h3,
.pricing-section-dark .pricing-group-card p,
.pricing-section-dark .pricing-module-item strong,
.pricing-section-dark .pricing-module-item span,
.pricing-section-dark .pricing-module-item em {
  color: #edf4ff;
}

.pricing-section-head {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.pricing-section-head--compact {
  max-width: 860px;
}

.pricing-section-head h2 {
  margin: 0;
  color: #0f203f;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pricing-section-head p {
  margin: 18px 0 0;
  color: #425b7e;
  font-size: 20px;
  line-height: 1.6;
}

.pricing-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.85fr);
  gap: 22px;
}

.pricing-main-card {
  padding: 28px;
}

.pricing-main-card--featured {
  background:
    radial-gradient(620px 260px at 0% 0%, rgba(93, 160, 246, 0.12), transparent 70%),
    rgba(249, 252, 255, 0.94);
}

.pricing-main-card h2,
.pricing-main-card h3 {
  margin: 0;
  color: #102243;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pricing-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.pricing-price-line strong {
  color: #0e203d;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-price-line span,
.pricing-main-summary,
.pricing-note-box span,
.pricing-group-description,
.pricing-module-item span,
.pricing-usecase-card p,
.pricing-info-panel p,
.pricing-faq-item p,
.pricing-final-card p,
.pricing-optional-card p {
  color: #445d80;
  font-size: 17px;
  line-height: 1.65;
}

.pricing-main-summary {
  margin: 18px 0 0;
}

.pricing-main-list,
.pricing-info-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-main-list li,
.pricing-info-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #203b61;
  font-size: 16px;
  line-height: 1.55;
}

.pricing-main-list li::before,
.pricing-info-list li::before {
  content: "✓";
  color: #2b73d3;
  font-weight: 800;
}

.pricing-note-box {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(234, 241, 251, 0.86);
  border: 1px solid rgba(61, 96, 155, 0.16);
}

.pricing-note-box strong {
  color: #173664;
  font-size: 18px;
  line-height: 1.35;
}

.pricing-module-groups,
.pricing-usecases,
.pricing-faq-list {
  display: grid;
  gap: 18px;
}

.pricing-group-card {
  padding: 24px;
  background:
    radial-gradient(520px 200px at 100% 0%, rgba(86, 136, 218, 0.12), transparent 72%),
    rgba(255, 255, 255, 0.05);
}

.pricing-group-card h3,
.pricing-info-panel h2,
.pricing-faq-item h3,
.pricing-usecase-head h3,
.pricing-optional-card h3,
.pricing-final-card h2 {
  margin: 0;
  color: #0f203f;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.pricing-module-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pricing-module-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(108, 151, 220, 0.22);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.pricing-module-item strong,
.pricing-usecase-head span,
.pricing-optional-card strong {
  color: #163663;
  font-size: 18px;
  line-height: 1.3;
}

.pricing-module-item em {
  color: #89c7ff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.pricing-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.pricing-ladder-card {
  padding: 22px 18px;
}

.pricing-ladder-card.is-highlight {
  background:
    radial-gradient(380px 180px at 100% 0%, rgba(93, 160, 246, 0.14), transparent 72%),
    rgba(249, 252, 255, 0.96);
  border-color: rgba(71, 112, 183, 0.24);
}

.pricing-ladder-modules {
  margin: 0;
  color: #5a73a1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-ladder-card h3 {
  margin: 12px 0 10px;
  color: #0f203f;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-ladder-card strong {
  display: block;
  color: #163663;
  font-size: 18px;
  line-height: 1.3;
}

.pricing-ladder-card p {
  margin: 10px 0 0;
  color: #48607f;
  font-size: 15px;
  line-height: 1.55;
}

.pricing-usecases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-usecase-card {
  padding: 24px;
}

.pricing-usecase-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.pricing-usecase-modules {
  margin: 16px 0 0;
  color: #224269;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-info-panel {
  padding: 28px;
}

.pricing-optional-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.pricing-optional-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(232, 239, 249, 0.74);
  border: 1px solid rgba(66, 104, 167, 0.14);
}

.pricing-info-note {
  margin: 18px 0 0;
}

.pricing-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-faq-item {
  padding: 24px;
}

.pricing-faq-item p {
  margin: 14px 0 0;
}

.pricing-final-section {
  padding-top: 0;
  padding-bottom: 58px;
}

.pricing-final-card {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

@media (max-width: 1180px) {
  .pd-price-grid--shared,
  .pricing-main-grid,
  .pricing-usecases,
  .pricing-faq-list,
  .pricing-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-hero-grid,
  .pricing-final-card {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .pricing-ladder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pd-price-grid--shared,
  .pricing-main-grid,
  .pricing-usecases,
  .pricing-faq-list,
  .pricing-included-grid,
  .pricing-ladder {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    padding-top: 42px;
  }

  .pricing-hero h1 {
    max-width: none;
  }

  .pricing-hero-intro {
    font-size: 19px;
  }
}

@media (max-width: 720px) {
  .pricing-section,
  .pricing-final-section {
    padding: 42px 0;
  }

  .pricing-highlight-card,
  .pricing-main-card,
  .pricing-group-card,
  .pricing-usecase-card,
  .pricing-info-panel,
  .pricing-faq-item,
  .pricing-final-card {
    border-radius: 22px;
    padding: 22px;
  }

  .pricing-main-actions .btn,
  .pricing-hero-actions .btn,
  .pricing-final-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.pd-price-grid--shop-configurator {
  display: block;
}

.pd-shop-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.pd-shop-pricing-main,
.pd-shop-pricing-side {
  display: grid;
  gap: 18px;
}

.pd-shop-pricing-block,
.pd-shop-invoice-card,
.pd-shop-cap-card {
  border-radius: 24px;
  border: 1px solid rgba(52, 82, 132, 0.18);
  background:
    radial-gradient(380px 180px at 100% 0%, rgba(96, 165, 250, 0.08), transparent 72%),
    linear-gradient(180deg, #f7faff 0%, #edf3fc 100%);
  box-shadow: 0 12px 30px rgba(18, 35, 63, 0.08);
}

.pd-shop-pricing-block {
  padding: 22px;
}

.pd-shop-pricing-headline {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.pd-shop-pricing-headline h3,
.pd-shop-invoice-card h3,
.pd-shop-cap-card h3 {
  margin: 0;
  color: #11284d;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pd-shop-pricing-headline p,
.pd-shop-cap-card p {
  margin: 0;
  color: #445d80;
  font-size: 17px;
  line-height: 1.6;
}

.pd-shop-package-list,
.pd-shop-extra-grid {
  display: grid;
  gap: 14px;
}

.pd-shop-package-card,
.pd-shop-extra-chip {
  width: 100%;
  border: 1px solid rgba(60, 95, 151, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: #163663;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.pd-shop-package-card:hover,
.pd-shop-extra-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(61, 113, 197, 0.38);
}

.pd-shop-package-card.active,
.pd-shop-extra-chip.active {
  border-color: rgba(61, 113, 197, 0.56);
  box-shadow: 0 10px 24px rgba(36, 76, 139, 0.14);
}

.pd-shop-package-card {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  text-align: left;
}

.pd-shop-package-card--single {
  cursor: default;
}

.pd-shop-package-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.pd-shop-package-top strong,
.pd-shop-package-top span,
.pd-shop-extra-chip strong,
.pd-shop-invoice-row strong,
.pd-shop-invoice-total strong {
  color: #11284d;
}

.pd-shop-package-top strong {
  font-size: 20px;
  line-height: 1.2;
}

.pd-shop-package-top span {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.pd-shop-package-card p {
  margin: 0;
  color: #4c6488;
  font-size: 15px;
  line-height: 1.55;
}

.pd-shop-package-modules,
.pd-shop-invoice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-shop-package-modules span,
.pd-shop-invoice-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(224, 233, 245, 0.95);
  color: #2a476f;
  font-size: 13px;
  font-weight: 700;
}

.pd-shop-extra-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pd-shop-extra-chip {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  text-align: left;
}

.pd-shop-extra-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pd-shop-extra-check {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(60, 95, 151, 0.24);
  background: rgba(240, 245, 252, 0.92);
  margin-top: 2px;
}

.pd-shop-extra-chip.active .pd-shop-extra-check {
  border-color: rgba(61, 113, 197, 0.64);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.92), rgba(96, 165, 250, 0.88));
}

.pd-shop-extra-chip.active .pd-shop-extra-check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 12px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(40deg);
}

.pd-shop-extra-copy {
  display: grid;
  gap: 4px;
}

.pd-shop-extra-chip strong {
  font-size: 16px;
  line-height: 1.2;
}

.pd-shop-extra-chip span,
.pd-shop-invoice-row span,
.pd-shop-invoice-total p,
.pd-shop-invoice-total small {
  color: #5c7397;
}

.pd-shop-extra-chip span {
  font-size: 13px;
  line-height: 1.4;
}

.pd-shop-invoice-card,
.pd-shop-cap-card {
  padding: 22px;
}

.pd-shop-invoice-rows {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.pd-shop-invoice-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.pd-shop-invoice-row span,
.pd-shop-invoice-row strong {
  font-size: 16px;
  line-height: 1.4;
}

.pd-shop-invoice-row--cap {
  padding-top: 4px;
  border-top: 1px dashed rgba(62, 95, 145, 0.16);
}

.pd-shop-invoice-row--cap strong {
  color: #1f55a6;
}

.pd-shop-invoice-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(62, 95, 145, 0.14);
}

.pd-shop-invoice-total p,
.pd-shop-invoice-total small {
  margin: 0;
}

.pd-shop-invoice-total strong {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pd-shop-invoice-note {
  margin: 14px 0 0;
  color: #5a7196;
  font-size: 13px;
  line-height: 1.45;
}

.pd-shop-invoice-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pd-shop-cap-card {
  display: grid;
  gap: 10px;
}

@media (max-width: 1100px) {
  .pd-shop-pricing-layout {
    grid-template-columns: 1fr;
  }
}

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

  .pd-shop-package-top,
  .pd-shop-invoice-row,
  .pd-shop-invoice-total {
    flex-direction: column;
    align-items: start;
  }

  .pd-shop-pricing-block,
  .pd-shop-invoice-card,
  .pd-shop-cap-card {
    padding: 18px;
    border-radius: 20px;
  }
}

.booking-page {
  background: #edf4ff;
  color: #10223f;
}

.booking-page .topbar {
  background: rgba(8, 12, 19, 0.96);
}

.booking-hero {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.14), transparent 38%),
    linear-gradient(180deg, #08111e 0%, #0f1d34 100%);
  padding: 88px 0 54px;
  color: #f8fbff;
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 24px;
  align-items: start;
}

.booking-hero h1 {
  margin: 0 0 18px;
  color: #f8fbff;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.booking-lead {
  margin: 0;
  max-width: 62ch;
  color: rgba(236, 245, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.booking-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.booking-hero-points span {
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(9, 18, 35, 0.42);
  padding: 10px 14px;
  color: #dcecff;
  font-size: 14px;
  font-weight: 600;
}

.booking-contact-card,
.booking-card {
  border-radius: 24px;
  border: 1px solid rgba(25, 52, 96, 0.14);
  background: rgba(248, 251, 255, 0.96);
  box-shadow: 0 24px 60px rgba(7, 15, 28, 0.12);
}

.booking-contact-card {
  padding: 22px;
  color: #17315f;
}

.booking-contact-card h2 {
  margin: 0 0 12px;
  color: #10223f;
  font-size: 26px;
  line-height: 1.08;
}

.booking-contact-card p,
.booking-contact-card li {
  color: #31486f;
}

.booking-main {
  padding: 22px 0 96px;
}

.booking-layout {
  display: grid;
  gap: 22px;
}

.booking-card {
  padding: 24px;
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.booking-card-header h2 {
  margin: 0;
  color: #10223f;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.booking-form-card .booking-card-header h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.booking-inline-note {
  margin: 0;
  color: #5b7195;
  font-size: 14px;
  line-height: 1.5;
}

.booking-config-grid,
.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form-grid label:last-child {
  grid-column: 1 / -1;
}

.booking-page label {
  display: grid;
  gap: 6px;
  color: #183055;
  font-size: 14px;
  font-weight: 700;
}

.booking-page input,
.booking-page textarea,
.booking-page select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(20, 46, 86, 0.16);
  background: #ffffff;
  color: #10223f;
  font: inherit;
  padding: 12px 14px;
}

.booking-page textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-consent-block {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 46, 86, 0.12);
}

.booking-consent-note {
  margin: 0;
  color: #4e668d;
  font-size: 14px;
  line-height: 1.6;
}

.booking-consent-note a,
.booking-consent-check a {
  color: #1d4ed8;
}

.booking-page .booking-consent-check {
  align-items: start;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  font-weight: 500;
}

.booking-page .booking-consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.booking-page .booking-consent-check span {
  color: #183055;
  font-size: 14px;
  line-height: 1.6;
}

.booking-page input:focus,
.booking-page textarea:focus,
.booking-page select:focus {
  outline: 2px solid rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 12px;
}

.booking-date-chip,
.booking-slot-btn {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(21, 44, 81, 0.16);
  background: #f8fbff;
  color: #17315f;
  text-align: left;
  padding: 14px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.booking-date-chip:hover,
.booking-slot-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.08);
}

.booking-date-chip strong,
.booking-slot-btn strong {
  display: block;
  margin-bottom: 4px;
  color: #10223f;
  font-size: 16px;
  line-height: 1.15;
}

.booking-date-chip span,
.booking-slot-btn span {
  color: #5c7499;
  font-size: 13px;
  line-height: 1.4;
}

.booking-date-chip.is-active,
.booking-slot-btn.is-active {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(180deg, rgba(239, 255, 246, 0.96), rgba(229, 246, 255, 0.96));
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.12);
}

.booking-slot-panel {
  margin-top: 22px;
  border-radius: 20px;
  border: 1px solid rgba(21, 44, 81, 0.12);
  background: rgba(240, 247, 255, 0.84);
  padding: 18px;
}

.booking-slot-panel-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  margin-bottom: 14px;
}

.booking-slot-panel-head h3 {
  margin: 0;
  color: #10223f;
  font-size: 24px;
  line-height: 1.08;
}

.booking-slot-panel-head p,
.booking-selection-card p,
.booking-empty-state {
  margin: 0;
  color: #5c7499;
  font-size: 15px;
  line-height: 1.5;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.booking-selection-card {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(45, 212, 191, 0.32);
  background: linear-gradient(135deg, rgba(216, 253, 245, 0.94), rgba(232, 245, 255, 0.94));
  padding: 16px 18px;
}

.booking-selection-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0f2a42;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-empty-state {
  border-radius: 18px;
  border: 1px dashed rgba(21, 44, 81, 0.18);
  background: rgba(255, 255, 255, 0.62);
  padding: 18px;
}

.booking-summary-card {
  border-radius: 20px;
  border: 1px solid rgba(21, 44, 81, 0.12);
  background: rgba(240, 247, 255, 0.72);
  padding: 18px;
}

.booking-manage-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.booking-manage-summary-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #10223f;
  font-size: 18px;
  line-height: 1.2;
}

.booking-manage-summary-grid p,
.booking-manage-topic {
  margin: 0;
  color: #4a6388;
  line-height: 1.55;
}

.booking-manage-topic {
  margin-top: 16px;
}

.booking-admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.booking-metric-card {
  border-radius: 18px;
  border: 1px solid rgba(24, 45, 77, 0.12);
  background: #ffffff;
  padding: 16px;
}

.booking-metric-card strong {
  display: block;
  color: #10223f;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.booking-metric-card span,
.booking-table-subline {
  color: #5e7396;
  font-size: 13px;
  line-height: 1.4;
}

.admin-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.booking-admin-table-wrap {
  margin-top: 18px;
}

.booking-export-card {
  display: grid;
  gap: 12px;
}

.booking-admin-toolbar {
  margin-top: 16px;
}

.booking-template-preview {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.booking-template-preview-kicker {
  margin: 0;
  color: #5e7396;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-template-preview-card {
  border-radius: 18px;
  border: 1px solid rgba(20, 46, 86, 0.14);
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.96), rgba(237, 244, 255, 0.92));
  padding: 18px;
}

.booking-template-preview-label {
  margin: 0 0 8px;
  color: #17315f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-template-preview-subject,
.booking-template-preview-body {
  color: #10223f;
  line-height: 1.6;
}

.booking-template-preview-subject {
  margin-bottom: 16px;
  font-weight: 700;
}

.legal-page {
  background: #ecf2f9;
  color: #12284e;
}

.legal-page-main {
  padding-top: 72px;
  padding-bottom: 96px;
}

.legal-page-section {
  padding-top: 44px;
}

.legal-page-shell {
  max-width: 980px;
}

.legal-page-kicker {
  margin: 0 0 12px;
  color: #4d638a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0 0 18px;
  color: #12284e;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.legal-page-card {
  display: grid;
  gap: 14px;
  line-height: 1.72;
}

.legal-page-card > * {
  margin: 0;
}

.legal-page-card ul,
.legal-page-card ol {
  margin: 0;
  padding-left: 1.2em;
}

.legal-page-shell--embedded {
  max-width: 1080px;
}

.legal-page-card--embedded {
  display: block;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  line-height: inherit;
}

.legal-page-card--embedded > style:first-child {
  display: none;
}

.legal-page-card--embedded .wrap {
  padding: 0;
}

.legal-page-card--embedded .hero {
  margin-bottom: 18px;
}

.legal-page-card--embedded .notice {
  display: none;
}

.legal-page-download {
  margin-top: 18px;
}

.legal-page-download[hidden] {
  display: none;
}

.legal-page-download .btn {
  min-width: 240px;
  justify-content: center;
}

@media (max-width: 1080px) {
  .booking-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .admin-grid-span-2 {
    grid-column: auto;
  }

  .booking-config-grid,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-card-header {
    flex-direction: column;
  }

  .booking-main {
    padding-bottom: 76px;
  }
}
