/**
 * Abutic homepage — dotcards.net / Apple Store–inspired shell.
 * Neutral typography, frosted nav, full-bleed bands, pill CTAs.
 */
.ab-dot-home {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, system-ui, sans-serif;
  background: transparent;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
}


/* ── Scroll root (mobile + desktop) ──
   Tailwind `overflow-x-hidden` + homepage.css do the same on `body`. Per CSS overflow pairing,
   non-visible `overflow-x` forces `overflow-y` to compute to `auto`, so `body` becomes a second
   scroll container next to the viewport — “double” wheel on desktop, broken touch scroll on iOS.
   Clip horizontally on `html` only; keep `body`/`main` overflow visible so one chain scrolls. */
html.ab-dot-home-html,
html:has(body.ab-dot-home) {
  overflow-x: hidden;
  /* Shell: near-white canvas + very subtle sky blue from left & right edges */
  --ab-dot-canvas: #fafbfc;
  --ab-dot-band: #f6f8fc;
  --ab-dot-band-tint: #f5f7fb;
  --ab-dot-surface: #f7f9fc;
  --ab-dot-card: #fcfcfd;
  --ab-dot-card-strong: #ffffff;
  --ab-dot-card-border: rgba(15, 23, 42, 0.06);
  --ab-dot-violet-wash: rgba(167, 139, 250, 0.06);
  --ab-dot-blue-wash: rgba(147, 197, 253, 0.07);
  --ab-dot-shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(30, 64, 175, 0.045);
  --ab-dot-shadow-lift: 0 2px 8px rgba(15, 23, 42, 0.045), 0 14px 36px rgba(30, 58, 138, 0.06);
  background:
    radial-gradient(ellipse 38% 92% at 0% 50%, rgba(191, 219, 254, 0.13), transparent 70%),
    radial-gradient(ellipse 38% 92% at 100% 50%, rgba(191, 219, 254, 0.13), transparent 70%),
    linear-gradient(180deg, #fcfcfd 0%, #fafafa 50%, #fcfcfd 100%);
  background-color: var(--ab-dot-canvas);
  min-height: 100%;
  min-height: 100dvh;
}

/* ── Kill global style.css layout that breaks this page ──
   body { display:flex; align-items:center } + main { display:flex } (row)
   stacks every <section> horizontally → overlapping columns. */
body.ab-dot-home {
  display: block !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  min-height: 100vh;
  min-height: 100dvh;
  text-align: left !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y pinch-zoom;
}

/* Transparent body lets html shell (or .abt-bg-layer) show — but NOT on static public profiles,
   where body carries the saved gradient via inline / <style> (transparent !important would flash then white). */
body.ab-dot-home:not(.ab-dot-public-profile),
body.ab-dot-home.ab-dot-public-profile.has-animated-bg {
  background: transparent !important;
  background-color: transparent !important;
}


body.ab-dot-home main.ab-dot-main {
  display: block !important;
  flex: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  justify-content: unset !important;
  align-items: unset !important;
  overflow: visible !important;
}

body.ab-dot-home .ab-dot-main > section {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  box-sizing: border-box;
}

/* No drop-shadows, borders, or outlines on marketing imagery */
body.ab-dot-home .ab-dot-main img:not(.ab-dot-steel-banner-img):not(.ab-dot-qr-img),
body.ab-dot-home .ab-dot-navbar-card .ab-dot-logo img {
  border: none;
  outline: none;
  box-shadow: none;
  filter: none;
}

/* Global h2 in style.css uses white gradient text → invisible on light bg */
body.ab-dot-home .ab-dot-main h2:not(.ab-dot-steel-banner-title):not(.ab-dot-qr-title),
body.ab-dot-home .ab-dot-hero h1 {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: inherit;
}


.ab-dot-home .moving-gradient-bg {
  display: none !important;
}

/* ── dotcards.net-style navbar (scoped so global CSS can’t flatten it) ── */
body.ab-dot-home .ab-dot-site-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

body.ab-dot-home .ab-dot-navbar-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.ab-dot-home .ab-dot-navbar-shell {
    padding: 0 1.25rem;
  }
}

body.ab-dot-home .ab-dot-navbar-card {
  width: 100%;
  box-sizing: border-box;
  background: #fff !important;
  border-radius: 0 0 2.5rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: none;
  /* Strong enough to read on near-white page + after cache issues */
  box-shadow:
    0 14px 48px rgba(15, 23, 42, 0.1),
    0 4px 14px rgba(15, 23, 42, 0.06);
}

body.ab-dot-home .ab-dot-util-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.ab-dot-home .ab-dot-util-inner {
  padding: 0.5rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.ab-dot-home .ab-dot-util-inner {
    padding: 0.55rem 1.35rem;
  }
}

body.ab-dot-home .ab-dot-util-msg {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #86868b;
  line-height: 1.35;
}

body.ab-dot-home .ab-dot-util-msg a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

body.ab-dot-home .ab-dot-util-msg a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mobile: hide promo line (“Metal NFC cards · Custom engraving”); desktop unchanged */
@media (max-width: 767px) {
  body.ab-dot-home .ab-dot-util-msg__shop-desktop {
    display: none;
  }

  body.ab-dot-home .ab-dot-util-msg {
    display: none;
  }

  /* 640–767px: only Support / Contact remain — align right */
  body.ab-dot-home .ab-dot-util-inner {
    justify-content: flex-end;
  }
}

/* Below 640px: Support/Contact are in the drawer only — hide empty util stripe */
@media (max-width: 639px) {
  body.ab-dot-home .ab-dot-util-bar {
    display: none;
  }
}

body.ab-dot-home .ab-dot-util-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  body.ab-dot-home .ab-dot-util-links {
    display: flex;
  }
}

body.ab-dot-home .ab-dot-util-links a {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1d1d1f;
  text-decoration: none;
  white-space: nowrap;
}

body.ab-dot-home .ab-dot-util-links a:hover {
  opacity: 0.55;
}

body.ab-dot-home .ab-dot-navbar-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 1.1rem 1.1rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.ab-dot-home .ab-dot-navbar-row {
    padding: 0.95rem 1.35rem 1.2rem;
    gap: 1.5rem 2rem;
  }
}

body.ab-dot-home .ab-dot-site-top .ab-dot-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

body.ab-dot-home .ab-dot-site-top .ab-dot-logo img {
  height: 28px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  body.ab-dot-home .ab-dot-site-top .ab-dot-logo img {
    height: 34px;
  }
}

body.ab-dot-home .ab-dot-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  body.ab-dot-home .ab-dot-nav-links {
    display: flex;
    margin-left: 0.25rem;
  }
}

body.ab-dot-home .ab-dot-nav-links a {
  color: #1d1d1f;
  text-decoration: none;
  white-space: nowrap;
}

body.ab-dot-home .ab-dot-nav-links a:hover {
  opacity: 0.55;
}

body.ab-dot-home .ab-dot-nav-links a.ab-dot-nav-current,
body.ab-dot-home .ab-dot-util-links a.ab-dot-nav-current {
  opacity: 1;
  color: #0066cc;
}

body.ab-dot-home .ab-dot-nav-drawer__list a.ab-dot-nav-current {
  color: #0066cc;
}

body.ab-dot-home .ab-dot-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* dot-style “Cart”: Shop label + bag + badge */
body.ab-dot-home .ab-dot-navbar-shop {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.25rem;
  text-decoration: none;
  color: #1d1d1f;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.ab-dot-home .ab-dot-navbar-shop:hover {
  opacity: 0.65;
}

body.ab-dot-home .ab-dot-navbar-shop__wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.ab-dot-home .ab-dot-navbar-shop__icon {
  display: block;
  color: #1d1d1f;
}

body.ab-dot-home .ab-dot-navbar-shop__badge {
  position: absolute;
  top: -0.35rem;
  right: -0.45rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.2rem;
  border-radius: 9999px;
  background: #8ebbff;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  pointer-events: none;
}

@media (max-width: 380px) {
  body.ab-dot-home .ab-dot-navbar-shop__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  body.ab-dot-home .ab-dot-navbar-shop {
    margin-right: 0;
  }
}

/* ── Mobile / tablet hamburger + drawer (mirrors desktop util + primary links) ── */
body.ab-dot-home.ab-dot-nav-open,
html.ab-dot-home-html.ab-dot-nav-open-html {
  overflow: hidden !important;
  touch-action: none;
}

body.ab-dot-home .ab-dot-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.ab-dot-home .ab-dot-nav-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.ab-dot-home .ab-dot-nav-toggle:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

body.ab-dot-home .ab-dot-nav-toggle__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 1.125rem;
}

body.ab-dot-home .ab-dot-nav-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #1d1d1f;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

body.ab-dot-home .ab-dot-nav-toggle.is-open .ab-dot-nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.ab-dot-home .ab-dot-nav-toggle.is-open .ab-dot-nav-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.ab-dot-home .ab-dot-nav-toggle.is-open .ab-dot-nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {
  body.ab-dot-home .ab-dot-nav-toggle {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ab-dot-home .ab-dot-nav-toggle__line {
    transition: none;
  }

  body.ab-dot-home .ab-dot-nav-toggle.is-open .ab-dot-nav-toggle__line:nth-child(1),
  body.ab-dot-home .ab-dot-nav-toggle.is-open .ab-dot-nav-toggle__line:nth-child(3) {
    transition: none;
  }
}

body.ab-dot-home .ab-dot-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(15, 23, 42, 0.38);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.ab-dot-home .ab-dot-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.ab-dot-home .ab-dot-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: min(20.5rem, 100%);
  max-width: 100vw;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
}

body.ab-dot-home .ab-dot-nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

body.ab-dot-home .ab-dot-nav-drawer__panel {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1.25rem, env(safe-area-inset-right, 0px)) max(1.5rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 55%, #f5f7fb 100%);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    -24px 0 64px rgba(15, 23, 42, 0.12),
    -4px 0 24px rgba(30, 64, 175, 0.06);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

body.ab-dot-home .ab-dot-nav-drawer.is-open .ab-dot-nav-drawer__panel {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  body.ab-dot-home .ab-dot-nav-drawer__panel {
    transition: none;
  }

  body.ab-dot-home .ab-dot-nav-drawer:not(.is-open) .ab-dot-nav-drawer__panel {
    transform: translateX(100%);
  }

  body.ab-dot-home .ab-dot-nav-drawer.is-open .ab-dot-nav-drawer__panel {
    transform: translateX(0);
  }

  body.ab-dot-home .ab-dot-nav-backdrop {
    transition: none;
  }
}

body.ab-dot-home .ab-dot-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.ab-dot-home .ab-dot-nav-drawer__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
}

body.ab-dot-home .ab-dot-nav-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #1d1d1f;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.ab-dot-home .ab-dot-nav-drawer__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

body.ab-dot-home .ab-dot-nav-drawer__close:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

body.ab-dot-home .ab-dot-nav-drawer__section {
  margin-bottom: 1.75rem;
}

body.ab-dot-home .ab-dot-nav-drawer__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86868b;
}

body.ab-dot-home .ab-dot-nav-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.ab-dot-home .ab-dot-nav-drawer__list li + li {
  margin-top: 0.15rem;
}

body.ab-dot-home .ab-dot-nav-drawer__list a {
  display: block;
  padding: 0.65rem 0.85rem;
  margin: 0 -0.85rem;
  border-radius: 0.65rem;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background 0.15s ease, color 0.15s ease;
}

body.ab-dot-home .ab-dot-nav-drawer__list--compact a {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #424245;
}

body.ab-dot-home .ab-dot-nav-drawer__list--primary a {
  font-size: 1.0625rem;
  font-weight: 700;
}

body.ab-dot-home .ab-dot-nav-drawer__list a:hover {
  background: rgba(0, 102, 204, 0.08);
  color: #0066cc;
}

body.ab-dot-home .ab-dot-nav-drawer__account {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.ab-dot-home .ab-dot-nav-drawer__account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.ab-dot-home .ab-dot-nav-drawer__account-btn--ghost {
  background: rgba(0, 0, 0, 0.04);
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.ab-dot-home .ab-dot-nav-drawer__account-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.07);
}

body.ab-dot-home .ab-dot-nav-drawer__account-btn--dark {
  background: #1d1d1f;
  color: #f5f5f7;
}

body.ab-dot-home .ab-dot-nav-drawer__account-btn--dark:hover {
  background: #000;
}

body.ab-dot-home .ab-dot-nav-drawer__account-btn:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

.ab-dot-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.ab-dot-btn-pill--dark {
  background: #1d1d1f;
  color: #f5f5f7;
}

.ab-dot-btn-pill--dark:hover {
  background: #000;
}

.ab-dot-btn-pill--ghost {
  background: transparent;
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ab-dot-btn-pill--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.ab-dot-btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.ab-dot-btn-large--primary {
  background: #1d1d1f;
  color: #fff;
}

.ab-dot-btn-large--primary:hover {
  background: #000;
  transform: scale(1.02);
}

.ab-dot-btn-large--secondary {
  background: transparent;
  color: #0066cc;
  border: none;
}


.ab-dot-btn-large--secondary:hover {
  text-decoration: underline;
}


/* dot-style hero primary: white pill, black keyline (like dot “Shop band” CTA) */
.ab-dot-btn-large--hero-outline {
  background: #fff;
  color: #1d1d1f;
  border: 1px solid #1d1d1f;
  box-shadow: var(--ab-dot-shadow-soft, 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(30, 64, 175, 0.045));
}

.ab-dot-btn-large--hero-outline:hover {
  background: #f5f5f7;
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .ab-dot-btn-large--hero-outline:hover {
    transform: none;
  }
}

/* Horizontal clipping lives on html:has(body.ab-dot-home); avoid nested scroll boxes here. */
.ab-dot-main {
  overflow: visible;
}


.ab-dot-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 0.5rem;
}

/* Rotating “improve …” — matches dot shell (neutral card, blue accent, homepage.css animation) */
.ab-dot-improve-section {
  background: transparent;
  border: none;
  padding: 2.5rem 1.25rem 3rem;
}

@media (min-width: 768px) {
  .ab-dot-improve-section {
    padding: 3rem 1.5rem 3.5rem;
  }
}

.ab-dot-improve-inner {
  display: flex;
  justify-content: center;
}

.ab-dot-improve-card {
  --bg-color: #ffffff;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  box-sizing: border-box;
}

.ab-dot-improve-loader.loader {
  --ab-dot-improve-h: 2.75rem;
  font-family: inherit;
  font-weight: 500;
  font-size: inherit;
  height: auto !important;
  min-height: var(--ab-dot-improve-h);
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  box-sizing: border-box !important;
}

/* homepage.css fade mask — on narrow viewports it reads as faint horizontal “rules” */
.ab-dot-improve-loader .words::after {
  display: none !important;
  content: none !important;
}

.ab-dot-improve-prefix {
  margin: 0;
  display: flex;
  align-items: center;
  height: var(--ab-dot-improve-h, 2.75rem);
  font-size: clamp(1.625rem, 3.8vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #1d1d1f;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #1d1d1f !important;
}

.ab-dot-improve-loader .words {
  height: var(--ab-dot-improve-h, 2.75rem);
  overflow: hidden;
  position: relative;
}

/* homepage .word is display:block + height:100% — glyphs sat at top of strip; center them */
.ab-dot-improve-loader .word {
  display: flex !important;
  align-items: center;
  box-sizing: border-box;
  padding-left: 0.35rem;
  height: 100%;
  font-size: clamp(1.625rem, 3.8vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #0066cc !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #0066cc !important;
}

@media (max-width: 767.98px) {
  /* Kill any stray chrome; keep one line so it doesn’t read as a “break” between words */
  .ab-dot-improve-section,
  .ab-dot-improve-inner,
  .ab-dot-improve-card {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .ab-dot-improve-section {
    padding: 0.75rem 1rem 1rem !important;
  }

  .ab-dot-improve-card {
    padding: 0.25rem 0 !important;
  }

  .ab-dot-improve-loader.loader {
    --ab-dot-improve-h: 3.125rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: var(--ab-dot-improve-h);
  }

  .ab-dot-improve-prefix {
    flex-shrink: 0;
    height: var(--ab-dot-improve-h);
  }


  .ab-dot-improve-loader .words {
    flex: 0 1 auto;
    min-width: 0;
    height: var(--ab-dot-improve-h);
    max-width: min(82vw, 20rem);
  }

  .ab-dot-improve-prefix,
  .ab-dot-improve-loader .word {
    font-size: clamp(1.7rem, 5.8vw, 2.35rem);
  }

  /* Less air between hero / improve / “Choose your path” on small screens */
  .ab-dot-hero-inner {
    padding-bottom: 1.75rem;
  }

  .ab-dot-improve-section + .ab-dot-section {
    padding-top: 1.75rem;
  }
}

.ab-dot-hero {
  background: transparent;
  border: none;
}

.ab-dot-hero-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem 1.25rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .ab-dot-hero-outer {
    padding: 0.35rem 1.25rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  body.ab-dot-home .ab-dot-hero-outer {
    padding-top: 1.5rem;
  }
}

/* Large rounded hero module — near-white + same side blue wash as page shell */
.ab-dot-hero-panel {
  border-radius: 1.75rem;
  background:
    radial-gradient(ellipse 52% 78% at 0% 48%, rgba(191, 219, 254, 0.16), transparent 62%),
    radial-gradient(ellipse 52% 78% at 100% 52%, rgba(191, 219, 254, 0.16), transparent 62%),
    linear-gradient(180deg, #fdfdfd 0%, #f8f9fb 45%, #fcfcfd 100%);
  border: 1px solid rgba(15, 23, 42, 0.055);
  box-shadow: var(--ab-dot-shadow-lift, 0 2px 8px rgba(15, 23, 42, 0.045), 0 14px 36px rgba(30, 58, 138, 0.06));
  overflow: hidden;
}

@media (min-width: 768px) {
  .ab-dot-hero-panel {
    border-radius: 2.25rem;
  }
}

.ab-dot-hero-inner {
  margin: 0 auto;
  padding: 2.25rem 1.35rem 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ab-dot-hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 2.5rem 3.25rem;
    gap: 2.5rem;
  }
}

.ab-dot-eyebrow--hero-mono {
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d1d1f;
  margin-bottom: 0.65rem;
}

.ab-dot-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #1d1d1f;
  margin: 0 0 1rem;
}

.ab-dot-hero-lead {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #515154;
  max-width: 32rem;
  margin: 0 0 1.5rem;
}

.ab-dot-hero-price {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: #1d1d1f;
}

.ab-dot-hero-price strong {
  font-size: 1.35rem;
  font-weight: 800;
}

.ab-dot-hero-price-was {
  color: #86868b;
  text-decoration: line-through;
  margin-left: 0.35rem;
  font-size: 0.95rem;
}

.ab-dot-hero-usps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  max-width: 32rem;
}

.ab-dot-hero-usps li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #424245;
  line-height: 1.4;
}

.ab-dot-hero-usps i {
  color: #0066cc;
  margin-top: 0.15rem;
  width: 1rem;
  text-align: center;
}

/* Value compare + guarantee block */
.ab-dot-value-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.ab-dot-value-inner {
  max-width: 56rem;
}

.ab-dot-value-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ab-dot-value-header .ab-dot-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.ab-dot-home-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  align-items: stretch;
}

@media (max-width: 720px) {
  .ab-dot-home-compare {
    grid-template-columns: 1fr;
  }
}

.ab-dot-home-compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 1.5rem 1.6rem 1.65rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 48px -12px rgba(30, 64, 175, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ab-dot-home-compare-card--us {
  border-color: rgba(0, 102, 204, 0.18);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(147, 197, 253, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(167, 139, 250, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 20px 56px -14px rgba(0, 102, 204, 0.18);
}

.ab-dot-home-compare-card--us:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 24px 64px -12px rgba(0, 102, 204, 0.22);
}

.ab-dot-home-compare-card--them {
  background: rgba(248, 250, 252, 0.92);
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: 0 8px 28px -12px rgba(15, 23, 42, 0.08);
  opacity: 0.92;
}

.ab-dot-home-compare-name {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ab-dot-home-compare-card--them .ab-dot-home-compare-name {
  color: #64748b;
}

.ab-dot-home-compare-price-row {
  margin: 0.85rem 0 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ab-dot-home-compare-card--them .ab-dot-home-compare-price-row {
  border-bottom-color: rgba(148, 163, 184, 0.2);
}

.ab-dot-home-compare-price {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0f172a;
}

.ab-dot-home-compare-price--muted {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.ab-dot-home-compare-note {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.ab-dot-value-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}

.ab-dot-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #334155;
}

.ab-dot-value-list--no li {
  color: #64748b;
}

.ab-dot-value-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  background: #ecfdf5;
  color: #059669;
  margin-top: 0.1rem;
}

.ab-dot-value-icon--no {
  background: #fef2f2;
  color: #dc2626;
}

.ab-dot-home-compare-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.ab-dot-home-compare-badge--muted {
  background: #f1f5f9;
  color: #64748b;
  border-color: rgba(148, 163, 184, 0.25);
}

.ab-dot-value-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #1d1d1f;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ab-dot-value-cta:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.ab-dot-value-cta i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.ab-dot-value-cta:hover i {
  transform: translateX(3px);
}

.ab-dot-home-guarantee {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem 1.5rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.65), rgba(239, 246, 255, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 8px 32px -12px rgba(16, 185, 129, 0.15);
}

@media (max-width: 520px) {
  .ab-dot-home-guarantee {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.ab-dot-home-guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, #10b981, #059669);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.ab-dot-home-guarantee-copy h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ab-dot-home-guarantee-copy p {
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.ab-dot-home-guarantee-copy a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

.ab-dot-home-guarantee-copy a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ab-dot-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.ab-dot-hero-footnote {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #6e6e73;
  max-width: 32rem;
}

.ab-dot-hero-footnote a {
  color: #0066cc;
  text-decoration: none;
}

.ab-dot-hero-footnote a:hover {
  opacity: 0.85;
}

.ab-dot-hero-mockup {
  text-align: center;
}

.ab-dot-hero-mockup img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.ab-dot-section {
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .ab-dot-section {
    padding: 5rem 1.5rem;
  }
}

.ab-dot-section--muted {
  background: var(--ab-dot-band-tint, #e6e4ef);
}

.ab-dot-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ab-dot-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 0.5rem;
  color: #1d1d1f;
}

.ab-dot-section-sub {
  text-align: center;
  color: #6e6e73;
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.ab-dot-cards-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ab-dot-cards-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.ab-dot-mini-card {
  background: var(--ab-dot-card-strong, #fafafc);
  border: 1px solid var(--ab-dot-card-border, rgba(0, 0, 0, 0.065));
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--ab-dot-shadow-soft, 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(30, 64, 175, 0.045));
}

.ab-dot-section--muted .ab-dot-mini-card {
  background: var(--ab-dot-card-strong, #fafafc);
}

.ab-dot-mini-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #1d1d1f;
}

.ab-dot-mini-card p {
  font-size: 0.875rem;
  color: #6e6e73;
  margin: 0;
  line-height: 1.45;
}

.ab-dot-mini-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6e6e73;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ab-dot-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .ab-dot-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .ab-dot-split--reverse .ab-dot-split-visual {
    order: 2;
  }

  .ab-dot-split--reverse .ab-dot-split-copy {
    order: 1;
  }
}

.ab-dot-split-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #1d1d1f;
}

.ab-dot-split-copy p {
  font-size: 1.0625rem;
  color: #6e6e73;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.ab-dot-split-visual {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
}


.ab-dot-split-visual img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.ab-dot-split-visual--nfc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ab-dot-split-visual--nfc img {
  max-width: 520px;
  width: 100%;
  border-radius: 1.25rem;
}

/* Static raised bevel (3D-looking border only — no motion, no floating shadow) */
.ab-dot-split-visual--pedit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ab-dot-pedit-3d {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(8px, 1.5vw, 12px);
  border-radius: 1rem;
  background: linear-gradient(145deg, #f4f4f6 0%, #dcdce2 55%, #ececef 100%);
  box-shadow:
    var(--ab-dot-shadow-soft, 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(30, 64, 175, 0.045)),
    0 0 0 1px rgba(0, 0, 0, 0.14),
    inset 2px 2px 0 rgba(255, 255, 255, 0.85),
    inset -2px -2px 0 rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.ab-dot-pedit-3d img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.65rem;
}

.ab-dot-steps {
  display: grid;
  gap: 2rem;
  counter-reset: abstep;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ab-dot-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ab-dot-step {
  text-align: center;
  position: relative;
}

.ab-dot-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #1d1d1f;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ab-dot-step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #1d1d1f;
}

.ab-dot-step p {
  font-size: 0.875rem;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
}

/* Stats (“Abutic in Motion”) — aligned to homepage premium card language */
.ab-dot-stats {
  position: relative;
}

.ab-dot-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 68% 56% at 8% 14%, rgba(191, 219, 254, 0.18), transparent 64%),
    radial-gradient(ellipse 72% 54% at 92% 88%, rgba(186, 230, 253, 0.16), transparent 66%);
}

.ab-dot-stats .ab-dot-section-inner {
  max-width: 1050px;
}

.ab-dot-stats .ab-dot-section-title,
.ab-dot-stats .ab-dot-section-sub {
  text-align: center;
}

.ab-dot-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0.4rem auto 0;
}

@media (min-width: 768px) {
  .ab-dot-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.ab-dot-stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.92) 100%);
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 1.1rem;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 14px 34px -28px rgba(30, 64, 175, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ab-dot-stat-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -88px;
  top: -104px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0) 68%);
  pointer-events: none;
}

.ab-dot-stat-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), rgba(14, 165, 233, 0) 70%);
}

.ab-dot-stat-card:nth-child(3)::before {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0) 70%);
}

.ab-dot-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 18px 40px -28px rgba(30, 58, 138, 0.38);
}

.ab-dot-stat-icon {
  width: 2.7rem;
  height: 2.7rem;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.03rem;
  box-shadow: 0 10px 20px -14px rgba(15, 23, 42, 0.8);
}

.ab-dot-stat-icon--accent {
  background: linear-gradient(135deg, #0369a1 0%, #2563eb 100%);
}

.ab-dot-stat-value {
  font-size: clamp(2rem, 4.2vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #0f172a;
  margin: 0 0 0.28rem;
  font-variant-numeric: tabular-nums;
}

.ab-dot-stat-value .ab-dot-counter {
  font-weight: inherit;
  color: inherit;
}

.ab-dot-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ab-dot-stat-card {
    transition: none;
  }

  .ab-dot-stat-card:hover {
    transform: none;
    box-shadow: 0 14px 34px -28px rgba(30, 64, 175, 0.35);
  }
}

.ab-dot-reviews {
  max-width: 960px;
  margin: 0 auto;
}

.ab-dot-review-card {
  background: var(--ab-dot-card-strong, #fafafc);
  border: 1px solid var(--ab-dot-card-border, rgba(0, 0, 0, 0.065));
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--ab-dot-shadow-soft, 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(30, 64, 175, 0.045));
}

.ab-dot-review-stars {
  color: #1d1d1f;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.ab-dot-review-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #424245;
  margin: 0;
}


.ab-dot-review-meta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #6e6e73;
}

.ab-dot-cta-final {
  text-align: center;
  padding: 4rem 1.25rem 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--ab-dot-violet-wash, rgba(167, 139, 250, 0.06)), transparent 55%),
    var(--ab-dot-band-tint, #e6e4ef);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ab-dot-cta-final h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.ab-dot-cta-final p {
  color: #6e6e73;
  font-size: 1.0625rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.ab-dot-home .fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ab-dot-home .fade-in.visible {
  opacity: 1;
  transform: none;
}


/* Footer polish to match shell */
body.ab-dot-home footer {
  background: var(--ab-dot-canvas, #fafbfc);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 0;
}

body.ab-dot-home footer .text-slate-700,
body.ab-dot-home footer .text-slate-600 {
  color: #424245;
}

body.ab-dot-home footer a:hover {
  color: #0066cc !important;
}

/* Match sticky mobile CTA to shell */
body.ab-dot-home .mobile-sticky-cta {
  background: #1d1d1f;
  color: #f5f5f7;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* No mobile bottom nav on dot homepage — override homepage.css body padding */
@media (max-width: 768px) {
  body.ab-dot-home {
    padding-bottom: 0 !important;
  }
}
/* steel.php–style spotlight (home “Premium metal” block): heading must beat style.css h2 */
body.ab-dot-home .ab-dot-steel-banner-title {
  background-image: linear-gradient(90deg, #fff, #bfdbfe, #fff) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}


/* Softer container shadow than Tailwind shadow-2xl — matches dot-style lift */
body.ab-dot-home .ab-dot-steel-banner {
  box-shadow: var(--ab-dot-shadow-lift, 0 2px 8px rgba(15, 23, 42, 0.045), 0 14px 36px rgba(30, 58, 138, 0.06)) !important;
}

/* ── Dynamic QR (index.php hero, dot shell — contained panel like steel banner) ── */
.ab-dot-qr-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.35);
}

.ab-dot-qr-panel__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ab-dot-qr-panel__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0c1222 0%, #111827 40%, #172554 78%, #0f172a 100%);
}

.ab-dot-qr-panel__gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 102, 204, 0.35), transparent 55%);
  opacity: 0.9;
}

.ab-dot-qr-panel__grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: ab-dot-qr-grid 22s linear infinite;
}

.ab-dot-qr-panel__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.35;
  animation: ab-dot-qr-float 7s ease-in-out infinite;
}

.ab-dot-qr-panel__orb--1 {
  width: 180px;
  height: 180px;
  top: 8%;
  left: 5%;
  background: rgba(0, 102, 204, 0.5);
  animation-duration: 8s;
}

.ab-dot-qr-panel__orb--2 {
  width: 220px;
  height: 220px;
  bottom: 10%;
  right: 0;
  background: rgba(96, 165, 250, 0.45);
  animation-duration: 10s;
  animation-delay: -2s;
}

.ab-dot-qr-panel__orb--3 {
  width: 140px;
  height: 140px;
  top: 40%;
  right: 15%;
  background: rgba(147, 197, 253, 0.35);
  animation-duration: 9s;
  animation-delay: -4s;
}

.ab-dot-qr-panel__shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 45%,
    transparent 50%
  );
  animation: ab-dot-qr-shine 12s ease-in-out infinite;
  pointer-events: none;
}

.ab-dot-qr-panel__content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0 auto;
}

.ab-dot-qr-hero {
  text-align: center;
}

.ab-dot-qr-frame {
  position: relative;
  width: 12rem;
  height: 12rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .ab-dot-qr-frame {
    width: 14rem;
    height: 14rem;
    margin-bottom: 2.25rem;
  }
}

.ab-dot-qr-frame__ring {
  position: absolute;
  inset: -6px;
  border-radius: 1.35rem;
  border: 2px solid rgba(0, 102, 204, 0.35);
  animation: ab-dot-qr-spin 24s linear infinite;
}

.ab-dot-qr-frame__ring--slow {
  inset: 2px;
  border-radius: 1.1rem;
  border-color: rgba(147, 197, 253, 0.25);
  animation-duration: 18s;
  animation-direction: reverse;
}

.ab-dot-qr-frame__box {
  position: absolute;
  inset: 10px;
  border-radius: 1rem;
  padding: 0.85rem;
  background: linear-gradient(155deg, rgba(0, 0, 0, 0.5) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1px solid rgba(0, 102, 204, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 40px rgba(0, 102, 204, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ab-dot-qr-hero:hover .ab-dot-qr-frame__box {
  transform: scale(1.04) rotate(2deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 48px rgba(0, 102, 204, 0.35);
}

.ab-dot-qr-frame__scan {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.ab-dot-qr-frame__scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 42%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 102, 204, 0.18),
    transparent
  );
  animation: ab-dot-qr-sweep 2.8s ease-in-out infinite;
}

body.ab-dot-home .ab-dot-qr-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  filter: brightness(1.08) contrast(1.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s ease;
}

.ab-dot-qr-hero:hover .ab-dot-qr-img {
  transform: scale(1.03);
}

.ab-dot-qr-corner {
  position: absolute;
  z-index: 2;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(96, 165, 250, 0.75);
  border-radius: 3px;
  animation: ab-dot-qr-pulse 2s ease-in-out infinite;
}

.ab-dot-qr-corner--tl {
  top: 0.55rem;
  left: 0.55rem;
  border-right: none;
  border-bottom: none;
}

.ab-dot-qr-corner--tr {
  top: 0.55rem;
  right: 0.55rem;
  border-left: none;
  border-bottom: none;
  animation-delay: 0.25s;
}

.ab-dot-qr-corner--bl {
  bottom: 0.55rem;
  left: 0.55rem;
  border-right: none;
  border-top: none;
  animation-delay: 0.5s;
}

.ab-dot-qr-corner--br {
  bottom: 0.55rem;
  right: 0.55rem;
  border-left: none;
  border-top: none;
  animation-delay: 0.75s;
}

.ab-dot-qr-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 12px 2px rgba(96, 165, 250, 0.65);
  animation: ab-dot-qr-spark 2.2s ease-out infinite;
}

.ab-dot-qr-spark--1 {
  top: -4px;
  left: -4px;
}

.ab-dot-qr-spark--2 {
  top: -4px;
  right: -4px;
  animation-delay: 0.45s;
  background: #93c5fd;
}

.ab-dot-qr-spark--3 {
  bottom: -4px;
  left: -4px;
  animation-delay: 0.9s;
}

.ab-dot-qr-spark--4 {
  bottom: -4px;
  right: -4px;
  animation-delay: 1.35s;
  background: #bfdbfe;
}

.ab-dot-qr-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.95);
}

.ab-dot-qr-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background-image: linear-gradient(105deg, #f8fafc 0%, #bfdbfe 42%, #e0e7ff 72%, #f8fafc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(0, 102, 204, 0.35));
}

.ab-dot-qr-rule {
  width: 6rem;
  height: 3px;
  margin: 0 auto 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(0, 102, 204, 0.2), rgba(147, 197, 253, 0.9), rgba(0, 102, 204, 0.2));
  animation: ab-dot-qr-pulse 2.5s ease-in-out infinite;
}

.ab-dot-qr-copy {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.92);
}

.ab-dot-qr-hi {
  font-weight: 600;
}

.ab-dot-qr-hi--a {
  color: #7dd3fc;
}

.ab-dot-qr-hi--b {
  color: #93c5fd;
}

.ab-dot-qr-hi--c {
  color: #c4b5fd;
}

.ab-dot-qr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ab-dot-qr-cta:hover {
  background: #eff6ff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
}

.ab-dot-qr-cta i {
  font-size: 0.85em;
  transition: transform 0.25s ease;
}

.ab-dot-qr-cta:hover i {
  transform: translateX(4px);
}

@keyframes ab-dot-qr-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ab-dot-qr-grid {
  to {
    background-position: 48px 48px;
  }
}

@keyframes ab-dot-qr-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -10px) scale(1.05);
  }
}

@keyframes ab-dot-qr-shine {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-8%) rotate(0deg);
  }
  50% {
    opacity: 0.55;
    transform: translateX(8%) rotate(0deg);
  }
}

@keyframes ab-dot-qr-sweep {
  0% {
    top: -45%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    top: 105%;
    opacity: 0;
  }
}

@keyframes ab-dot-qr-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes ab-dot-qr-spark {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-dot-qr-panel__grid,
  .ab-dot-qr-panel__orb,
  .ab-dot-qr-panel__shine,
  .ab-dot-qr-frame__ring,
  .ab-dot-qr-frame__scan::after,
  .ab-dot-qr-corner,
  .ab-dot-qr-spark,
  .ab-dot-qr-rule {
    animation: none !important;
  }

  .ab-dot-qr-hero:hover .ab-dot-qr-frame__box,
  .ab-dot-qr-hero:hover .ab-dot-qr-img {
    transform: none;
  }

  .ab-dot-qr-cta:hover {
    transform: none;
  }

  .ab-dot-qr-cta:hover i {
    transform: none;
  }
}

/* ── Manage Your Leads (index.php preview, dot shell — non-interactive) ── */
.ab-dot-section--leads {
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, var(--ab-dot-blue-wash, rgba(147, 197, 253, 0.06)), transparent 55%),
    var(--ab-dot-surface, #f7f9fc);
}

.ab-dot-section--leads .ab-dot-section-sub {
  margin-bottom: 2rem;
}

.ab-dot-leads-demo {
  pointer-events: none;
  user-select: none;
  max-width: 960px;
  margin: 0 auto;
}

.ab-dot-leads-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ab-dot-leads-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.ab-dot-lead-card--second {
  display: none;
}

@media (min-width: 768px) {
  .ab-dot-lead-card--second {
    display: block;
  }
}

.ab-dot-lead-card {
  background: var(--ab-dot-card-strong, #fafafc);
  border: 1px solid var(--ab-dot-card-border, rgba(0, 0, 0, 0.065));
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--ab-dot-shadow-soft, 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(30, 64, 175, 0.045));
}

.ab-dot-lead-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ab-dot-lead-card__who {
  min-width: 0;
  flex: 1;
}

.ab-dot-lead-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-dot-lead-card__email {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: #0066cc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-dot-lead-card__pill {
  flex-shrink: 0;
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 9999px;
}

.ab-dot-lead-card__pill--ok {
  background: rgba(52, 199, 89, 0.12);
  color: #1b7f3b;
}

.ab-dot-lead-card__pill--new {
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
}

.ab-dot-lead-card__message {
  background: var(--ab-dot-surface, #f7f9fc);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.ab-dot-lead-card__message--accent {
  border-left: 3px solid #34c759;
}

.ab-dot-lead-card__message-label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e6e73;
}

.ab-dot-lead-card__message-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #1d1d1f;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ab-dot-lead-card__meta {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  color: #6e6e73;
}

.ab-dot-lead-field {
  margin-bottom: 0.75rem;
}

.ab-dot-lead-field__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6e6e73;
}

.ab-dot-lead-fake-select,
.ab-dot-lead-fake-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: #1d1d1f;
  background: var(--ab-dot-card-strong, #fafafc);
  line-height: 1.4;
}

.ab-dot-lead-fake-textarea {
  min-height: 2.75rem;
  background: rgba(52, 199, 89, 0.06);
}

.ab-dot-lead-fake-textarea--placeholder {
  background: var(--ab-dot-card-strong, #fafafc);
  color: #86868b;
}

.ab-dot-lead-card__actions {
  display: flex;
  gap: 0.5rem;
}

.ab-dot-lead-fake-btn {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6e6e73;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background: transparent;
}

/* ── Pricing: Find Your Perfect Plan (index.php → dot homepage) ── */
.ab-dot-pricing-section {
  min-width: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, var(--ab-dot-violet-wash, rgba(167, 139, 250, 0.07)), transparent 52%),
    linear-gradient(180deg, var(--ab-dot-surface, #f7f9fc) 0%, var(--ab-dot-canvas, #fafbfc) 55%);
}

.ab-dot-pricing-inner {
  max-width: 1120px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Contain wide table so html overflow-x:hidden does not clip content (no horizontal page scroll) */
.ab-dot-pricing-view {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.ab-dot-pricing-header {
  text-align: center;
}

.ab-dot-pricing-header .ab-dot-section-sub {
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.55;
}

.ab-dot-pricing-social-strip {
  text-align: center;
  max-width: 40rem;
  margin: -1rem auto 2rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.ab-dot-pricing-social-strip__stat {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ab-dot-pricing-social-strip__sub {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

.ab-dot-checkout-paid-assurance {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #334155;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.ab-dot-checkout-paid-assurance strong {
  color: #0f172a;
}

.ab-dot-checkout-social-strip {
  margin: 1.25rem auto 0;
  max-width: 36rem;
}

body.ab-dot-profile .ab-upgrade-nudge {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 102, 204, 0.2);
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.45), rgba(255, 255, 255, 0.95));
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  justify-content: space-between;
}

body.ab-dot-profile .ab-upgrade-nudge__copy {
  flex: 1;
  min-width: min(100%, 280px);
}

body.ab-dot-profile .ab-upgrade-nudge__copy p {
  margin: 0;
  font-size: 0.9375rem;
  color: #0f172a;
  line-height: 1.45;
}

body.ab-dot-profile .ab-upgrade-nudge__copy .ab-upgrade-nudge__hint {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #475569;
}

body.ab-dot-profile .ab-upgrade-nudge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

body.ab-dot-profile .ab-upgrade-nudge__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0066cc, #0891b2);
  text-decoration: none;
  white-space: nowrap;
}

body.ab-dot-profile .ab-upgrade-nudge__cta:hover {
  filter: brightness(1.05);
}

body.ab-dot-profile .ab-upgrade-nudge__dismiss {
  border: none;
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: inherit;
}

body.ab-dot-profile .ab-upgrade-nudge__dismiss:hover {
  background: rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  body.ab-dot-profile .ab-upgrade-nudge {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  body.ab-dot-profile .ab-upgrade-nudge__copy {
    flex: none;
    width: 100%;
    max-width: none;
  }

  body.ab-dot-profile .ab-upgrade-nudge__actions {
    width: 100%;
    justify-content: center;
  }
}

.ab-dot-pricing-toggle-wrap {
  text-align: center;
  margin: 1.75rem 0 2.5rem;
}

.ab-dot-pricing-toggle-track {
  display: inline-flex;
  gap: 0.125rem;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 9999px;
  box-shadow: var(--ab-dot-shadow-soft, 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(30, 64, 175, 0.045));
}

.ab-dot-pricing-toggle {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #6e6e73;
  background: transparent;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

.ab-dot-pricing-toggle:hover {
  color: #1d1d1f;
}

.ab-dot-pricing-toggle.is-active {
  background: #1d1d1f;
  color: #f5f5f7;
}

.ab-dot-pricing-toggle:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

.ab-dot-pricing-why {
  margin-bottom: 0;
}

/* “Why Abutic” — framed showcase band + richer cards */
.ab-dot-pricing-why--showcase {
  position: relative;
  margin: 0 auto 1.6rem;
  max-width: 72rem;
  padding: clamp(1.05rem, 2.8vw, 1.45rem) clamp(0.8rem, 2vw, 1rem);
  border-radius: 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #fbfdff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 10px 28px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.ab-dot-pricing-why--showcase .ab-dot-pricing-why__inner {
  position: relative;
  z-index: 1;
}

.ab-dot-pricing-why__glow {
  display: none;
}

.ab-dot-pricing-why__glow--a {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: -18%;
  left: -12%;
  background: rgba(59, 130, 246, 0.14);
}

.ab-dot-pricing-why__glow--b {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  bottom: -25%;
  right: -8%;
  background: rgba(16, 185, 129, 0.1);
}

.ab-dot-pricing-why__eyebrow {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0066cc;
}

.ab-dot-pricing-why__title {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
}

.ab-dot-pricing-why__title::after {
  display: none;
}

.ab-dot-pricing-why__lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}

.ab-dot-pricing-diff-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ab-dot-pricing-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ab-dot-pricing-diff-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
}

.ab-dot-pricing-diff-card {
  position: relative;
  border-radius: 0.95rem;
  padding: 0.95rem 0.9rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ab-dot-pricing-diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 0.95rem 0.95rem 0 0;
  opacity: 0.65;
}

.ab-dot-pricing-diff-card--a {
  background: #ffffff;
}

.ab-dot-pricing-diff-card--a::before {
  background: linear-gradient(90deg, #0066cc, #38bdf8);
}

.ab-dot-pricing-diff-card--b {
  background: #ffffff;
}

.ab-dot-pricing-diff-card--b::before {
  background: linear-gradient(90deg, #1e293b, #64748b);
}

.ab-dot-pricing-diff-card--c {
  background: #ffffff;
}

.ab-dot-pricing-diff-card--c::before {
  background: linear-gradient(90deg, #15803d, #34d399);
}

@media (hover: hover) and (pointer: fine) {
  .ab-dot-pricing-diff-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 102, 204, 0.18);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-dot-pricing-diff-card {
    transition: none;
  }

  .ab-dot-pricing-diff-card:hover {
    transform: none;
  }
}

.ab-dot-pricing-diff-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.62rem;
  background: linear-gradient(145deg, #0077ee 0%, #0066cc 55%, #0055b3 100%);
  color: #fff;
  font-size: 0.88rem;
  box-shadow:
    0 3px 10px rgba(0, 102, 204, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.ab-dot-pricing-diff-card__icon--dark {
  background: linear-gradient(145deg, #334155 0%, #1e293b 45%, #0f172a 100%);
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.ab-dot-pricing-diff-card__icon--green {
  background: linear-gradient(145deg, #22c55e 0%, #15803d 50%, #166534 100%);
  box-shadow:
    0 4px 16px rgba(22, 163, 74, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.ab-dot-pricing-diff-card__h {
  margin: 0 0 0.28rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ab-dot-pricing-diff-card__p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #64748b;
}

.ab-dot-pricing-diff-card__list {
  list-style: none;
  margin: 0.72rem 0 0;
  padding: 0.55rem 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.76rem;
  line-height: 1.4;
  color: #475569;
}

.ab-dot-pricing-diff-card__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.34rem;
}

.ab-dot-pricing-diff-card__list li:last-child {
  margin-bottom: 0;
}

.ab-dot-pricing-diff-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.6;
}

.ab-dot-pricing-diff-card__list--a li::before {
  color: #0066cc;
}

.ab-dot-pricing-diff-card__list--b li::before {
  color: #334155;
}

.ab-dot-pricing-diff-card__list--c li::before {
  color: #15803d;
}

.ab-dot-pricing-toggle-hint {
  margin: 0.65rem auto 0;
  max-width: 30rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #86868b;
}

.ab-dot-pricing-toggle-hint strong {
  color: #52525b;
  font-weight: 600;
}

.ab-dot-pricing-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .ab-dot-pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .ab-dot-pricing-card--featured {
    margin-top: -0.5rem;
    padding-top: 2.5rem;
  }
}

.ab-dot-pricing-card {
  position: relative;
  background: var(--ab-dot-card-strong, #fafafc);
  border: 1px solid var(--ab-dot-card-border, rgba(0, 0, 0, 0.065));
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--ab-dot-shadow-lift, 0 2px 8px rgba(15, 23, 42, 0.045), 0 14px 36px rgba(30, 58, 138, 0.06));
  display: flex;
  flex-direction: column;
}

.ab-dot-pricing-card--featured {
  background: linear-gradient(165deg, #1a2b4a 0%, #0f172a 40%, #172554 100%);
  border: 1px solid rgba(0, 102, 204, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.35);
  color: #f5f5f7;
}

.ab-dot-pricing-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: #1d1d1f;
}

.ab-dot-pricing-card__top {
  text-align: center;
  margin-bottom: 1.25rem;
  flex: 1;
}

.ab-dot-pricing-card--featured .ab-dot-pricing-card__badge + .ab-dot-pricing-card__top {
  padding-top: 0.75rem;
}

.ab-dot-pricing-card__name {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: inherit;
}

.ab-dot-pricing-card--featured .ab-dot-pricing-card__name {
  color: #fff;
}

.ab-dot-pricing-card__price {
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.ab-dot-pricing-card__amount {
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: inherit;
}

.ab-dot-pricing-card__period {
  font-size: 1rem;
  font-weight: 500;
  color: #6e6e73;
  margin-left: 0.15rem;
}

.ab-dot-pricing-card--featured .ab-dot-pricing-card__period {
  color: rgba(191, 219, 254, 0.85);
}

.ab-dot-pricing-card__tagline {
  margin: 0;
  font-size: 0.8125rem;
  color: #6e6e73;
  line-height: 1.4;
}

.ab-dot-pricing-card--featured .ab-dot-pricing-card__tagline {
  color: rgba(229, 231, 235, 0.85);
}

.ab-dot-pricing-card__billing-note {
  margin: 0.3rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #15803d;
  line-height: 1.35;
}

.ab-dot-pricing-card--featured .ab-dot-pricing-card__billing-note {
  color: rgba(167, 243, 208, 0.95);
}

.ab-dot-pricing-card__features {
  list-style: none;
  margin: 1rem 0 0.25rem;
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #52525b;
}

.ab-dot-pricing-card__features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}

.ab-dot-pricing-card__features li:last-child {
  margin-bottom: 0;
}

.ab-dot-pricing-card__feat-ic {
  flex-shrink: 0;
  margin-top: 0.2em;
  font-size: 0.65rem;
  color: #0066cc;
}

.ab-dot-pricing-card--featured .ab-dot-pricing-card__features {
  color: rgba(245, 245, 247, 0.88);
}

.ab-dot-pricing-card--featured .ab-dot-pricing-card__feat-ic {
  color: rgba(125, 200, 255, 0.95);
}

.ab-dot-pricing-card__btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ab-dot-pricing-card__btn--ghost {
  background: var(--ab-dot-surface, #f7f9fc);
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ab-dot-pricing-card__btn--ghost:hover {
  background: var(--ab-dot-band, #f6f8fc);
}

.ab-dot-pricing-card__btn--light {
  background: var(--ab-dot-card-strong, #fafafc);
  color: #0066cc;
}

.ab-dot-pricing-card__btn--light:hover {
  background: #eff6ff;
}

.ab-dot-pricing-card__btn--primary {
  background: #0066cc;
  color: #fff;
  border: none;
}

.ab-dot-pricing-card__btn--primary:hover {
  background: #0055b3;
}

.ab-dot-pricing-card__btn:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

.ab-dot-pricing-footnotes {
  margin-top: 2rem;
  text-align: center;
}

.ab-dot-pricing-footnotes p {
  margin: 0.35rem 0;
  font-size: 0.8125rem;
  color: #6e6e73;
  line-height: 1.45;
}

.ab-dot-pricing-section .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;
}

@media (prefers-reduced-motion: reduce) {
  .ab-dot-pricing-toggle,
  .ab-dot-pricing-card__btn {
    transition: none;
  }
}

/* Lead calculator — quiet */
.ab-dot-roi-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.ab-dot-roi-inner {
  max-width: 44rem;
}

.ab-dot-roi-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ab-dot-roi-header .ab-dot-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.ab-dot-roi__panel {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  padding: 1.75rem 1.85rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.ab-dot-roi__controls {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ab-dot-roi__field {
  display: block;
}

.ab-dot-roi__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #424245;
  margin: 0 0 0.65rem;
}

.ab-dot-roi__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  margin: 0;
  border-radius: 999px;
  background: #e5e5ea;
  cursor: pointer;
}

.ab-dot-roi__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ab-dot-roi__range::-webkit-slider-thumb:hover {
  border-color: rgba(0, 102, 204, 0.35);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.12);
}

.ab-dot-roi__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
  cursor: pointer;
}

.ab-dot-roi__range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: #e5e5ea;
}

.ab-dot-roi__ticks {
  display: flex;
  justify-content: space-between;
  color: #86868b;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.ab-dot-roi__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.ab-dot-roi__stat {
  padding: 0;
  border: none;
  background: transparent;
}

.ab-dot-roi__k {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #86868b;
}

.ab-dot-roi__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  line-height: 1.15;
}

.ab-dot-roi__stat:last-child strong {
  color: #0066cc;
}

@media (max-width: 520px) {
  .ab-dot-roi__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .ab-dot-roi__panel {
    padding: 1.35rem 1.25rem;
  }
}

/* Before / After — quiet editorial compare */
.ab-dot-ba-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #fafbfc;
}

.ab-dot-ba-inner {
  max-width: 52rem;
}

.ab-dot-ba-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.ab-dot-ba-header .ab-dot-section-title {
  margin-bottom: 0;
}

.ab-dot-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.ab-dot-compare__card {
  border-radius: 20px;
  padding: 1.5rem 1.6rem 1.65rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.ab-dot-compare__card--before {
  background: rgba(255, 255, 255, 0.7);
}

.ab-dot-compare__card--after {
  border-color: rgba(0, 102, 204, 0.1);
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 12px 40px -20px rgba(0, 102, 204, 0.08);
}

.ab-dot-compare__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #86868b;
}

.ab-dot-compare__card--after .ab-dot-compare__label {
  color: #0066cc;
}

.ab-dot-compare__title {
  margin: 0 0 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #1d1d1f;
}

.ab-dot-compare__card--before .ab-dot-compare__title {
  color: #424245;
}

.ab-dot-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ab-dot-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #515154;
}

.ab-dot-compare__card--before .ab-dot-compare__list li {
  color: #6e6e73;
}

.ab-dot-compare__bullet {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: #c7c7cc;
}

.ab-dot-compare__bullet--yes {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: #f0f7ff;
  color: #0066cc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
}

.ab-dot-event-block {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 52%, #f5f9ff 100%);
  color: #0f172a;
  box-shadow: 0 20px 46px -34px rgba(30, 64, 175, 0.5);
  padding: 1.2rem 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}
.ab-dot-event-block::before,
.ab-dot-event-block::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.ab-dot-event-block::before {
  width: 250px;
  height: 250px;
  right: -100px;
  top: -115px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0) 70%);
}
.ab-dot-event-block::after {
  width: 190px;
  height: 190px;
  left: -80px;
  bottom: -95px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14), rgba(14, 165, 233, 0) 72%);
}
.ab-dot-event-block .ab-dot-eyebrow,
.ab-dot-event-block .ab-dot-section-title,
.ab-dot-event-block .ab-dot-section-sub {
  position: relative;
  z-index: 1;
}
.ab-dot-event-block .ab-dot-eyebrow {
  color: #1d4ed8;
}
.ab-dot-event-block .ab-dot-section-title {
  color: #0f172a;
}
.ab-dot-event-block .ab-dot-section-sub {
  color: #475569;
}
.ab-dot-event-block .ab-dot-section-sub {
  margin-bottom: 0.6rem;
}
.ab-dot-event-block__list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.87rem;
  color: #334155;
}
.ab-dot-event-block__list li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.ab-dot-event-block__list i {
  color: #2563eb;
  margin-top: 0.12rem;
}
.ab-dot-event-block__cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 210px;
}
.ab-dot-event-block__cta-wrap .ab-dot-btn-large--primary {
  background: #0f172a;
  color: #fff;
}
.ab-dot-event-block__cta-wrap .ab-dot-btn-large--primary:hover {
  background: #020617;
}
.ab-dot-event-block__cta-wrap .ab-dot-btn-large--secondary {
  color: #0f172a;
  font-weight: 700;
}
.ab-dot-event-block__cta-wrap .ab-dot-btn-large--secondary:hover {
  color: #020617;
}

/* Comparison matrix — quiet */
.ab-dot-matrix-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #fafbfc;
}

.ab-dot-matrix-inner {
  max-width: 52rem;
}

.ab-dot-matrix-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ab-dot-matrix-header .ab-dot-section-title {
  margin-bottom: 0;
}

.ab-dot-matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.ab-dot-matrix {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
}

.ab-dot-matrix th,
.ab-dot-matrix td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 0.875rem;
  text-align: center;
  vertical-align: middle;
  color: #515154;
}

.ab-dot-matrix th:first-child,
.ab-dot-matrix td:first-child {
  text-align: left;
  padding-left: 1.25rem;
}

.ab-dot-matrix thead th {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #86868b;
  background: transparent;
  padding-top: 1.15rem;
  padding-bottom: 0.85rem;
}

.ab-dot-matrix thead th.ab-dot-matrix__col-abutic {
  color: #0066cc;
  font-weight: 600;
}

.ab-dot-matrix tbody th[scope="row"] {
  font-weight: 500;
  color: #1d1d1f;
  text-align: left;
  background: transparent;
}

.ab-dot-matrix__col-abutic {
  background: rgba(0, 102, 204, 0.03);
}

.ab-dot-matrix tbody tr:last-child th,
.ab-dot-matrix tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 1.15rem;
}

.ab-dot-matrix__val {
  display: inline-block;
  font-weight: 500;
  font-size: 0.875rem;
}

.ab-dot-matrix__val--yes {
  color: #424245;
}

.ab-dot-matrix__col-abutic .ab-dot-matrix__val--yes {
  color: #0066cc;
  font-weight: 600;
}

.ab-dot-matrix__val--no {
  color: #c7c7cc;
  font-size: 1rem;
  font-weight: 400;
}

.ab-dot-matrix__val--part {
  color: #86868b;
  font-size: 0.8125rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .ab-dot-event-block {
    grid-template-columns: 1fr;
  }
  .ab-dot-compare {
    grid-template-columns: 1fr;
  }
  .ab-dot-event-block__cta-wrap {
    min-width: 0;
    width: 100%;
  }
}

/* Site footer (footert.php) — native dot styles; no Tailwind required */
body.ab-dot-home footer.ab-dot-site-footer,
footer.ab-dot-site-footer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 2.75rem 1.25rem 2rem !important;
  text-align: left !important;
  background: #fff !important;
  background-image: none !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #475569;
  flex: none !important;
}

.ab-dot-site-footer__inner {
  width: min(1024px, 100%);
  margin: 0 auto;
  padding: 0 0.5rem;
}

.ab-dot-site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

.ab-dot-site-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.ab-dot-site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.ab-dot-site-footer__links a,
.ab-dot-site-footer__powered a {
  color: #475569 !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  line-height: 1.45;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: inline !important;
  white-space: normal !important;
  transform: none !important;
  box-shadow: none !important;
}

.ab-dot-site-footer__links a:hover,
.ab-dot-site-footer__powered a:hover {
  color: #0066cc !important;
  background: transparent !important;
  transform: none !important;
}

.ab-dot-site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ab-dot-site-footer__social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc !important;
  color: #475569 !important;
  text-decoration: none !important;
  font-size: 1rem;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.ab-dot-site-footer__social a:hover {
  color: #0066cc !important;
  border-color: rgba(0, 102, 204, 0.25);
  background: #fff !important;
  transform: none !important;
}

.ab-dot-site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-align: center;
}

.ab-dot-site-footer__copy,
.ab-dot-site-footer__powered {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8 !important;
}

.ab-dot-site-footer__powered {
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .ab-dot-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ab-dot-site-footer__social {
    justify-content: flex-start;
  }
}





