/* =============================================================================
   BASE.CSS — Sendcorex shared foundation
   Inclui: tokens, reset, tipografia, botões, container, animações,
           seções, mac-dots, code-editor, lang-tabs, two-col,
           reviews, faq, pricing, stats, sticky-cta, footer, nav,
           comparison table, deliver-list, feature-list, integration-grid
   NÃO inclui: nada exclusivo de uma única página
============================================================================= */
html {
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
    overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
    overflow-y: auto;
  overflow-x: hidden;
}

body {
  transform-origin: top left;
  @media screen and (min-width: 1024px) and (max-width: 1279px) {
    transform: scale(0.54);
    width: calc(100% / 0.54);
    height: calc(100% / 0.54);
  }
  @media screen and (min-width: 1280px) and (max-width: 1365px) {
    transform: scale(0.66);
    width: calc(100% / 0.66);
    height: calc(100% / 0.66);
  }
  @media screen and (min-width: 1366px) and (max-width: 1439px) {
    transform: scale(0.70);
    width: calc(100% / 0.70);
    height: calc(100% / 0.70);
  }
  @media screen and (min-width: 1440px) and (max-width: 1535px) {
    transform: scale(0.74);
    width: calc(100% / 0.74);
    height: calc(100% / 0.74);
  }
  @media screen and (min-width: 1536px) and (max-width: 1599px) {
    transform: scale(0.78);
    width: calc(100% / 0.78);
    height: calc(100% / 0.78);
  }
  @media screen and (min-width: 1600px) and (max-width: 1791px) {
    transform: scale(0.82);
    width: calc(100% / 0.82);
    height: calc(100% / 0.82);
  }
  @media screen and (min-width: 1792px) and (max-width: 1919px) {
    transform: scale(0.90);
    width: calc(100% / 0.90);
    height: calc(100% / 0.90);
  }
  @media screen and (min-width: 1920px) and (max-width: 2047px) {
    transform: scale(0.98);
    width: calc(100% / 0.98);
    height: calc(100% / 0.98);
  }
  @media screen and (min-width: 2048px) and (max-width: 2559px) {
    transform: scale(1.05);
    width: calc(100% / 1.05);
    height: calc(100% / 1.05);
  }
  @media screen and (min-width: 2560px) and (max-width: 3839px) {
    transform: scale(1.10);
    width: calc(100% / 1.10);
    height: calc(100% / 1.10);
  }
  @media screen and (min-width: 3840px) {
    transform: scale(1.20);
    width: calc(100% / 1.20);
    height: calc(100% / 1.20);
  }
}

/* ── Tokens (design system) ──────────────────────────────────────────────── */
:root {
  /* Cores */
  --blue: #0070f3;
  --blue-light: #3291ff;
  --blue-dim: rgba(0, 112, 243, 0.12);
  --green: #00c851;
  --purple: #7928ca;
  --purple-light: #b794f4;
  --amber: #f5a623;
  --amber-light: #fbbf24;
  --orange: #f97316;
  --red: #e00;

  /* Backgrounds */
  --navy: #0a0a0a;
  --navy-mid: #111111;
  --navy-dark: #000000;
  --navy-card: #161616;

  /* Superfícies */
  --white: #ffffff;
  --gray-page: #0f0f0f;
  --gray-border: #1a1a1a;
  --gray-bg: #141414;

  /* Texto */
  --text-dark: #ededed;
  --text-muted: #888888;
  --text-hint: #555555;

  /* Border-radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 40px;

  /* Tipografia */
  --font-sans: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", "Fira Code", "Consolas", monospace;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
}

/* ── Container ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 760px;
}

/* ── Animações ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes streamIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logRowIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSwap {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards;
}
.delay-0 {
  animation-delay: 0.05s;
}
.delay-1 {
  animation-delay: 0.15s;
}
.delay-2 {
  animation-delay: 0.28s;
}
.delay-3 {
  animation-delay: 0.42s;
}
.delay-4 {
  animation-delay: 0.58s;
}

/* ── Botões ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s var(--ease),
    box-shadow 0.18s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn-primary.btn-lg {
  font-size: 15px;
  padding: 13px 26px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid #333;
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s var(--ease);
}
.btn-outline:hover {
  border-color: #555;
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline.btn-lg {
  font-size: 15px;
  padding: 13px 24px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #888;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.18s ease;
}
.btn-ghost:hover {
  color: #fff;
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.nav__links a:hover {
  color: #fff;
  background: #1a1a1a;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: #555;
  border-radius: 2px;
  display: block;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid #1a1a1a;
  background: var(--navy);
}
.nav__mobile a {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
}
.nav__mobile a:last-child {
  border: none;
  margin-top: 8px;
}
.nav__mobile.open {
  display: flex;
}

/* ── Seções ──────────────────────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section--navy {
  background: var(--navy);
}
.section--white {
  background: #0f0f0f;
}
.section--gray {
  background: var(--navy);
}

.section-heading {
  margin-bottom: 40px;
}
.section-heading--center {
  text-align: center;
}
.section-heading__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.section-heading__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-heading__title--white,
.section-heading__title--dark {
  color: #fff;
}
.section-heading__sub {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}
.section-heading__sub--dim {
  color: #666;
}

/* CTA dentro de seção */
.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 28px 32px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-lg);
}
.section-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-cta__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}
.section-cta__sub {
  font-size: 13px;
  color: #555;
}
.section-cta__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Mac dots ────────────────────────────────────────────────────────────── */
.mac-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.mac-dot--red {
  background: #ff5f57;
}
.mac-dot--yellow {
  background: #febc2e;
}
.mac-dot--green {
  background: #28c840;
}

/* ── Code editor ─────────────────────────────────────────────────────────── */
.code-wrap {
  margin: 0 auto;
}
.code-editor {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #1f1f1f;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
}
.code-editor__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #111;
  border-bottom: 1px solid #1f1f1f;
}
.code-editor__tab {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #888;
  padding: 4px 12px;
  background: #1a1a1a;
  border-top: 2px solid var(--blue);
  border-right: 1px solid #1f1f1f;
  margin-left: 4px;
}
.code-editor__copy {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #444;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 5px;
  transition:
    color 0.15s,
    background 0.15s;
}
.code-editor__copy:hover {
  color: #fff;
  background: #1f1f1f;
}
.code-editor__pre {
  background: var(--navy);
  padding: 20px 24px;
  margin: 0;
  max-height: 380px;
  overflow-y: auto;
}
.code-editor__pre::-webkit-scrollbar {
  width: 4px;
}
.code-editor__pre::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
.code-editor__pre code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: #cdd6f4;
  white-space: pre;
  display: block;
}

/* ── Lang tabs ───────────────────────────────────────────────────────────── */
.lang-tabs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 auto 14px;
  align-items: stretch;
}

.lang-tab {
  display: inline-flex;
  flex: 0 0 100px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 6px;
  width: 80px;
  min-height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid #1f1f1f;
  background: #111;
  color: #555;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
  position: relative;
  isolation: isolate;
}
.lang-tab img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0.7);
}
.lang-tab:hover,
.lang-tab.active {
  border-color: #333;
  background: #1a1a1a;
  color: var(--text-dark);
}
.lang-tab.active img {
  filter: brightness(1);
}

@property --lt-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes lt-spin {
  from {
    --lt-angle: 0deg;
  }
  to {
    --lt-angle: 360deg;
  }
}
.lang-tab::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-sm) + 1px);
  background: conic-gradient(
    from var(--lt-angle, 0deg),
    transparent 0deg,
    transparent 60deg,
    #3291ff 80deg,
    #7928ca 90deg,
    #3291ff 100deg,
    transparent 120deg,
    transparent 360deg
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  box-sizing: border-box;
}
.lang-tab:hover::before,
.lang-tab.active::before {
  opacity: 1;
  animation: lt-spin 2s linear infinite;
}

/* ── Two-col layout ──────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col__desc {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin: 16px 0 28px;
  font-weight: 400;
}
.two-col__desc--dim {
  color: #666;
}

/* ── Feature list ────────────────────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #888;
}
.feature-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230070f3' fill-opacity='.15'/%3E%3Cpath d='M5.5 10.5l3 3 6-6' stroke='%230070f3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/cover;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Integration grid ────────────────────────────────────────────────────── */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.int-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-md);
  transition:
    border-color 0.18s ease,
    transform 0.18s var(--ease);
}
.int-card:hover {
  border-color: #333;
  transform: translateY(-2px);
}
.int-card__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.int-card__icon--blue {
  background: rgba(0, 112, 243, 0.12);
  color: var(--blue-light);
}
.int-card__icon--purple {
  background: rgba(121, 40, 202, 0.12);
  color: var(--purple-light);
}
.int-card__icon--green {
  background: rgba(0, 200, 81, 0.1);
  color: var(--green);
}
.int-card__icon--amber {
  background: rgba(245, 166, 35, 0.1);
  color: var(--amber-light);
}
.int-card__body {
  flex: 1;
  min-width: 0;
}
.int-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}
.int-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.int-card__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.int-card__badge--blue {
  background: rgba(0, 112, 243, 0.12);
  color: var(--blue-light);
}
.int-card__badge--purple {
  background: rgba(121, 40, 202, 0.12);
  color: var(--purple-light);
}
.int-card__badge--green {
  background: rgba(0, 200, 81, 0.1);
  color: var(--green);
}
.int-card__badge--amber {
  background: rgba(245, 166, 35, 0.1);
  color: var(--amber-light);
}
.int-card__desc {
  font-size: 11.5px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* ── Stats row ───────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
}
.stat-item__val {
  display: block;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  font-size: 14px;
  color: #555;
}

/* ── Comparison table ────────────────────────────────────────────────────── */
.cmp-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid #1f1f1f;
  background: #111;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-family: var(--font-sans);
}
.cmp-th {
  padding: 14px 18px;
  text-align: center;
  background: #0f0f0f;
  border-bottom: 1px solid #1f1f1f;
}
.cmp-th--feature {
  text-align: left;
  width: 32%;
}
.cmp-th--scx {
  background: rgba(0, 112, 243, 0.06);
  border-left: 1px solid rgba(0, 112, 243, 0.2);
  border-right: 1px solid rgba(0, 112, 243, 0.2);
}
.cmp-th__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  letter-spacing: -0.01em;
}
.cmp-th--scx .cmp-th__name {
  color: var(--blue-light);
}
.cmp-th__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.cmp-row {
  border-bottom: 1px solid #1f1f1f;
  transition: background 0.15s ease;
}
.cmp-row:last-child {
  border-bottom: none;
}
.cmp-row:hover {
  background: #141414;
}
.cmp-row--highlight {
  background: rgba(0, 112, 243, 0.04);
}
.cmp-row--highlight .cmp-label {
  font-weight: 600;
  color: var(--text-dark);
}
.cmp-label {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  font-family: var(--font-sans);
}
.cmp-cell {
  padding: 13px 18px;
  text-align: center;
  font-size: 12.5px;
  font-family: var(--font-sans);
  vertical-align: middle;
}
.cmp-cell--scx {
  background: rgba(0, 112, 243, 0.04);
  border-left: 1px solid rgba(0, 112, 243, 0.12);
  border-right: 1px solid rgba(0, 112, 243, 0.12);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 13px;
}
.cmp-cell--text {
  color: #444;
  font-size: 12px;
}
.cmp-cell--scx.cmp-cell--text {
  color: var(--blue-light);
  font-size: 13px;
}
.cmp-disclaimer {
  font-size: 11px;
  color: #333;
  text-align: right;
  margin-top: 10px;
  font-family: var(--font-sans);
}

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.reviews-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.2s ease;
}
.review-card:hover {
  border-color: #333;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  margin-bottom: 16px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.review-card__role {
  font-size: 11px;
  color: #444;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item {
  border: none;
  border-radius: 0;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: #0f0f0f;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-item__q:hover {
  background: #141414;
}
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item__icon svg {
  display: block;
  stroke: #555;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  background: #0f0f0f;
}
.faq-item.open .faq-item__a {
  display: block;
}
.faq__footer {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 36px;
  color: #555;
}
.faq__footer a {
  color: var(--blue-light);
  font-weight: 600;
}
.faq__footer a:hover {
  text-decoration: underline;
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card {
  background: #0f0f0f;
  padding: 28px;
  position: relative;
  transition: background 0.18s ease;
}
.pricing-card:hover {
  background: #141414;
}
.pricing-card--featured {
  background: #111;
  outline: 1px solid var(--blue);
  outline-offset: -1px;
  z-index: 1;
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-card__name {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-card__price {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.pricing-card__price span {
  font-size: 18px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: #888;
}
.pricing-card__period {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}
.pricing-card__emails {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  transition:
    opacity 0.15s,
    transform 0.15s;
  border: 1px solid #2a2a2a;
  color: var(--text-dark);
}
.pricing-card--featured .pricing-card__cta {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.pricing-card:not(.pricing-card--featured) .pricing-card__cta:hover {
  background: #1a1a1a;
}
.pricing-card__cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #666;
}
.pricing-card__feat::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3.5 3.5 6.5-7' stroke='%230070f3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/cover;
}

/* ── Sticky CTA bar ──────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-pill);
  padding: 10px 16px 10px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
  max-width: calc(100vw - 32px);
}
.sticky-cta--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.sticky-cta__text {
  font-size: 13px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__text strong {
  color: var(--text-dark);
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.sticky-cta__btn:hover {
  background: #e6e6e6;
}
.sticky-cta__dismiss {
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.15s;
  flex-shrink: 0;
}
.sticky-cta__dismiss:hover {
  color: #fff;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
}
.footer__inner {
  display: flex;
  gap: 64px;
  padding: 48px 0 40px;
}
.footer__brand {
  flex: 1;
}
.footer__tagline {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}
.footer__links {
  display: flex;
  gap: 48px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
}
.footer__col a {
  font-size: 14px;
  color: #555;
  transition: color 0.15s;
}
.footer__col a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 16px 24px;
  font-size: 13px;
  color: #333;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    background: none;
    border: 1px solid #1a1a1a;
  }
  .pricing-card {
    border-bottom: 1px solid #1a1a1a;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .section-heading__title {
    font-size: 30px;
  }
  .nav__links,
  .nav__actions .btn-ghost {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0 24px;
  }
  .footer__links {
    gap: 32px;
  }
  .cmp-label {
    padding: 11px 12px;
    font-size: 12px;
  }
  .cmp-cell {
    padding: 11px 8px;
    font-size: 11px;
  }
  .cmp-th {
    padding: 11px 8px;
  }
  .cmp-th__name {
    font-size: 12px;
  }
  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-cta__text {
    display: none;
  }
}
@media (max-width: 480px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
}
