:root {
  --blue: #0648b8;
  --blue-dark: #06296f;
  --blue-deep: #021f59;
  --blue-soft: #eef5ff;
  --green: #05c989;
  --green-dark: #00a86f;
  --green-soft: #eafcf6;
  --cyan: #0fc7bd;
  --ink: #0d1732;
  --muted: #65718a;
  --line: #dfe7f3;
  --white: #ffffff;
  --surface: #f8fbff;
  --shadow-sm: 0 12px 30px rgba(12, 48, 103, 0.08);
  --shadow-md: 0 24px 70px rgba(12, 48, 103, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 78px;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.1vw, 4.05rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.compact-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(215, 225, 239, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: headerSlideDown 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(194, 207, 226, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(12, 48, 103, 0.1);
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: min-height 0.25s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 68px;
}

.brand {
  width: 118px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-blue {
  color: var(--blue);
}

.brand-green {
  color: var(--cyan);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 29px 0 23px;
  color: #3e4961;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s ease, padding 0.25s ease;
}

.site-header.is-scrolled .main-nav a {
  padding-top: 24px;
  padding-bottom: 20px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 28px;
}

.language-switcher {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid #dbe6f4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(15, 37, 69, 0.06);
}

.language-switcher svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.language-switcher a {
  min-width: 32px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #4f5b72;
  font-size: 0.72rem;
  font-weight: 800;
}

.language-switcher a:hover,
.language-switcher a.active {
  color: var(--white);
  background: var(--blue);
}

.login-link {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: var(--blue-soft);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 14px 32px rgba(5, 201, 137, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(5, 201, 137, 0.34);
}

.button-outline {
  border-color: #9ab6e6;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.75);
}

.button-outline:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.82rem;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 86px;
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.text-blue {
  color: var(--blue);
}

.text-green {
  color: var(--green);
}

.hero-description {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.handwritten {
  margin-bottom: 24px;
  color: var(--blue);
  font-family: "Caveat", cursive;
  font-size: 1.65rem;
  font-weight: 600;
}

.handwritten::first-letter {
  color: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5e6b83;
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(0.1px);
  pointer-events: none;
}

.hero-shape-one {
  top: -110px;
  right: -70px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 45% 45%, #f5fbff 0, #eaf4ff 55%, rgba(235, 246, 255, 0) 70%);
}

.hero-shape-two {
  right: -120px;
  bottom: -190px;
  width: 380px;
  height: 380px;
  border: 42px solid rgba(38, 115, 218, 0.13);
  background: transparent;
}

.laptop {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-top: 12px;
}

.laptop-screen {
  position: relative;
  z-index: 1;
  padding: 15px 15px 16px;
  border: 3px solid #1b1d22;
  border-radius: 24px 24px 12px 12px;
  background: #0d0f13;
  box-shadow: var(--shadow-md);
}

.laptop-screen::before {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444952;
  content: "";
  transform: translateX(-50%);
}

.laptop-base {
  position: relative;
  width: 108%;
  height: 24px;
  margin-left: -4%;
  border-radius: 4px 4px 30px 30px;
  background: linear-gradient(180deg, #d9dde4, #747c88 65%, #333943);
  box-shadow: 0 18px 24px rgba(8, 24, 55, 0.24);
}

.laptop-base span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 8px;
  border-radius: 0 0 10px 10px;
  background: #aeb4bf;
  transform: translateX(-50%);
}

.dashboard {
  aspect-ratio: 1.54;
  display: grid;
  grid-template-columns: 126px 1fr;
  overflow: hidden;
  border-radius: 11px;
  background: #f7f9fd;
}

.dashboard-sidebar {
  padding: 18px 12px;
  border-right: 1px solid #e6ebf2;
  background: var(--white);
}

.mini-brand {
  width: 76px;
  margin-bottom: 22px;
}

.mini-brand img {
  width: 100%;
  height: auto;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 6px;
}

.dashboard-sidebar a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 7px;
  color: #748097;
  font-size: 0.54rem;
  font-weight: 600;
}

.dashboard-sidebar a svg {
  width: 12px;
  height: 12px;
}

.dashboard-sidebar a.selected {
  color: var(--blue);
  background: #eaf2ff;
}

.dashboard-main {
  min-width: 0;
}

.dashboard-topbar {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  border-bottom: 1px solid #e6ebf2;
  background: var(--white);
}

.dashboard-topbar div:first-child {
  display: grid;
}

.dashboard-topbar span {
  font-size: 0.7rem;
  font-weight: 800;
}

.dashboard-topbar small {
  color: #929aae;
  font-size: 0.46rem;
}

.dashboard-actions {
  display: flex;
  gap: 6px;
}

.dashboard-actions span {
  width: 18px;
  height: 18px;
  border: 1px solid #e0e5ed;
  border-radius: 50%;
}

.dashboard-content {
  padding: 18px 20px;
}

.dashboard-label {
  margin-bottom: 10px;
  color: #59657a;
  font-size: 0.56rem;
  font-weight: 800;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.metric-card {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 5px;
  padding: 11px 9px;
  border: 1px solid #e5eaf2;
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(17, 55, 108, 0.04);
}

.metric-card svg {
  grid-row: span 2;
  width: 17px;
  height: 17px;
  color: #246fe3;
}

.metric-card strong {
  font-size: 0.74rem;
}

.metric-card span {
  color: #8a93a4;
  font-size: 0.43rem;
  line-height: 1.25;
}

.green-metric svg,
.green-metric strong {
  color: var(--green-dark);
}

.purple-metric svg,
.purple-metric strong {
  color: #7a4ce2;
}

.orange-metric svg,
.orange-metric strong {
  color: #f3982b;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 9px;
  margin-top: 10px;
}

.chart-panel,
.finance-panel {
  padding: 13px;
  border: 1px solid #e5eaf2;
  border-radius: 9px;
  background: var(--white);
}

.panel-header {
  display: flex;
  justify-content: space-between;
}

.panel-header div {
  display: grid;
}

.panel-header span,
.finance-panel > span {
  font-size: 0.5rem;
  font-weight: 700;
}

.panel-header strong {
  margin-top: 3px;
  font-size: 0.85rem;
}

.panel-header small,
.finance-panel > small {
  color: var(--green-dark);
  font-size: 0.43rem;
}

.panel-header button {
  align-self: flex-start;
  border: 0;
  color: #8d96a8;
  background: transparent;
  font-size: 0.55rem;
}

.bars {
  height: 78px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 13px;
  padding-top: 8px;
  border-bottom: 1px solid #e8edf4;
  background: repeating-linear-gradient(to bottom, #eef2f7 0 1px, transparent 1px 25%);
}

.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #31d39c, #03ae74);
}

.finance-panel {
  display: grid;
  align-content: start;
}

.finance-panel dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.finance-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid #eef1f5;
}

.finance-panel dt,
.finance-panel dd {
  margin: 0;
  font-size: 0.44rem;
}

.finance-panel dt {
  color: #7c8596;
}

.finance-panel dd {
  font-weight: 800;
}

.finance-panel dl div:last-child dd {
  color: var(--green-dark);
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 226, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.floating-card > div:last-child {
  display: grid;
}

.floating-card strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.25;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.floating-icon svg {
  width: 20px;
  height: 20px;
}

.floating-icon.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.floating-icon.green {
  color: var(--white);
  background: var(--green);
}

.floating-icon.outline {
  border: 1px solid #9eb9e9;
  color: var(--blue);
  background: var(--white);
}

.floating-icon.solid-blue {
  color: var(--white);
  background: var(--blue);
}

.floating-card-left {
  top: 44px;
  left: 7%;
}

.floating-card-right {
  top: 44px;
  right: 3%;
}

.floating-card-bottom-left {
  bottom: 54px;
  left: 13%;
}

.floating-card-bottom-right {
  right: 4%;
  bottom: 48px;
}

.audience-strip {
  position: relative;
  z-index: 4;
  padding: 0 0 20px;
}

.audience-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1.08fr 1.2fr;
  align-items: center;
  gap: 40px;
  padding: 24px 34px;
  border: 1px solid #e2eaf5;
  border-radius: var(--radius-md);
  background: linear-gradient(105deg, #f4f9ff, #f7fbff 70%, #eef6ff);
  box-shadow: 0 12px 42px rgba(16, 68, 140, 0.06);
}

.audience-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.audience-title h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.audience-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(6, 72, 184, 0.2);
}

.audience-icon svg {
  width: 30px;
  height: 30px;
}

.audience-tags {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: end;
  gap: 14px 24px;
}

.audience-tags span {
  position: relative;
  padding-left: 14px;
  color: #3c4960;
  font-size: 0.83rem;
  font-weight: 700;
}

.audience-tags span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.soft-panel {
  padding: 54px 40px 40px;
  border: 1px solid #e4ebf5;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #f6faff, #eef6ff);
}

.section-heading {
  margin-bottom: 36px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 530px;
  margin: 0 0 6px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 154px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e5ebf4;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 62, 119, 0.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.icon-blue {
  color: var(--blue);
  background: #eaf2ff;
}

.icon-green {
  color: var(--green-dark);
  background: #eafcf6;
}

.icon-mint {
  color: #00a97b;
  background: #e7fbf7;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.solution {
  padding-bottom: 62px;
}

.solution-heading {
  margin-bottom: 26px;
}

.tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e8f2;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  position: relative;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 16px;
  border: 0;
  color: #6e788d;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.tab-button::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.tab-button svg {
  width: 18px;
  height: 18px;
}

.tab-button.active {
  color: var(--green-dark);
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.product-preview {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 64px;
}

.system-card,
.placeholder-visual {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dfe7f1;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.members-system {
  display: grid;
  grid-template-columns: 72px 1fr;
}

.system-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: 20px 0;
  border-right: 1px solid #e5ebf3;
  background: #f4f8fe;
}

.system-logo {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(6, 72, 184, 0.14);
}

.system-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-sidebar > span {
  width: 22px;
  height: 4px;
  border-radius: 99px;
  background: #b8c6da;
}

.system-sidebar > span.active {
  width: 32px;
  background: var(--blue);
}

.system-main {
  min-width: 0;
  padding: 24px;
}

.system-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.system-toolbar strong {
  font-size: 1rem;
}

.system-toolbar button {
  padding: 9px 14px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
}

.system-search {
  width: 52%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 16px;
  padding: 10px 12px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  color: #9aa4b5;
  font-size: 0.68rem;
}

.system-search svg {
  width: 14px;
  height: 14px;
}

.member-table {
  min-width: 630px;
  display: grid;
}

.member-row {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.65fr 0.9fr;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-bottom: 1px solid #edf1f6;
  color: #647087;
  font-size: 0.67rem;
}

.member-head {
  min-height: 34px;
  color: #99a2b3;
  font-weight: 700;
}

.member-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.member-row em {
  display: grid;
  color: #313c53;
  font-style: normal;
  font-weight: 700;
}

.member-row small {
  color: #a0a8b7;
  font-weight: 500;
}

.avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.6rem;
}

.avatar-one { background: #4d87e7; }
.avatar-two { background: #6c59d9; }
.avatar-three { background: #14af85; }
.avatar-four { background: #e19d45; }
.avatar-five { background: #d26e99; }

.status {
  display: inline-flex;
  justify-content: center;
  padding: 4px 7px;
  border-radius: 99px;
  font-style: normal;
  font-weight: 700;
}

.active-status {
  color: #00a76f;
  background: #eafaf4;
}

.pending-status {
  color: #d48715;
  background: #fff5e1;
}

.product-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.product-copy p {
  margin-bottom: 24px;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #344158;
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 800;
}

.simplified-preview {
  min-height: 470px;
}

.placeholder-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: linear-gradient(145deg, #ffffff, #f7fbff);
}

.large-stat {
  display: grid;
  margin-bottom: 40px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), #2d7ae4);
  color: var(--white);
  box-shadow: 0 22px 50px rgba(6, 72, 184, 0.22);
}

.large-stat small {
  opacity: 0.8;
}

.large-stat strong {
  margin: 8px 0 4px;
  font-size: 2.4rem;
}

.large-stat span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.progress-list {
  display: grid;
  gap: 22px;
}

.progress-list span {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  color: #344158;
  font-size: 0.85rem;
  font-weight: 700;
}

.progress-list span::before,
.progress-list span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  border-radius: 99px;
  content: "";
}

.progress-list span::before {
  width: 100%;
  background: #e8eef6;
}

.progress-list span::after {
  width: var(--value);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  color: #26344e;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
}

.calendar-grid b,
.calendar-grid span {
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #6a758a;
  font-size: 0.78rem;
}

.calendar-grid b {
  color: #a0a8b6;
}

.calendar-grid .event-day {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 16px rgba(6, 72, 184, 0.18);
}

.finance-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.finance-summary span {
  display: grid;
  padding: 20px;
  border: 1px solid #e2e9f2;
  border-radius: 14px;
  background: var(--white);
}

.finance-summary small {
  color: #8791a5;
}

.finance-summary strong {
  margin-top: 6px;
  color: var(--blue);
}

.line-chart {
  height: 210px;
  margin-top: 36px;
  padding: 20px 10px 0;
  border-radius: 16px;
  color: var(--green);
  background: repeating-linear-gradient(to bottom, #edf2f7 0 1px, transparent 1px 25%);
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.team-visual {
  gap: 16px;
}

.team-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #e2e9f2;
  border-radius: 14px;
  background: var(--white);
}

.team-card > b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.team-card div {
  display: grid;
}

.team-card small {
  color: #8b95a7;
}

.team-card > span {
  padding: 6px 10px;
  border-radius: 99px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.benefits-panel,
.how-panel,
.plans-panel {
  border: 1px solid #e1e9f3;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, #f5fbff, #f1fbf7);
}

.benefits-panel {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 0.72fr);
  gap: 28px;
  padding: 34px;
}

.benefits-title h2 {
  margin: 0;
  font-size: 2rem;
}

.benefit-item {
  padding-top: 4px;
}

.benefit-icon,
.plan-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(5, 201, 137, 0.12);
}

.benefit-icon svg,
.plan-icon svg {
  width: 25px;
  height: 25px;
}

.benefit-item h3 {
  margin-bottom: 8px;
  font-size: 0.93rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.how-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(120deg, #f5f9ff, #eef5ff);
}

.how-title {
  align-self: center;
  padding-right: 18px;
}

.how-title h2 {
  margin: 0;
  font-size: 1.9rem;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 13px;
  padding: 24px 18px;
  border: 1px solid #e1e8f2;
  border-radius: 16px;
  background: var(--white);
}

.step-card > svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.step-card h3 {
  margin-bottom: 6px;
  font-size: 0.86rem;
}

.step-card p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.45;
}

.step-number {
  position: absolute;
  top: -11px;
  left: 14px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.step-arrow {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.step-arrow svg {
  width: 19px;
}

.security-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 0.72fr);
  gap: 28px;
  padding: 38px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(130deg, var(--blue-deep), #073d9d 62%, #0648b8);
  box-shadow: 0 22px 56px rgba(4, 44, 112, 0.18);
}

.security-panel::after {
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.security-intro .section-kicker {
  color: var(--green);
}

.security-intro h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.security-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.security-item {
  position: relative;
  z-index: 1;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.security-item > div {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.security-item svg {
  width: 19px;
  height: 19px;
}

.security-item h3 {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.security-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  line-height: 1.55;
}

.plans-panel {
  display: grid;
  grid-template-columns: 0.75fr repeat(3, 0.8fr);
  gap: 14px;
  padding: 28px;
  background: linear-gradient(120deg, #f5f9ff, #f8fbff);
}

.plans-title {
  align-self: center;
  padding-right: 10px;
}

.plans-title h2 {
  margin: 0;
  font-size: 1.9rem;
}

.plan-card,
.plan-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 18px 20px;
  border: 1px solid #e1e8f2;
  border-radius: 16px;
  background: var(--white);
  text-align: center;
}

.plan-card.featured {
  border-color: rgba(5, 201, 137, 0.55);
  box-shadow: 0 16px 32px rgba(5, 201, 137, 0.12);
}

.plan-card.recommended-plan {
  transform: translateY(-10px);
}

.recommended {
  position: absolute;
  top: -11px;
  padding: 5px 10px;
  border-radius: 99px;
  color: var(--white);
  background: var(--green);
  font-size: 0.62rem;
  font-weight: 800;
}

.plan-card h3,
.plan-contact h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.plan-card p,
.plan-contact p {
  margin-bottom: 18px;
  font-size: 0.72rem;
  line-height: 1.55;
}

.plan-features {
  width: 100%;
  margin: 0 0 16px;
  padding-left: 20px;
  text-align: left;
}

.plan-features li {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.35;
}

.plan-includes {
  width: 100%;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid #e0e9f5;
  border-radius: 14px;
  background: #f8fbff;
  text-align: left;
}

.plan-card.featured .plan-includes {
  border-color: rgba(5, 201, 137, 0.28);
  background: rgba(247, 255, 252, 0.86);
}

.plan-includes span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-includes ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-includes li {
  position: relative;
  padding-left: 18px;
  color: #4f5b72;
  font-size: 0.78rem;
  line-height: 1.35;
}

.plan-includes li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}


.plan-card .plan-cta {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 28px rgba(5, 201, 137, 0.2);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card .plan-cta:hover {
  box-shadow: 0 20px 36px rgba(5, 201, 137, 0.26);
  transform: translateY(-2px);
}

.plans-support {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(5, 201, 137, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(15, 37, 69, 0.06);
}

.plans-support-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--green-dark);
  background: rgba(5, 201, 137, 0.12);
}

.plans-support-icon svg {
  width: 20px;
  height: 20px;
}

.plans-support strong {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-dark);
  font-size: 0.94rem;
}

.plans-support p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.plans-support span {
  display: inline-flex;
  margin-right: 14px;
  color: #4f5b72;
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-contact .button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 0 14px;
  font-size: 0.7rem;
}

.testimonial-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  align-items: center;
  gap: 34px;
  padding: 30px 78px;
  border: 1px solid #e2e9f3;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, #f9fbff, #f4f8ff);
}

.testimonial-title h2 {
  margin: 0;
  font-size: 1.85rem;
}

.testimonials-carousel {
  position: relative;
  min-height: 210px;
}

.testimonial-panel blockquote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 24px 26px;
  border: 1px solid #e1e8f2;
  border-radius: 15px;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.testimonial-panel blockquote.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-quote-mark {
  margin-bottom: 8px;
  color: #73a6f4;
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 0.72;
}

.testimonial-panel blockquote p {
  flex: 1;
  margin-bottom: 12px;
  color: #4f5b70;
  font-size: 0.86rem;
}

.testimonial-panel blockquote footer {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e0eb;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow:hover {
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-arrow svg {
  width: 17px;
  height: 17px;
}

.testimonial-prev {
  left: 24px;
}

.testimonial-next {
  right: 24px;
}

.center-heading {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}

.faq-item {
  border-bottom: 1px solid #dfe7f1;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  color: #26344d;
  background: transparent;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  font-size: 0.85rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 22px;
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 40px;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(125deg, var(--blue-deep), var(--blue) 72%, #0a60cf);
  box-shadow: 0 24px 64px rgba(5, 52, 131, 0.22);
}

.final-cta-panel .section-kicker {
  color: var(--green);
}

.final-cta-panel h2 {
  max-width: 720px;
  margin-bottom: 14px;
}

.final-cta-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.final-cta-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.button-light {
  color: var(--blue-dark);
  background: var(--white);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.cta-decoration {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  opacity: 0.12;
  transform: rotate(45deg);
}

.cta-decoration span {
  position: absolute;
  width: 130px;
  height: 30px;
  border-radius: 99px;
  background: var(--white);
}

.cta-decoration span:nth-child(1) { top: 55px; left: 64px; }
.cta-decoration span:nth-child(2) { top: 105px; left: 64px; transform: rotate(90deg); }
.cta-decoration span:nth-child(3) { top: 180px; left: 15px; width: 34px; height: 34px; border-radius: 50%; }
.cta-decoration span:nth-child(4) { top: 18px; right: 24px; width: 34px; height: 34px; border-radius: 50%; }

.site-footer {
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.82);
  background: #061d4f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 50px;
  padding: 64px 0 44px;
}

.brand-light {
  width: 128px;
}

.footer-brand .brand-light {
  display: inline-flex;
  max-width: 180px;
}

.footer-brand .brand-light img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 12px;
}

.floating-action {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(15, 37, 69, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover {
  color: var(--white);
  box-shadow: 0 22px 42px rgba(15, 37, 69, 0.26);
  transform: translateY(-3px);
}

.floating-action svg {
  width: 25px;
  height: 25px;
}

.floating-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #0ca84d);
}

.floating-chatbot {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.chat-window {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 61;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: min(560px, 70vh);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.chat-window.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.chat-header-info strong {
  font-size: 0.95rem;
}

.chat-header-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.chat-close {
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.chat-close svg {
  width: 16px;
  height: 16px;
}

.chat-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  min-height: 0;
}

.chat-body {
  padding: 16px 16px 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  line-height: 1.45;
}

.chat-msg-bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.chat-msg-user {
  align-self: flex-end;
  background: var(--blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-msg a.chat-wa-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #0ca84d);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: chat-typing-bounce 1.2s infinite ease-in-out;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chat-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
  background: var(--surface);
  flex-shrink: 0;
}

.chat-chip {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.chat-chip:hover {
  background: var(--blue);
  color: var(--white);
}

.chat-footer {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}

.chat-footer input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.86rem;
  outline: none;
}

.chat-footer input:focus {
  border-color: var(--blue);
}

.chat-footer button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-footer button:hover {
  background: var(--blue-dark);
}

.chat-footer svg {
  width: 16px;
  height: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 20px;
  }

  .header-actions {
    margin-left: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .dashboard {
    grid-template-columns: 102px 1fr;
  }

  .dashboard-sidebar {
    padding: 15px 8px;
  }

  .floating-card {
    transform: scale(0.82);
  }

  .benefits-panel {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-title {
    grid-column: 1 / -1;
  }

  .how-panel,
  .plans-panel,
  .security-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-title,
  .plans-title,
  .security-intro {
    grid-column: 1 / -1;
  }

  .step-arrow {
    display: none;
  }

  .security-item {
    border-left: 0;
    padding: 0;
  }

  .plan-contact {
    grid-column: span 2;
  }

  .plan-contact .button {
    width: auto;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #dfe7f2;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--blue);
    background: var(--blue-soft);
  }

  .header-actions {
    display: flex;
    gap: 8px;
    margin-left: 0;
  }

  .header-actions .button {
    display: none;
  }

  .language-switcher {
    min-height: 38px;
    padding: 4px 6px;
  }

  .language-switcher a {
    min-width: 28px;
    min-height: 28px;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
  }

  .audience-inner {
    grid-template-columns: 1fr;
  }

  .audience-tags {
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
  }

  .split-heading,
  .product-preview,
  .simplified-preview,
  .final-cta-panel {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .product-preview {
    gap: 42px;
  }

  .product-copy {
    max-width: 720px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-panel {
    grid-template-columns: 1fr;
    padding: 30px 70px;
  }

  .testimonial-title {
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .compact-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    width: 112px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    gap: 14px;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 14px;
    overflow: hidden;
  }

  .laptop {
    width: 92%;
    margin-right: auto;
    margin-left: auto;
  }

  .dashboard {
    grid-template-columns: 58px 1fr;
  }

  .dashboard-sidebar {
    padding: 10px 6px;
  }

  .mini-brand {
    width: 42px;
  }

  .dashboard-sidebar a {
    justify-content: center;
    padding: 7px 5px;
  }

  .dashboard-sidebar a span {
    display: none;
  }

  .dashboard-topbar {
    height: 48px;
    padding: 0 10px;
  }

  .dashboard-topbar small,
  .dashboard-actions,
  .orange-metric {
    display: none;
  }

  .dashboard-content {
    padding: 10px;
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-card {
    grid-template-columns: 1fr;
    min-height: 62px;
    padding: 7px;
  }

  .metric-card svg {
    display: none;
  }

  .metric-card strong {
    font-size: 0.58rem;
  }

  .metric-card span {
    font-size: 0.35rem;
  }

  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .finance-panel {
    display: none;
  }

  .floating-card {
    min-width: 118px;
    padding: 10px;
    transform: scale(0.72);
  }

  .floating-card-left {
    top: -8px;
    left: -4px;
  }

  .floating-card-right {
    top: -8px;
    right: -4px;
  }

  .floating-card-bottom-left {
    bottom: 18px;
    left: 0;
  }

  .floating-card-bottom-right {
    right: 0;
    bottom: 12px;
  }

  .audience-inner {
    padding: 22px;
  }

  .audience-title {
    align-items: flex-start;
  }

  .audience-icon {
    width: 48px;
    height: 48px;
  }

  .audience-title h2 {
    font-size: 1.1rem;
  }

  .audience-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .soft-panel {
    padding: 36px 20px 20px;
  }

  .feature-card {
    grid-template-columns: 46px 1fr;
    padding: 20px;
  }

  .tabs {
    margin-right: -14px;
  }

  .tab-button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .members-system,
  .system-card,
  .placeholder-visual {
    min-height: 350px;
  }

  .members-system {
    grid-template-columns: 48px 1fr;
  }

  .system-main {
    overflow: hidden;
    padding: 16px;
  }

  .system-toolbar button {
    display: none;
  }

  .system-search {
    width: 100%;
  }

  .member-table {
    min-width: 520px;
  }

  .member-row {
    grid-template-columns: 1.5fr 0.7fr 0.6fr 0.9fr;
  }

  .placeholder-visual {
    padding: 24px;
  }

  .large-stat strong {
    font-size: 1.8rem;
  }

  .finance-summary {
    grid-template-columns: 1fr;
  }

  .finance-summary span:nth-child(3) {
    display: none;
  }

  .team-card {
    grid-template-columns: 44px 1fr;
  }

  .team-card > span {
    grid-column: 2;
    justify-self: start;
  }

  .benefits-panel,
  .how-panel,
  .plans-panel,
  .security-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .benefits-title,
  .how-title,
  .plans-title,
  .security-intro,
  .plan-contact {
    grid-column: auto;
  }

  .benefit-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 14px;
  }

  .benefit-icon {
    grid-row: span 2;
    width: 46px;
    height: 46px;
  }

  .security-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 14px;
  }

  .security-item > div {
    grid-row: span 2;
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .plan-contact .button {
    width: 100%;
  }

  .testimonial-panel {
    gap: 16px;
    padding: 24px 56px;
  }

  .testimonial-title,
  .testimonials-carousel {
    grid-column: auto;
  }

  .testimonial-panel blockquote {
    padding: 18px;
  }

  .testimonial-prev {
    left: 12px;
  }

  .testimonial-next {
    right: 12px;
  }

  .final-cta-panel {
    padding: 36px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    text-align: center;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-action {
    width: 52px;
    height: 52px;
  }

  .chat-window {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    height: min(70vh, 520px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .site-header {
    animation: none;
  }
}


.plans-panel-two {
  grid-template-columns: 1fr repeat(2, minmax(240px, 0.9fr));
}

.plans-panel-three {
  grid-template-columns: 0.75fr repeat(3, 0.8fr);
}

.plan-price {
  display: block;
  margin: 2px 0 16px;
  color: var(--blue-dark);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.plan-price small {
  margin-left: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.promo-price span {
  display: block;
  margin-bottom: 6px;
  color: #8a94a8;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: line-through;
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 14%, rgba(5, 201, 137, 0.12), transparent 28%),
    radial-gradient(circle at 0 78%, rgba(6, 72, 184, 0.1), transparent 30%),
    #f8fbff;
}

.checkout-header {
  border-bottom: 1px solid rgba(215, 225, 239, 0.85);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.checkout-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.checkout-header .logo {
  width: 142px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.checkout-header .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.checkout-help {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid #dce6f3;
  border-radius: 999px;
  color: var(--blue);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.checkout-help svg {
  width: 17px;
  height: 17px;
}

.checkout-main {
  min-height: calc(100vh - 82px);
}

.checkout-hero {
  padding: 76px 0;
}

.contract-checkout-hero {
  padding: 58px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 440px);
  align-items: center;
  gap: 56px;
}

.checkout-copy h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.checkout-copy p {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: 1.04rem;
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-steps span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #dfe7f3;
  border-radius: 999px;
  color: #5f6b82;
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-steps b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.76rem;
}

.checkout-steps .active {
  border-color: rgba(5, 201, 137, 0.35);
  color: var(--green-dark);
  background: var(--green-soft);
}

.checkout-steps .active b {
  color: var(--white);
  background: var(--green);
}

.checkout-modules {
  margin-top: 42px;
}

.checkout-modules-title {
  margin-bottom: 18px;
}

.checkout-modules-title h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: 0;
}

.checkout-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.checkout-module {
  min-height: 108px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 12px;
  padding: 16px;
  border: 1px solid #dfe8f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(12, 48, 103, 0.06);
}

.checkout-module svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
}

.checkout-module strong {
  align-self: end;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.checkout-module span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.checkout-summary {
  position: relative;
  padding: 34px;
  border: 1px solid #dce6f3;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.checkout-summary-featured {
  border-color: rgba(5, 201, 137, 0.5);
}

.checkout-plan-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
}

.checkout-plan-icon svg {
  width: 27px;
  height: 27px;
}

.checkout-summary h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.checkout-summary p {
  margin-bottom: 22px;
}

.checkout-price {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.checkout-price small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.checkout-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  color: #2b3850;
  font-size: 0.92rem;
  font-weight: 700;
}

.checkout-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.checkout-plan-details {
  margin: -6px 0 26px;
  padding: 16px;
  border: 1px solid #e0e9f5;
  border-radius: 16px;
  background: #f8fbff;
}

.checkout-summary-featured .checkout-plan-details {
  border-color: rgba(5, 201, 137, 0.28);
  background: rgba(247, 255, 252, 0.88);
}

.checkout-plan-details span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-plan-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-plan-details li {
  position: relative;
  padding-left: 18px;
  color: #4f5b72;
  font-size: 0.8rem;
  line-height: 1.35;
}

.checkout-plan-details li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.checkout-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 34px rgba(5, 201, 137, 0.22);
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-button:hover {
  box-shadow: 0 22px 42px rgba(5, 201, 137, 0.3);
  transform: translateY(-2px);
}

.checkout-button svg {
  width: 18px;
  height: 18px;
}

.checkout-note {
  margin: 18px 0 0;
  color: #7a8497;
  font-size: 0.78rem;
  line-height: 1.55;
}

.contract-checkout-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 540px);
  align-items: start;
}

.contract-form {
  align-self: start;
  padding: 30px;
}

.contract-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.contract-fields label,
.contract-accept {
  color: #44516a;
  font-size: 0.78rem;
  font-weight: 800;
}

.contract-fields label {
  display: grid;
  gap: 7px;
  line-height: 1.35;
}

.contract-fields input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d9e3f1;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.92rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contract-fields input:focus {
  border-color: rgba(6, 72, 184, 0.5);
  box-shadow: 0 0 0 4px rgba(6, 72, 184, 0.1);
}

.contract-field-wide {
  grid-column: 1 / -1;
}

.contract-accept {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 20px;
  padding: 14px;
  border: 1px solid #dfe8f4;
  border-radius: 14px;
  background: #f8fbff;
  line-height: 1.45;
}

.contract-accept input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.contract-accept a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contract-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(246, 126, 47, 0.34);
  border-radius: 12px;
  color: #974713;
  background: #fff7ed;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .plans-panel-two,
  .plans-panel-three {
    grid-template-columns: 1fr 1fr;
  }

  .plans-support {
    grid-column: 1 / -1;
  }

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

  .contract-checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-copy {
    text-align: center;
  }

  .checkout-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .checkout-steps {
    justify-content: center;
  }

  .checkout-module-grid {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .plans-panel-two,
  .plans-panel-three {
    grid-template-columns: 1fr;
  }

  .plans-support {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .plans-support span {
    display: block;
    margin: 5px 0 0;
  }

  .checkout-header-inner {
    min-height: 72px;
  }

  .checkout-help {
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .checkout-hero {
    padding: 48px 0;
  }

  .checkout-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .checkout-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .checkout-modules {
    margin-top: 30px;
  }

  .checkout-module-grid {
    grid-template-columns: 1fr;
  }

  .checkout-module {
    min-height: auto;
  }

  .checkout-summary {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .checkout-price {
    font-size: 2rem;
  }
}

.accessibility-tools {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1200;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.accessibility-toggle {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #102a6a;
  box-shadow: 0 16px 34px rgba(6, 23, 61, 0.24);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.accessibility-toggle svg {
  width: 20px;
  height: 20px;
}

.accessibility-quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: stretch;
}

.accessibility-quick-actions button,
.accessibility-color-quick {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(6, 72, 184, 0.22);
  border-radius: 999px;
  color: #102a6a;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 23, 61, 0.16);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
}

.accessibility-quick-actions button {
  cursor: pointer;
}

.accessibility-color-quick select {
  max-width: 132px;
  min-height: 28px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  outline: 0;
}

.accessibility-quick-actions button.active,
.accessibility-color-quick.active {
  color: #071b48;
  border-color: #ffd500;
  background: #ffd500;
}

.accessibility-panel {
  width: min(300px, calc(100vw - 44px));
  padding: 14px;
  display: none;
  border: 1px solid rgba(6, 23, 61, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(6, 23, 61, 0.18);
}

.accessibility-tools.open .accessibility-panel {
  display: grid;
  gap: 8px;
}

.accessibility-panel strong {
  margin-bottom: 4px;
  color: #071b48;
  font-size: 0.92rem;
}

.accessibility-panel button,
.accessibility-panel select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d9e2f2;
  border-radius: 12px;
  color: #10213d;
  background: #f7faff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.accessibility-panel button {
  cursor: pointer;
}

.accessibility-panel button.active {
  color: #fff;
  border-color: #0648b8;
  background: #0648b8;
}

.accessibility-panel label {
  display: grid;
  gap: 6px;
  color: #3a465f;
  font-size: 0.78rem;
  font-weight: 800;
}

.reading-guide {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  height: 76px;
  z-index: 1190;
  display: none;
  pointer-events: none;
  border-top: 3px solid rgba(255, 213, 0, 0.96);
  border-bottom: 3px solid rgba(255, 213, 0, 0.96);
  background: rgba(255, 246, 150, 0.16);
  box-shadow: 0 -999px 0 999px rgba(255, 255, 255, 0.22), 0 999px 0 999px rgba(255, 255, 255, 0.22);
}

body.a11y-adhd .reading-guide {
  display: block;
}

body.a11y-adhd *,
body.a11y-adhd *::before,
body.a11y-adhd *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

body.a11y-adhd p,
body.a11y-adhd li,
body.a11y-adhd .hero-description,
body.a11y-adhd .faq-answer {
  line-height: 1.9;
  max-width: 72ch;
}

body.a11y-adhd a:focus-visible,
body.a11y-adhd button:focus-visible,
body.a11y-adhd input:focus-visible,
body.a11y-adhd select:focus-visible {
  outline: 4px solid #ffd500;
  outline-offset: 4px;
}

body.a11y-contrast {
  color: #fff;
  background: #000;
}

body.a11y-contrast .site-header,
body.a11y-contrast .site-footer,
body.a11y-contrast .soft-panel,
body.a11y-contrast .feature-card,
body.a11y-contrast .faq-item,
body.a11y-contrast .plan-card,
body.a11y-contrast .accessibility-panel,
body.a11y-contrast .chat-window {
  color: #fff;
  border-color: #fff;
  background: #000;
}

body.a11y-contrast a,
body.a11y-contrast h1,
body.a11y-contrast h2,
body.a11y-contrast h3,
body.a11y-contrast p,
body.a11y-contrast span,
body.a11y-contrast strong,
body.a11y-contrast small {
  color: #fff !important;
}

body.a11y-contrast .button,
body.a11y-contrast .accessibility-toggle,
body.a11y-contrast .accessibility-quick-actions button.active,
body.a11y-contrast .accessibility-panel button.active {
  color: #000 !important;
  background: #ffd500 !important;
}

body.a11y-large-text {
  font-size: 112.5%;
}

body.a11y-color-protanopia .site-header,
body.a11y-color-protanopia main,
body.a11y-color-protanopia .site-footer,
body.a11y-color-protanopia .floating-actions,
body.a11y-color-protanopia .chat-window {
  filter: sepia(0.35) saturate(0.78) hue-rotate(-18deg);
}

body.a11y-color-deuteranopia .site-header,
body.a11y-color-deuteranopia main,
body.a11y-color-deuteranopia .site-footer,
body.a11y-color-deuteranopia .floating-actions,
body.a11y-color-deuteranopia .chat-window {
  filter: sepia(0.24) saturate(0.72) hue-rotate(18deg);
}

body.a11y-color-tritanopia .site-header,
body.a11y-color-tritanopia main,
body.a11y-color-tritanopia .site-footer,
body.a11y-color-tritanopia .floating-actions,
body.a11y-color-tritanopia .chat-window {
  filter: sepia(0.25) saturate(0.82) hue-rotate(145deg);
}

body.a11y-color-grayscale .site-header,
body.a11y-color-grayscale main,
body.a11y-color-grayscale .site-footer,
body.a11y-color-grayscale .floating-actions,
body.a11y-color-grayscale .chat-window {
  filter: grayscale(1);
}

body.a11y-contrast[class*="a11y-color-"] .site-header,
body.a11y-contrast[class*="a11y-color-"] main,
body.a11y-contrast[class*="a11y-color-"] .site-footer,
body.a11y-contrast[class*="a11y-color-"] .floating-actions,
body.a11y-contrast[class*="a11y-color-"] .chat-window {
  filter: none;
}

@media (max-width: 560px) {
  .checkout-header .logo {
    width: 118px;
  }

  .contract-fields {
    grid-template-columns: 1fr;
  }

  .contract-form {
    padding: 24px;
  }

  .accessibility-tools {
    left: 14px;
    bottom: 14px;
  }

  .accessibility-toggle span {
    display: none;
  }

  .accessibility-toggle {
    width: 50px;
    justify-content: center;
    padding: 0;
  }

  .accessibility-quick-actions {
    max-width: calc(100vw - 28px);
  }

  .accessibility-quick-actions button,
  .accessibility-color-quick {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .accessibility-color-quick select {
    max-width: 108px;
    font-size: 0.72rem;
  }
}
