@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #111318;
  --muted: #667085;
  --muted-strong: #475467;
  --primary: #0f2a4d;
  --primary-2: #1e3a66;
  --surface: #ffffff;
  --canvas: #f5f7fa;
  --line: #e8ecf2;
  --line-strong: #d7deea;
  --success: #2fa66a;
  --warning: #b7791f;
  --shadow: 0 18px 50px rgba(15, 42, 77, 0.08);
  --soft-shadow: 0 10px 28px rgba(15, 42, 77, 0.06);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(30, 58, 102, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--canvas) 40%, #ffffff 100%);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(15, 42, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 42, 77, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(76px, 9vw, 132px) 0;
}

main section {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(232, 236, 242, 0.86);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  width: 156px;
  height: auto;
  object-fit: contain;
}

.footer-brand {
  width: max-content;
  padding: 10px 14px;
  background: #fff;
  border-radius: 16px;
}

.footer-brand .brand-logo {
  width: 166px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-word {
  font-size: 1.35rem;
}

.nav-links,
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links {
  justify-content: center;
}

.nav-links a {
  padding: 10px 11px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
  background: #eef3f9;
  outline: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(15, 42, 77, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-2);
}

.button-secondary {
  color: var(--primary);
  background: #eef3f9;
  border-color: #e4ebf4;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--primary);
  background: #e7eef7;
}

.button-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.menu-button {
  display: none;
}

.hero {
  padding-top: clamp(52px, 7vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 12.8ch;
  font-size: clamp(3.15rem, 6.2vw, 5.35rem);
}

.hero-copy p {
  max-width: 62ch;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-media,
.compare-frame,
.workflow-mockup,
.dashboard-card,
.method-panel,
.table-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(15, 42, 77, 0.12));
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  z-index: 2;
  max-width: 245px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 236, 242, 0.9);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(15, 42, 77, 0.12);
  backdrop-filter: blur(16px);
}

.hero-float span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-float strong {
  display: block;
  color: var(--primary);
  font-size: 0.96rem;
  line-height: 1.22;
}

.hero-float-top {
  top: 22px;
  right: 22px;
}

.hero-float-bottom {
  bottom: 22px;
  left: 22px;
}

.workflow-mockup {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.workflow-mockup::before {
  position: absolute;
  inset: auto -18% -26% 24%;
  height: 280px;
  content: "";
  background: radial-gradient(circle, rgba(47, 166, 106, 0.13), transparent 64%);
}

.mockup-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  background: #cfd7e3;
  border-radius: 999px;
}

.mockup-topbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mockup-body {
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 470px;
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 14px;
  background: var(--primary);
}

.mockup-sidebar span {
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 9px;
}

.mockup-sidebar .is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.mockup-main {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 26px;
}

.flow-row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 10px;
  align-items: center;
}

.flow-card,
.mini-grid article,
.report-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.flow-card {
  min-height: 150px;
  padding: 18px;
}

.flow-card small,
.mini-grid small,
.report-card small,
.dashboard-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flow-card strong,
.mini-grid strong,
.report-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.04rem;
  line-height: 1.2;
}

.flow-card span {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 10px;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  background: #edf8f2;
  border-radius: 999px;
}

.flow-line {
  height: 2px;
  background: linear-gradient(90deg, var(--line-strong), var(--primary-2));
}

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

.mini-grid article {
  min-height: 118px;
  padding: 16px;
}

.report-card {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.report-card > span {
  padding: 8px 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--success);
  border-radius: 999px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 6vw, 82px);
}

.align-center {
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.35rem, 5.2vw, 4.65rem);
}

.section-copy p,
.section-heading p,
.cta-panel p {
  max-width: 68ch;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-list span {
  padding: 18px 20px;
  color: var(--primary);
  font-weight: 750;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.compare-section {
  padding-top: clamp(52px, 7vw, 92px);
}

.compare-frame {
  --compare-progress: 0.5;
  --compare-cut: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  cursor: ns-resize;
  isolation: isolate;
}

.compare-img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(var(--compare-cut) 0 0 0);
}

.compare-divider {
  position: absolute;
  inset-inline: 0;
  top: var(--compare-cut);
  z-index: 2;
  height: 2px;
  background: rgba(15, 42, 77, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75), 0 16px 40px rgba(15, 42, 77, 0.24);
  transform: translateY(-1px);
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  transform: translate(-50%, -50%);
}

.compare-divider span::before,
.compare-divider span::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
}

.compare-divider span::before {
  transform: translateY(-6px) rotate(45deg);
}

.compare-divider span::after {
  transform: translateY(6px) rotate(225deg);
}

.compare-label {
  position: absolute;
  bottom: 18px;
  z-index: 3;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 850;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.compare-label-before {
  left: 18px;
  top: 18px;
  bottom: auto;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.84);
}

.compare-label-after {
  right: 18px;
  bottom: 18px;
  color: #fff;
  background: rgba(15, 42, 77, 0.88);
}

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

.convergence-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, rgba(245, 247, 250, 0.86) 100%);
}

.convergence-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(15, 42, 77, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.convergence-stage::before {
  position: absolute;
  inset: 10%;
  content: "";
  background-image:
    radial-gradient(circle, rgba(30, 58, 102, 0.22) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(47, 166, 106, 0.14) 1px, transparent 1.5px);
  background-position: 0 0, 24px 24px;
  background-size: 48px 48px;
  opacity: 0.22;
  mask-image: radial-gradient(circle, #000, transparent 70%);
}

.converge-node,
.converge-core {
  position: absolute;
  left: 50%;
  top: 50%;
}

.converge-node {
  width: 128px;
  padding: 10px 10px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: box-shadow 180ms var(--ease-out), border-color 180ms ease;
  will-change: transform, opacity;
}

.converge-node img {
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto 8px;
  object-fit: cover;
  border-radius: 18px;
}

.converge-node span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
}

.converge-core {
  display: grid;
  width: min(300px, 58vw);
  min-height: 300px;
  place-items: center;
  padding: 26px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(15, 42, 77, 0.12);
  transform: translate(-50%, -50%) scale(0.88);
  will-change: transform;
}

.converge-core img {
  display: block;
  width: 138px;
  height: 138px;
  object-fit: cover;
  border-radius: 30px;
  filter: drop-shadow(0 18px 28px rgba(15, 42, 77, 0.12));
}

.converge-core strong {
  margin-top: 8px;
  color: var(--primary);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.converge-core span {
  max-width: 24ch;
  color: var(--muted-strong);
  font-weight: 650;
}

.step-card {
  min-height: 248px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-card h3,
.module-card h3,
.pricing-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.step-card p,
.module-card p,
.pricing-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.method-section,
.portal-section {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.4), rgba(245, 247, 250, 0.92));
  border-block: 1px solid rgba(232, 236, 242, 0.8);
}

.method-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
}

.method-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.method-row span {
  color: var(--muted);
  font-weight: 700;
}

.method-row strong {
  color: var(--primary);
  text-align: right;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.team-strip {
  display: flex;
  gap: 0;
  align-items: center;
  margin: -10px 0 22px;
}

.team-avatar-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 78px;
  min-height: 78px;
  margin-right: -14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  transition: width 280ms var(--ease-out), border-color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.team-avatar-card:hover,
.team-avatar-card:focus-within {
  z-index: 3;
  width: 390px;
  border-color: #d7e2f0;
  box-shadow: 0 18px 42px rgba(15, 42, 77, 0.12);
  transform: translateY(-2px);
}

.team-avatar-card img {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 999px;
}

.team-avatar-card div {
  min-width: 275px;
  padding: 0 20px 0 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.team-avatar-card:hover div,
.team-avatar-card:focus-within div {
  opacity: 1;
  transform: translateX(0);
}

.team-avatar-card strong {
  display: block;
  color: var(--primary);
  line-height: 1.15;
}

.team-avatar-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.metrics-grid article {
  min-height: 142px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.metrics-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}

.metrics-grid strong {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.table-card {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 18px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.6fr 1fr 0.9fr;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #f8fafc;
}

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

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.module-card img {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 30px;
  opacity: 0.2;
  transform: rotate(-4deg);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}

.module-card:hover {
  border-color: #d8e2ef;
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.module-card:hover img {
  opacity: 0.34;
  transform: rotate(-2deg) scale(1.04);
}

.module-card > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 44px;
  color: var(--primary-2);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.module-card h3,
.module-card p {
  position: relative;
  z-index: 1;
}

.dashboard-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  color: #fff;
  background: var(--primary);
}

.dash-sidebar strong {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.dash-sidebar span {
  padding: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 9px;
}

.dash-sidebar .active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.dash-main {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 24px;
}

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

.dash-kpis article {
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dash-kpis strong {
  display: block;
  color: var(--primary);
  font-size: 1.25rem;
}

.dash-chart {
  display: flex;
  gap: 14px;
  align-items: end;
  height: 150px;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dash-chart span {
  flex: 1;
  min-height: 34px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  border-radius: 8px 8px 3px 3px;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.pricing-card.featured {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: #fff;
}

.pricing-card.featured p,
.pricing-card.featured small,
.pricing-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  display: block;
  margin: 28px 0 8px;
  color: var(--primary);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.pricing-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.pricing-card li {
  color: var(--muted-strong);
}

.pricing-card li::before {
  margin-right: 8px;
  color: var(--success);
  content: "✓";
}

.final-cta {
  padding-top: 72px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 28px;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: start;
}

.contact-form,
.auth-form {
  display: grid;
  gap: 14px;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.contact-form label,
.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.auth-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.auth-form input:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(30, 58, 102, 0.1);
}

.full {
  grid-column: 1 / -1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 54px 0 64px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--primary);
}

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

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 34ch;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: #fff;
}

.site-footer a {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.legal-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.auth-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.auth-shell {
  width: min(1040px, 100%);
}

.auth-card {
  display: grid;
  width: min(520px, 100%);
  gap: 18px;
  padding: clamp(28px, 5vw, 44px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.auth-brand {
  width: max-content;
  margin-bottom: 10px;
}

.auth-brand .brand-logo {
  width: 176px;
}

.auth-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

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

.auth-card .error {
  padding: 12px 14px;
  color: #9f1d1d;
  background: #fee2e2;
  border-radius: 12px;
}

.auth-back a {
  color: var(--primary);
  font-weight: 750;
  text-decoration: none;
}

.legal-shell {
  width: min(760px, 100%);
}

.legal-card {
  margin-top: 24px;
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-card p {
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .cta-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .convergence-stage {
    min-height: 560px;
  }

  .converge-node {
    width: 106px;
  }

  .converge-node img {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: inline-grid;
    gap: 4px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: #eef3f9;
    border: 1px solid var(--line);
    border-radius: 11px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-shell.is-open .nav-links,
  .nav-shell.is-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .nav-shell.is-open .nav-actions {
    padding-top: 0;
    border-top: 0;
    border-radius: 0 0 16px 16px;
  }

  .workflow-mockup {
    border-radius: 20px;
  }

  .mockup-body,
  .dashboard-card {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar,
  .dash-sidebar {
    display: none;
  }

  .hero-float {
    display: none;
  }

  .mockup-main {
    padding: 18px;
  }

  .flow-row,
  .mini-grid,
  .dash-kpis {
    grid-template-columns: 1fr;
  }

  .flow-line {
    width: 2px;
    height: 30px;
    justify-self: center;
    background: linear-gradient(180deg, var(--line-strong), var(--primary-2));
  }

  .table-card {
    display: grid;
    gap: 12px;
    padding: 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .table-head {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .convergence-stage {
    min-height: auto;
    padding: 22px;
  }

  .convergence-stage::before {
    display: none;
  }

  .converge-node,
  .converge-core {
    position: static;
    left: auto;
    top: auto;
    transform: none !important;
    opacity: 1 !important;
  }

  .convergence-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .converge-node {
    width: auto;
    border-radius: 18px;
  }

  .converge-node:last-of-type {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
  }

  .converge-core {
    grid-column: 1 / -1;
    width: auto;
    min-height: 260px;
    border-radius: 24px;
  }

  .team-strip {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .team-avatar-card,
  .team-avatar-card:hover,
  .team-avatar-card:focus-within {
    width: 100%;
    margin-right: 0;
    border-radius: 18px;
    transform: none;
  }

  .team-avatar-card div,
  .team-avatar-card:hover div,
  .team-avatar-card:focus-within div {
    min-width: 0;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 82px;
  }

  .container,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 44px 0;
  }

  .hero.section-pad {
    padding-top: 36px;
  }

  .problem-section,
  .compare-section,
  .method-section,
  .portal-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .problem-list span:nth-child(n + 5) {
    display: none;
  }

  .brand-word {
    font-size: 1.16rem;
  }

  .brand-logo {
    width: 132px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-copy p {
    margin-top: 18px;
  }

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

  .hero-media img {
    aspect-ratio: 1.16;
    object-position: center;
  }

  .hero-media,
  .compare-frame {
    border-radius: 20px;
  }

  .compare-label {
    bottom: 10px;
    font-size: 0.7rem;
  }

  .compare-label-before {
    left: 10px;
    top: 10px;
    bottom: auto;
  }

  .compare-label-after {
    right: 10px;
    top: auto;
    bottom: 10px;
  }

  .compare-divider span {
    width: 38px;
    height: 38px;
  }

  .hero-copy p,
  .section-copy p,
  .section-heading p,
  .cta-panel p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .button {
    width: 100%;
  }

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

  .step-card,
  .metrics-grid article {
    padding: 16px;
  }

  #productividad .table-card {
    display: none;
  }

  .step-card {
    padding: 16px;
  }

  .step-card span {
    margin-bottom: 18px;
  }

  .step-card h3 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .module-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
  }

  .module-card img {
    position: static;
    grid-row: 1 / span 3;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    opacity: 1;
    transform: none;
  }

  .module-card span,
  .module-card h3,
  .module-card p {
    grid-column: 2;
  }

  .module-card span {
    margin: 0;
    font-size: 0.68rem;
  }

  .module-card h3 {
    margin: -4px 0 0;
    font-size: 1.02rem;
  }

  .module-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .report-card,
  .method-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .metrics-grid article,
  .module-card,
  .step-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .convergence-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .converge-node {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 74px;
    padding: 10px;
    text-align: left;
  }

  .converge-node img {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 12px;
  }

  .converge-node span {
    font-size: 0.76rem;
    line-height: 1.12;
  }

  .converge-core {
    min-height: 190px;
    padding: 20px;
  }

  .converge-core img {
    width: 92px;
    height: 92px;
  }

  .pricing-section {
    padding-bottom: 30px;
  }

  .pricing-card {
    gap: 12px;
    padding: 22px;
  }

  .pricing-card p {
    margin-bottom: 0;
  }

  .pricing-card small:nth-of-type(2),
  .pricing-card ul {
    display: none;
  }

  .price {
    margin: 14px 0 4px;
    font-size: 2rem;
  }

  .final-cta {
    padding-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ===== Properit · mejoras incrementales 2026-05 ===== */

/* 1 · Eyebrow de público para hero y secciones */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 18px;
  color: var(--primary-2);
  background: #eef3f9;
  border: 1px solid #dce5f1;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-2);
  border-radius: 50%;
}

/* 2 · Strip de compañías compatibles bajo el hero */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-trust strong {
  color: var(--primary);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

/* 3 · Pricing: badge "recomendado" sobre la featured + audiencia */
.pricing-card.featured {
  position: relative;
  overflow: visible;
}

.pricing-card .recommend {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 6px 12px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 42, 77, 0.18);
  transform: translateX(-50%);
}

.pricing-card .audience {
  display: block;
  margin-top: 4px;
  color: var(--muted-strong);
  font-size: 0.85rem;
  font-weight: 650;
}

.pricing-card.featured .audience {
  color: rgba(255, 255, 255, 0.78);
}

/* 4 · Login split brand / form */
.auth-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  width: min(1080px, 100%);
  min-height: 560px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.auth-grid .auth-brand-panel {
  position: relative;
  padding: clamp(28px, 5vw, 44px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(160deg, var(--primary) 0%, var(--primary-2) 100%);
}

.auth-grid .auth-brand-panel .brand-logo {
  width: 170px;
  filter: brightness(0) invert(1);
}

.auth-grid .auth-brand-panel h2 {
  margin: 28px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.auth-grid .auth-brand-panel p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
}

.auth-grid .auth-brand-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.auth-grid .auth-brand-panel li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.auth-grid .auth-brand-panel li::before {
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: #fff;
  border-radius: 50%;
  content: "";
}

.auth-grid .auth-form-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: clamp(28px, 5vw, 48px);
}

.auth-grid .auth-form-panel .eyebrow {
  margin: 0;
}

.auth-grid .auth-form-panel h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.auth-grid .auth-help {
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.auth-grid .auth-help a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 860px) {
  .auth-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-grid .auth-brand-panel {
    padding: 24px;
  }

  .auth-grid .auth-brand-panel ul {
    display: none;
  }
}

/* 5 · Empty state reutilizable */
.empty-state {
  display: grid;
  gap: 14px;
  place-items: center;
  padding: 48px 24px;
  color: var(--muted-strong);
  text-align: center;
  background: #f8fafc;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
}

.empty-state .glyph {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--primary-2);
  background: #eef3f9;
  border-radius: 14px;
}

.empty-state h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.empty-state p {
  max-width: 48ch;
  margin: 0;
}

/* 6 · Pills con glifo de estado (a11y: no sólo color) */
.pill::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

/* 7 · Foco accesible global en inputs y botones */
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 2px;
}


/* ===== Properit · página de precios ===== */

.nav-links a.is-active {
  color: var(--primary);
  font-weight: 800;
}

.pricing-page {
  background:
    radial-gradient(circle at 16% 2%, rgba(30, 58, 102, 0.1), transparent 34rem),
    linear-gradient(180deg, #f8fafc 0%, var(--canvas) 42%, #ffffff 100%);
}

.pricing-hero {
  padding: clamp(64px, 9vw, 112px) 0 36px;
  text-align: center;
}

.pricing-hero .container {
  max-width: 860px;
}

.pricing-hero h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6.1vw, 5.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.pricing-hero .lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.62;
}

.pricing-toggle-wrap {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 32px;
}

.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
}

.pricing-toggle button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease-out);
}

.pricing-toggle button:hover {
  color: var(--primary);
}

.pricing-toggle button:active {
  transform: scale(0.98);
}

.pricing-toggle button[aria-selected="true"] {
  color: #fff;
  background: var(--primary);
}

.pricing-toggle-save {
  padding: 2px 7px;
  color: #1e8c49;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e6f4ed;
  border-radius: 999px;
}

.pricing-toggle button[aria-selected="true"] .pricing-toggle-save {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.pricing-toggle-help {
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-plans {
  padding: 38px 0 28px;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(15, 42, 77, 0.05);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.pricing-plan:hover {
  border-color: var(--line-strong);
  box-shadow: 0 22px 60px rgba(15, 42, 77, 0.1);
  transform: translateY(-3px);
}

.pricing-plan.is-featured {
  border-color: rgba(15, 42, 77, 0.42);
  box-shadow: 0 28px 80px -28px rgba(15, 42, 77, 0.32);
}

.pricing-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  z-index: 1;
  padding: 6px 13px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--primary);
  border-radius: 999px;
  transform: translateX(-50%);
}

.pricing-plan header {
  display: grid;
  gap: 8px;
  min-height: 122px;
}

.pricing-plan h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-plan header p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.52;
}

.pricing-plan-price {
  display: flex;
  gap: 7px;
  align-items: baseline;
  flex-wrap: wrap;
}

.pricing-plan-price .amount {
  color: var(--ink);
  font-size: clamp(2.6rem, 4vw, 3.35rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}

.pricing-plan-price .cur {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.pricing-plan-price .per {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing-plan-price.is-custom .amount {
  font-size: clamp(2rem, 3vw, 2.55rem);
  letter-spacing: -0.045em;
}

.pricing-plan-note {
  min-height: 38px;
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.button-block {
  justify-content: center;
  width: 100%;
}

.pricing-plan-group {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan-features {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-plan-features li {
  position: relative;
  padding-left: 25px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.46;
}

.pricing-plan-features li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #e6f4ed;
  border-radius: 50%;
  content: "";
}

.pricing-plan-features li::after {
  position: absolute;
  top: 9px;
  left: 4px;
  width: 6px;
  height: 3px;
  border-bottom: 1.7px solid #1e8c49;
  border-left: 1.7px solid #1e8c49;
  content: "";
  transform: rotate(-45deg);
}

.pricing-plan-features li b {
  color: var(--ink);
  font-weight: 800;
}

.pricing-banner-section,
.pricing-trust,
.pricing-compare {
  background: var(--canvas);
}

.pricing-banner-section {
  padding: 32px 0 40px;
}

.pricing-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-radius: 26px;
  box-shadow: 0 24px 70px -36px rgba(15, 42, 77, 0.48);
}

.pricing-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pricing-banner p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.pricing-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing-banner .button-primary {
  color: var(--primary);
  background: #fff;
  box-shadow: none;
}

.pricing-banner .button-primary:hover {
  background: #eef3f9;
}

.pricing-banner .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.pricing-banner .button-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.pricing-trust {
  padding: 38px 0;
  text-align: center;
}

.pricing-trust small {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-trust-logos {
  display: flex;
  gap: 18px 38px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-trust-logos span {
  color: var(--muted-strong);
  font-size: 1.08rem;
  font-weight: 800;
}

.pricing-compare {
  padding: 66px 0;
}

.pricing-compare .section-heading,
.pricing-faq .section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.pricing-compare-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}

.pricing-matrix {
  width: 100%;
  min-width: 690px;
  overflow: hidden;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.pricing-matrix th,
.pricing-matrix td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-matrix thead th {
  color: var(--ink);
  font-weight: 850;
  text-align: left;
  vertical-align: bottom;
  background: #fbfcfd;
}

.pricing-matrix thead th:not(:first-child),
.pricing-matrix tbody td:not(:first-child) {
  width: 18%;
  text-align: center;
}

.pricing-matrix th small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.pricing-matrix .is-featured {
  background: #f3f7fc;
}

.pricing-matrix td {
  color: var(--muted-strong);
}

.pricing-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-matrix-section td {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f4f7fb;
}

.pricing-matrix .yes,
.pricing-matrix .val {
  color: var(--primary);
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.pricing-matrix .no {
  color: #aab4c2;
}

.pricing-faq {
  padding: 66px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.pricing-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.pricing-faq-list details {
  padding: 20px 4px;
  border-top: 1px solid var(--line);
}

.pricing-faq-list details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.pricing-faq-list summary {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.pricing-faq-list summary::after {
  color: var(--muted);
  font-size: 1.45rem;
  font-weight: 600;
  content: "+";
}

.pricing-faq-list details[open] summary::after {
  content: "-";
}

.pricing-faq-list details > p {
  max-width: 68ch;
  margin: 14px 0 2px;
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.65;
}

.pricing-final {
  padding: 66px 0 104px;
  text-align: center;
  background: #fff;
}

.pricing-final h2 {
  max-width: 720px;
  margin: 0 auto 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.pricing-final p {
  max-width: 540px;
  margin: 0 auto 26px;
  color: var(--muted-strong);
}

.pricing-final-actions,
.pricing-teaser-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-teaser .section-heading {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-teaser-actions {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .pricing-plans-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .pricing-plan header,
  .pricing-plan-note {
    min-height: auto;
  }

  .pricing-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .pricing-hero {
    padding: 50px 0 24px;
  }

  .pricing-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .pricing-toggle {
    width: 100%;
    max-width: 380px;
  }

  .pricing-toggle button {
    flex: 1;
    justify-content: center;
    min-height: 48px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .pricing-plans {
    padding-top: 24px;
  }

  .pricing-plan {
    padding: 24px;
    border-radius: 18px;
  }

  .pricing-plan-price .amount {
    font-size: 2.7rem;
  }

  .pricing-banner {
    padding: 26px;
    border-radius: 20px;
  }

  .pricing-compare,
  .pricing-faq {
    padding: 48px 0;
  }

  .pricing-final {
    padding: 52px 0 76px;
  }
}
