/* AccessEased marketing / landing */

:root {
  --mkt-ink: #121417;
  --mkt-ink-soft: #2a2f36;
  --mkt-pill: #1a1d21;
  --mkt-pill-border: rgba(255, 255, 255, 0.06);
  --mkt-paper: #f4f6f8;
  --mkt-paper-deep: #e8ecf1;
  --mkt-blue: #1d6ef5;
  --mkt-blue-strong: #1558c7;
  --mkt-blue-soft: #e8f0fe;
  --mkt-muted: #5b6570;
  --mkt-white: #ffffff;
  --mkt-shadow: 0 10px 28px rgba(18, 20, 23, 0.18);
  --mkt-font: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.mkt-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--mkt-font);
  color: var(--mkt-ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(29, 110, 245, 0.12), transparent 60%),
    linear-gradient(180deg, #f7f9fb 0%, var(--mkt-paper) 40%, #eef2f6 100%);
  overflow-x: hidden;
}

/* —— Floating capsule navbar (desktop) —— */
.mkt-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 1rem 0;
  pointer-events: none;
}

.mkt-nav {
  pointer-events: auto;
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  animation: mkt-nav-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mkt-nav-panel {
  display: contents;
}

.mkt-nav-toggle {
  display: none;
}

.mkt-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  background: var(--mkt-pill);
  color: var(--mkt-white);
  border: 1px solid var(--mkt-pill-border);
  border-radius: 999px;
  box-shadow: var(--mkt-shadow);
  text-decoration: none;
}

.mkt-pill--brand {
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mkt-pill--brand:hover {
  transform: translateY(-1px);
  background: #22262b;
}

.mkt-brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
}

.mkt-brand-name {
  font-family: var(--mkt-font);
  font-size: 0.95rem;
  white-space: nowrap;
}

.mkt-pill--links {
  gap: 0.15rem;
  padding: 0.35rem 0.4rem 0.35rem 0.55rem;
  overflow-x: auto;
  max-width: 100%;
}

.mkt-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.mkt-nav-link:hover,
.mkt-nav-link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mkt-home-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.mkt-nav-cta {
  margin-left: 0.2rem;
  background: var(--mkt-blue);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(29, 110, 245, 0.45);
}

.mkt-nav-cta:hover {
  background: var(--mkt-blue-strong) !important;
}

.mkt-pill--actions {
  gap: 0.35rem;
  padding: 0.35rem;
}

.mkt-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mkt-action--ghost {
  color: rgba(255, 255, 255, 0.92);
}

.mkt-action--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mkt-action--solid {
  background: var(--mkt-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(29, 110, 245, 0.4);
}

.mkt-action--solid:hover {
  background: var(--mkt-blue-strong);
  transform: translateY(-1px);
}

/* —— Page sections —— */
.mkt-hero {
  position: relative;
  isolation: isolate;
  padding: 4.5rem 1.25rem 3rem;
  text-align: center;
}

.mkt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(18, 20, 23, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, #000 20%, transparent 75%);
  animation: mkt-grid-drift 18s linear infinite;
}

.mkt-hero-brand {
  font-family: var(--mkt-font);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--mkt-ink);
  margin: 0;
  animation: mkt-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.mkt-hero-title {
  margin: 1.1rem auto 0;
  max-width: 38rem;
  font-family: var(--mkt-font);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--mkt-ink-soft);
  animation: mkt-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.mkt-hero-lead {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--mkt-muted);
  animation: mkt-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.mkt-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  animation: mkt-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.mkt-btn--primary {
  background: var(--mkt-blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(29, 110, 245, 0.35);
}

.mkt-btn--primary:hover {
  background: var(--mkt-blue-strong);
  transform: translateY(-2px);
}

.mkt-btn--ghost {
  background: var(--mkt-white);
  color: var(--mkt-ink);
  border: 1px solid rgba(18, 20, 23, 0.12);
}

.mkt-btn--ghost:hover {
  border-color: rgba(18, 20, 23, 0.28);
  transform: translateY(-2px);
}

.mkt-preview-wrap {
  margin: 3rem auto 0;
  max-width: 64rem;
  padding: 0 0.5rem;
  animation: mkt-float-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.mkt-preview {
  border-radius: 1.1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow:
    0 30px 60px rgba(18, 20, 23, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transform: perspective(1400px) rotateX(4deg);
  transform-origin: center top;
}

.mkt-preview--image {
  background: #f4f6f8;
}

.mkt-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(58vh, 34rem);
  object-fit: cover;
  object-position: top center;
  background: #f4f6f8;
  vertical-align: top;
}

.mkt-preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(180deg, #fafbfc, #f0f2f5);
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
}

.mkt-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #d1d5db;
}

.mkt-dot:nth-child(1) { background: #ff5f57; }
.mkt-dot:nth-child(2) { background: #febc2e; }
.mkt-dot:nth-child(3) { background: #28c840; }

.mkt-preview-body {
  display: grid;
  grid-template-columns: 11rem 1fr;
  min-height: 18rem;
}

.mkt-preview-side {
  padding: 1rem 0.85rem;
  background: #f8fafc;
  border-right: 1px solid rgba(18, 20, 23, 0.06);
  font-size: 0.72rem;
  color: var(--mkt-muted);
}

.mkt-preview-side strong {
  display: block;
  margin: 0.85rem 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.mkt-preview-side span {
  display: block;
  padding: 0.35rem 0.45rem;
  border-radius: 0.45rem;
  margin-bottom: 0.15rem;
}

.mkt-preview-side span.is-on {
  background: var(--mkt-blue-soft);
  color: var(--mkt-blue-strong);
  font-weight: 600;
}

.mkt-preview-main {
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(29, 110, 245, 0.05), transparent 40%),
    #fff;
}

.mkt-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.mkt-kpi {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid rgba(18, 20, 23, 0.05);
  text-align: left;
}

.mkt-kpi small {
  display: block;
  font-size: 0.65rem;
  color: var(--mkt-muted);
}

.mkt-kpi strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.mkt-kpi em {
  font-style: normal;
  font-size: 0.65rem;
  color: #059669;
}

.mkt-chart-block {
  margin-top: 0.85rem;
  height: 7.5rem;
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(29, 110, 245, 0.08) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(148, 163, 184, 0.15) 18px,
      rgba(148, 163, 184, 0.15) 19px
    );
  position: relative;
  overflow: hidden;
}

.mkt-chart-line {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 18%;
  height: 55%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cpath d='M0 55 C40 50 60 20 100 28 C140 36 160 60 200 45 C240 30 280 10 320 22 C360 34 380 40 400 28' fill='none' stroke='%231d6ef5' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  animation: mkt-draw 2.2s ease 0.6s both;
}

.mkt-section {
  max-width: 64rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.mkt-section h2 {
  font-family: var(--mkt-font);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.mkt-section > p {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--mkt-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.mkt-feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
}

.mkt-section--centered {
  text-align: center;
}

.mkt-section--centered > h2,
.mkt-section--centered > .mkt-section-lead {
  margin-left: auto;
  margin-right: auto;
}

.mkt-section-lead {
  margin: 0 auto 2.25rem;
  max-width: 40rem;
  color: var(--mkt-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.mkt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: none;
  margin: 0;
  width: 100%;
  text-align: left;
}

.mkt-card-grid--benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mkt-why-timeline {
  --why-icon: 3rem;
  --why-gap: 1.15rem;
  position: relative;
  display: grid;
  gap: 1.35rem;
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
}

.mkt-why-timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--why-icon) / 2);
  top: calc(var(--why-icon) / 2);
  bottom: calc(var(--why-icon) / 2);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(18, 20, 23, 0.1);
  border-radius: 999px;
}

.mkt-why-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--why-icon) minmax(0, 1fr);
  gap: var(--why-gap);
  align-items: center;
}

.mkt-why-icon {
  display: grid;
  place-items: center;
  width: var(--why-icon);
  height: var(--why-icon);
  border-radius: 50%;
  background: var(--mkt-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(29, 110, 245, 0.28);
}

.mkt-why-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mkt-why-card {
  padding: 1.15rem 1.35rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 1px 2px rgba(18, 20, 23, 0.03);
}

.mkt-why-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--mkt-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
}

.mkt-why-card p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mkt-info-card--compact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.mkt-info-card--compact h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.mkt-compare-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(18, 20, 23, 0.08);
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 20, 23, 0.06);
  text-align: left;
}

.mkt-compare {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.mkt-compare th,
.mkt-compare td {
  padding: 1rem 1.25rem;
  vertical-align: top;
}

.mkt-compare thead th {
  font-family: var(--mkt-font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: #f4f6f8;
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
}

.mkt-compare thead th:first-child {
  color: var(--mkt-muted);
  width: 50%;
}

.mkt-compare thead th:last-child {
  color: var(--mkt-blue-strong);
  background: var(--mkt-blue-soft);
}

.mkt-compare tbody td {
  border-top: 1px solid rgba(18, 20, 23, 0.06);
  color: var(--mkt-ink-soft);
  line-height: 1.45;
}

.mkt-compare tbody td:first-child {
  color: var(--mkt-muted);
}

.mkt-compare tbody td:last-child {
  font-weight: 600;
  color: var(--mkt-ink);
  background: rgba(29, 110, 245, 0.04);
}

.mkt-compare tbody tr:hover td:last-child {
  background: rgba(29, 110, 245, 0.08);
}

.mkt-info-card {
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 1px 2px rgba(18, 20, 23, 0.03);
}

.mkt-info-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  color: var(--mkt-blue);
}

.mkt-info-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.mkt-info-icon--box {
  border-radius: 0.65rem;
  background: var(--mkt-blue);
  color: #fff;
}

.mkt-info-icon--box svg {
  width: 1.2rem;
  height: 1.2rem;
}

.mkt-info-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--mkt-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
}

.mkt-info-card p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mkt-tab-detail {
  margin: 0;
  max-width: 40rem;
  color: var(--mkt-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.mkt-transition {
  margin: 2.75rem 0 0;
  font-family: var(--mkt-font);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mkt-ink);
  text-align: center;
}

.mkt-feature-tab {
  padding: 0.85rem 0.5rem 1rem;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--mkt-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mkt-feature-tab strong {
  display: block;
  font-size: 0.92rem;
  color: var(--mkt-ink);
  margin-bottom: 0.2rem;
}

.mkt-feature-tab span {
  font-size: 0.8rem;
  line-height: 1.35;
}

.mkt-feature-tab.is-active {
  border-bottom-color: var(--mkt-blue);
  color: var(--mkt-ink);
}

.mkt-feature-tab.is-active strong {
  color: var(--mkt-blue-strong);
}

.mkt-flow-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  margin: 0 auto 2rem;
  border-radius: 999px;
  background: rgba(18, 20, 23, 0.06);
  border: 1px solid rgba(18, 20, 23, 0.06);
}

.mkt-flow-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-family: var(--mkt-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mkt-muted);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.mkt-flow-toggle-btn.is-active {
  background: var(--mkt-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(29, 110, 245, 0.35);
}

.mkt-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  max-width: none;
  margin: 0;
  width: 100%;
  text-align: left;
}

.mkt-flow.hidden {
  display: none;
}

.mkt-flow-step {
  width: 100%;
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 1px 2px rgba(18, 20, 23, 0.03);
  text-align: left;
}

.mkt-flow-step-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mkt-blue);
}

.mkt-flow-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  color: var(--mkt-blue);
  border-radius: 0.65rem;
}

.mkt-flow-icon.mkt-info-icon--box {
  background: var(--mkt-blue);
  color: #fff;
}

.mkt-flow-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.mkt-flow-step h3 {
  margin: 0;
  font-family: var(--mkt-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
}

.mkt-steps {
  display: grid;
  gap: 1.25rem;
}

.mkt-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.mkt-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--mkt-blue-soft);
  color: var(--mkt-blue-strong);
  font-weight: 700;
  font-family: var(--mkt-font);
}

.mkt-step h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.mkt-step p {
  margin: 0;
  color: var(--mkt-muted);
  line-height: 1.5;
}

.mkt-faq {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 0.65rem;
}

.mkt-faq-item {
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 1px 2px rgba(18, 20, 23, 0.03);
  overflow: hidden;
}

.mkt-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-family: var(--mkt-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
  position: relative;
}

.mkt-faq-item summary::-webkit-details-marker {
  display: none;
}

.mkt-faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--mkt-muted);
  border-bottom: 2px solid var(--mkt-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.18s ease;
}

.mkt-faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.mkt-faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--mkt-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.mkt-faq-item p strong {
  color: var(--mkt-ink);
}

.mkt-faq-item.is-faq-hidden {
  display: none;
}

.mkt-faq-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
  max-width: 48rem;
  margin: 1.5rem auto 0;
}

.mkt-faq-pager-btn {
  appearance: none;
  border: 1px solid rgba(18, 20, 23, 0.12);
  background: #fff;
  color: var(--mkt-ink);
  cursor: pointer;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-family: var(--mkt-font);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.mkt-faq-pager-btn:hover:not(:disabled) {
  border-color: rgba(29, 110, 245, 0.35);
  color: var(--mkt-blue-strong);
}

.mkt-faq-pager-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mkt-faq-pager-btn--primary {
  background: var(--mkt-blue);
  border-color: var(--mkt-blue);
  color: #fff;
}

.mkt-faq-pager-btn--primary:hover:not(:disabled) {
  background: var(--mkt-blue-strong);
  border-color: var(--mkt-blue-strong);
  color: #fff;
}

.mkt-faq-pager-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.mkt-faq-dot {
  appearance: none;
  border: 0;
  padding: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(18, 20, 23, 0.18);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.mkt-faq-dot.is-active {
  background: var(--mkt-blue);
  transform: scale(1.15);
}

.mkt-faq-pager-status {
  margin: 0;
  min-width: 3.25rem;
  text-align: center;
  color: var(--mkt-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.mkt-contact {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.25rem;
  background: var(--mkt-ink);
  color: #fff;
  box-shadow: var(--mkt-shadow);
}

.mkt-contact h2 {
  color: #fff;
}

.mkt-contact p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.mkt-contact a.mkt-btn--primary {
  justify-self: start;
}

.mkt-contact-form {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 1.1rem;
}

.mkt-field {
  display: grid;
  gap: 0.4rem;
}

.mkt-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mkt-ink-soft);
}

.mkt-field input,
.mkt-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(18, 20, 23, 0.12);
  background: #fff;
  color: var(--mkt-ink);
  font-family: var(--mkt-font);
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(18, 20, 23, 0.03);
}

.mkt-field input:focus,
.mkt-field textarea:focus {
  outline: 2px solid rgba(29, 110, 245, 0.35);
  outline-offset: 1px;
  border-color: rgba(29, 110, 245, 0.45);
}

.mkt-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.mkt-contact-form .mkt-btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.mkt-form-alert {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.45;
}

.mkt-form-alert--ok {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #166534;
}

.mkt-form-alert--err {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: #991b1b;
}

.mkt-footer {
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  color: var(--mkt-muted);
  font-size: 0.85rem;
}

.mkt-pricing-hero {
  padding-top: 7.5rem;
}

.mkt-pricing-hero > h1 {
  font-family: var(--mkt-font);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 0.75rem;
  color: var(--mkt-ink);
}

.mkt-price-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  margin: 0 auto 2.25rem;
  border-radius: 999px;
  background: rgba(18, 20, 23, 0.06);
  border: 1px solid rgba(18, 20, 23, 0.06);
}

.mkt-price-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--mkt-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mkt-muted);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.mkt-price-toggle-btn.is-active {
  background: var(--mkt-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(29, 110, 245, 0.35);
}

.mkt-price-save {
  margin-left: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.9;
}

.mkt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  text-align: center;
  width: 100%;
}

.mkt-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 1.6rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 1px 2px rgba(18, 20, 23, 0.03);
  text-align: center;
}

.mkt-price-card--featured {
  border-color: rgba(29, 110, 245, 0.35);
  box-shadow:
    0 0 0 1px rgba(29, 110, 245, 0.12),
    0 18px 40px rgba(29, 110, 245, 0.12);
}

.mkt-price-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: var(--mkt-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mkt-price-card h2 {
  margin: 0 0 0.55rem;
  font-family: var(--mkt-font);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mkt-ink);
}

.mkt-price-card-desc {
  margin: 0 0 1.25rem;
  max-width: 18rem;
  color: var(--mkt-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mkt-price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
}

.mkt-price-value {
  font-family: var(--mkt-font);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--mkt-ink);
  line-height: 1;
}

.mkt-price-period {
  color: var(--mkt-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.mkt-price-features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  width: 100%;
  max-width: 16.5rem;
  text-align: left;
  display: grid;
  gap: 0.7rem;
}

.mkt-price-features li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--mkt-ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mkt-price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.85rem no-repeat,
    rgba(22, 163, 74, 0.12);
}

.mkt-price-features strong {
  color: var(--mkt-ink);
  font-weight: 700;
}

.mkt-price-cta {
  margin-top: auto;
  width: 100%;
  max-width: 14rem;
  justify-content: center;
}

.mkt-price-compare-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.08);
}

.mkt-price-compare {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 36rem;
}

.mkt-price-compare th,
.mkt-price-compare td {
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
  font-size: 0.92rem;
}

.mkt-price-compare thead th {
  font-family: var(--mkt-font);
  font-weight: 700;
  color: var(--mkt-ink);
  background: rgba(29, 110, 245, 0.04);
}

.mkt-price-compare tbody th {
  font-weight: 600;
  color: var(--mkt-ink-soft);
}

.mkt-price-compare tbody td {
  text-align: center;
  color: var(--mkt-muted);
}

.mkt-check {
  color: #16a34a;
  font-weight: 700;
}

.mkt-dash {
  color: rgba(18, 20, 23, 0.28);
}

@keyframes mkt-nav-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mkt-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mkt-float-in {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mkt-grid-drift {
  from { background-position: 0 0; }
  to { background-position: 22px 22px; }
}

@keyframes mkt-draw {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@media (max-width: 1024px) {
  .mkt-nav-wrap {
    padding: 0;
    pointer-events: auto;
    background: #fff;
    border-bottom: 1px solid rgba(18, 20, 23, 0.08);
    box-shadow: 0 1px 0 rgba(18, 20, 23, 0.03);
  }

  .mkt-nav {
    position: relative;
    max-width: none;
    margin: 0;
    padding: 0.7rem 1rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.75rem;
    animation: none;
  }

  .mkt-pill--brand {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--mkt-ink);
    padding: 0.25rem 0.15rem 0.25rem 0;
    border-radius: 0;
  }

  .mkt-pill--brand:hover {
    transform: none;
    background: transparent;
  }

  .mkt-brand-name {
    display: inline;
    color: var(--mkt-ink);
  }

  .mkt-nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-left: auto;
    border: 1px solid rgba(18, 20, 23, 0.1);
    border-radius: 0.7rem;
    background: #fff;
    color: var(--mkt-ink);
    cursor: pointer;
    padding: 0;
    transition: background 0.18s ease, border-color 0.18s ease;
  }

  .mkt-nav-toggle:hover {
    background: var(--mkt-blue-soft);
    border-color: rgba(29, 110, 245, 0.25);
  }

  .mkt-nav-toggle-bars {
    display: grid;
    gap: 0.28rem;
    width: 1.05rem;
  }

  .mkt-nav-toggle-bars span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  .mkt-nav-wrap.is-open .mkt-nav-toggle-bars span:nth-child(1) {
    transform: translateY(0.34rem) rotate(45deg);
  }

  .mkt-nav-wrap.is-open .mkt-nav-toggle-bars span:nth-child(2) {
    opacity: 0;
  }

  .mkt-nav-wrap.is-open .mkt-nav-toggle-bars span:nth-child(3) {
    transform: translateY(-0.34rem) rotate(-45deg);
  }

  .mkt-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 60;
    padding: 0.75rem 1rem 1.15rem;
    background: #fff;
    border-bottom: 1px solid rgba(18, 20, 23, 0.08);
    box-shadow: 0 16px 32px rgba(18, 20, 23, 0.1);
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .mkt-nav-wrap.is-open .mkt-nav-panel {
    display: flex;
  }

  .mkt-pill--links,
  .mkt-pill--actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    max-width: none;
  }

  .mkt-pill--links {
    order: unset;
    justify-content: flex-start;
  }

  .mkt-nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    color: var(--mkt-ink-soft);
    background: transparent;
  }

  .mkt-nav-link:hover,
  .mkt-nav-link.is-active {
    background: rgba(18, 20, 23, 0.05);
    color: var(--mkt-ink);
  }

  .mkt-nav-cta {
    margin-left: 0;
    background: var(--mkt-blue-soft);
    color: var(--mkt-blue-strong) !important;
    box-shadow: none;
  }

  .mkt-nav-cta:hover {
    background: #d7e6fd !important;
  }

  .mkt-pill--actions {
    padding-top: 0.35rem;
    border-top: 1px solid rgba(18, 20, 23, 0.08);
  }

  .mkt-action {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
  }

  .mkt-action--ghost {
    color: var(--mkt-ink);
    background: rgba(18, 20, 23, 0.04);
  }

  .mkt-action--ghost:hover {
    background: rgba(18, 20, 23, 0.08);
  }

  .mkt-action--solid {
    box-shadow: none;
  }

  .mkt-action--solid:hover {
    transform: none;
  }

  .mkt-body.is-nav-open {
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .mkt-feature-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }

  .mkt-flow {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-card-grid--benefits {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-kpi-row {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-preview-body {
    grid-template-columns: 1fr;
  }

  .mkt-preview-side {
    display: none;
  }

  .mkt-preview {
    transform: none;
  }
}

@media (max-width: 560px) {
  .mkt-feature-tabs {
    grid-template-columns: 1fr;
  }

  .mkt-card-grid {
    grid-template-columns: 1fr;
  }

  .mkt-flow {
    grid-template-columns: 1fr;
  }

  .mkt-card-grid--benefits {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-nav,
  .mkt-hero-brand,
  .mkt-hero-title,
  .mkt-hero-lead,
  .mkt-hero-ctas,
  .mkt-preview-wrap,
  .mkt-hero::before,
  .mkt-chart-line {
    animation: none !important;
  }
}
