:root {
  --ink: #07142f;
  --muted: #526079;
  --line: #dfe6f3;
  --blue: #065be8;
  --blue-2: #2f7cff;
  --green: #19a35b;
  --violet: #7a3fe0;
  --orange: #ff7937;
  --cyan: #0fb5d7;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --dark: #020b19;
  --shadow: 0 18px 55px rgba(13, 34, 74, 0.13);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(223, 230, 243, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
}

.logo-link {
  flex-direction: row;
  align-items: center;
  line-height: 1;
}

.logo-link img {
  display: block;
  width: auto;
  height: 52px;
}

.brand > span {
  font-size: 31px;
}

.brand span span {
  color: var(--blue);
}

.brand small {
  align-self: flex-end;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #17203a;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.mobile-nav a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.header-cta,
.button,
.demo-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta {
  padding: 0 24px;
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(6, 91, 232, 0.24);
}

.header-cta:hover,
.button:hover,
.demo-form button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 74px 0 auto;
  z-index: 19;
  display: none;
  padding: 18px 24px 24px;
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 34px;
  min-height: 720px;
  padding: 64px 48px 80px;
  overflow: hidden;
  color: white;
  background: #031026;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, rgba(3, 16, 38, 0.86), transparent);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 183, 92, 0.32), transparent 22%),
    linear-gradient(90deg, rgba(2, 11, 25, 0.98), rgba(2, 11, 25, 0.82) 42%, rgba(2, 11, 25, 0.42));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-content,
.dashboard-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7bb0ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue-2);
}

.hero-line {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 820;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.button {
  gap: 12px;
  min-width: 170px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 18px 36px rgba(6, 91, 232, 0.32);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-panel {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(6, 18, 38, 0.78);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.panel-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #36df8f;
  box-shadow: 0 0 0 5px rgba(54, 223, 143, 0.12);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric-grid article,
.line-chart,
.donut {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(15, 39, 76, 0.88);
}

.metric-grid article {
  min-height: 100px;
  padding: 12px;
}

.metric-grid span,
.metric-grid em {
  display: block;
  color: #a9bad4;
  font-size: 11px;
  font-style: normal;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 25px;
}

.metric-grid em {
  color: #58e59c;
}

.chart-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.line-chart svg {
  width: 100%;
  height: 220px;
  padding: 14px;
}

.line-chart path,
.line-chart polyline {
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-chart .line-two {
  stroke: var(--orange);
}

.line-chart .grid-line {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 2;
}

.donut {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
}

.donut div {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--blue-2) 0 38%, var(--green) 38% 62%, var(--orange) 62% 80%, var(--cyan) 80% 100%);
  position: relative;
}

.donut div::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: #09203e;
}

.donut ul {
  width: 100%;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #b7c6dc;
  font-size: 12px;
}

.donut li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.donut li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-2);
}

.donut li:nth-child(2) span {
  background: var(--orange);
}

.donut li:nth-child(3) span {
  background: var(--green);
}

.pain-strip {
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 54px 64px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.pain-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px 0 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pain-intro h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
}

.pain-intro p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.pain-list article {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #132040;
  background: var(--soft);
  box-shadow: none;
}

.pain-list article strong {
  font-size: 16px;
  line-height: 1.18;
}

.pain-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

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

.pain-outcome article {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.pain-outcome strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.pain-outcome span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.issue-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  color: var(--blue);
  background: rgba(6, 91, 232, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.agent-system {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 78px 72px;
  background: var(--soft);
}

.agent-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
}

.format-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.format-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
}

.format-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.section-support {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.format-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(6, 91, 232, 0.18);
  border-radius: 6px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}

.bot-face {
  position: relative;
  width: 158px;
  height: 142px;
  border-radius: 50% 50% 44% 44%;
  background: linear-gradient(180deg, #f9fbff, #cfddeb);
  box-shadow: var(--shadow);
}

.bot-face::before {
  content: "";
  position: absolute;
  left: 23px;
  right: 23px;
  top: 40px;
  height: 55px;
  border-radius: 20px;
  background: #082346;
}

.bot-face span,
.bot-face strong {
  position: absolute;
  z-index: 2;
  top: 58px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #72c6ff;
  box-shadow: 0 0 18px rgba(114, 198, 255, 0.95);
}

.bot-face span {
  left: 58px;
}

.bot-face strong {
  right: 58px;
}

.bot-face em {
  position: absolute;
  z-index: 2;
  left: 69px;
  top: 77px;
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: #72c6ff;
}

.app {
  position: absolute;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(15, 34, 70, 0.18);
  font-size: 14px;
  font-weight: 850;
}

.gmail {
  top: 20px;
  left: 80px;
  background: #ef4d40;
}

.crm {
  top: 58px;
  right: 42px;
  background: #654ee5;
}

.slack {
  right: 20px;
  bottom: 112px;
  background: #21b573;
}

.sheets {
  bottom: 40px;
  left: 86px;
  background: #168a4a;
}

.docs {
  left: 10px;
  bottom: 140px;
  background: #3b75e8;
}

.data {
  bottom: 22px;
  right: 112px;
  background: #5d718e;
}

.section,
.demo {
  padding: 80px 72px;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2,
.security-band h2,
.demo h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.security-band p,
.demo p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 26px;
}

.check-grid p {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #22304e;
  font-size: 16px;
}

.check-grid p::before,
.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.package-grid,
.implementation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-model {
  display: grid;
  gap: 30px;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(6, 91, 232, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(6, 91, 232, 0.08), rgba(15, 181, 215, 0.06)),
    white;
  box-shadow: var(--shadow);
}

.step-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card h3,
.implementation-heading h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.review-card h3 span {
  color: var(--blue);
}

.review-card p,
.implementation-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.credit-note {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: rgba(6, 91, 232, 0.08);
  color: var(--ink);
  font-weight: 750;
}

.review-includes {
  padding: 26px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.review-includes h4 {
  margin: 0 0 14px;
  font-size: 18px;
}

.review-includes ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-includes li {
  position: relative;
  padding-left: 28px;
  color: #24324d;
  line-height: 1.4;
}

.review-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.implementation-heading {
  max-width: 860px;
  margin-top: 16px;
}

.package,
.service-grid article,
.resource-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(13, 34, 74, 0.08);
}

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px;
}

.package-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 35px;
  font-weight: 800;
}

.starter .package-icon {
  color: var(--green);
  background: rgba(25, 163, 91, 0.14);
}

.review .package-icon {
  color: var(--cyan);
  background: rgba(15, 181, 215, 0.13);
}

.growth .package-icon {
  color: var(--blue);
  background: rgba(6, 91, 232, 0.12);
}

.elite .package-icon {
  color: var(--violet);
  background: rgba(122, 63, 224, 0.13);
}

.package h3,
.service-grid h3,
.resource-grid h3,
.steps h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.package p {
  color: var(--muted);
  line-height: 1.48;
}

.package-kicker {
  display: block;
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.25;
}

.positioning {
  margin: 10px 0 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.package-price {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.starter .positioning {
  color: var(--muted);
}

.growth .positioning {
  color: var(--muted);
}

.elite .positioning {
  color: var(--muted);
}

.package-block {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.package-block h4 {
  margin: 0 0 8px;
  color: #17203a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.package-block p {
  margin: 0;
  font-size: 15px;
}

.package ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.package li {
  position: relative;
  padding-left: 28px;
  color: #24324d;
  line-height: 1.35;
}

.package-link {
  display: grid;
  place-items: center;
  min-height: 54px;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 6px;
  color: white;
  background: var(--green);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.growth .package-link {
  background: var(--blue);
}

.elite .package-link {
  background: var(--violet);
}

.review .package-link {
  background: var(--cyan);
}

.featured-package {
  border: 2px solid var(--blue);
  box-shadow: 0 22px 58px rgba(6, 91, 232, 0.16);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.package-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.package-process article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.package-process span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.package-process h3 {
  margin: 0;
  font-size: 22px;
}

.package-process p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 30px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
}

.pricing-final-cta h3 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.alt {
  background: var(--soft);
}

.service-grid,
.resource-grid,
.resource-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-grid article,
.resource-grid article,
.resource-feature article {
  padding: 28px;
}

.service-grid {
  counter-reset: service;
}

.service-grid article {
  position: relative;
  min-height: 190px;
}

.service-grid article::before {
  counter-increment: service;
  content: "0" counter(service);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--blue);
  background: rgba(6, 91, 232, 0.1);
  font-weight: 900;
}

.service-grid p,
.resource-grid p,
.resource-feature p,
.steps p {
  color: var(--muted);
  line-height: 1.5;
}

.package-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(13, 34, 74, 0.16);
}

.workflow {
  padding-bottom: 98px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}

.steps article {
  position: relative;
  padding: 26px 18px;
  text-align: center;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -21px;
  width: 34px;
  border-top: 2px dashed #9db0ca;
}

.steps span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(6, 91, 232, 0.1);
  font-weight: 900;
}

.security-band {
  display: grid;
  grid-template-columns: 120px minmax(270px, 1fr) minmax(400px, 1.4fr);
  gap: 34px;
  align-items: center;
  padding: 68px 72px;
  color: white;
  background:
    linear-gradient(120deg, rgba(6, 91, 232, 0.18), transparent),
    #031026;
}

.security-band .eyebrow {
  color: #7bb0ff;
}

.security-band p {
  color: rgba(255, 255, 255, 0.76);
}

.shield {
  position: relative;
  width: 98px;
  height: 116px;
  border: 8px solid var(--blue-2);
  border-radius: 36px 36px 48px 48px;
  clip-path: polygon(50% 0, 100% 17%, 88% 80%, 50% 100%, 12% 80%, 0 17%);
}

.shield::after {
  content: "✓";
  position: absolute;
  inset: 25px;
  display: grid;
  place-items: center;
  color: #7bb0ff;
  font-size: 46px;
  font-weight: 900;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid article {
  min-height: 150px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 10px;
  color: #7bb0ff;
  font-size: 18px;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.42;
}

.resources {
  background: white;
}

.resource-grid article span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--blue);
  background: rgba(6, 91, 232, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.resource-feature article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(13, 34, 74, 0.08);
}

.resource-feature article span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--blue);
  background: rgba(6, 91, 232, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.resource-feature ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.resource-feature li {
  position: relative;
  padding-left: 22px;
  color: #24324d;
  font-size: 15px;
  line-height: 1.35;
}

.resource-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.demo {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 520px);
  gap: 44px;
  align-items: start;
  color: white;
  background: var(--blue);
}

.demo .eyebrow,
.demo p {
  color: rgba(255, 255, 255, 0.86);
}

.demo h2 {
  max-width: 760px;
}

.demo-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: white;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #1a2742;
  font-weight: 750;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #cad5e8;
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.demo-form button {
  width: 100%;
  border: 0;
  color: white;
  background: var(--ink);
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.is-success {
  background: #e8f8ef;
  border: 1px solid #94d8ad;
  border-radius: 8px;
  color: #0f6b32;
  font-weight: 800;
  padding: 0.9rem 1rem;
}

.form-note.is-error {
  background: #fff1f1;
  border: 1px solid #f2b1b1;
  border-radius: 8px;
  color: #9b1c1c;
  font-weight: 800;
  padding: 0.9rem 1rem;
}

.hidden-field {
  display: none;
}

.demo-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.demo-card {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 260px;
  padding: 32px;
  border-radius: 8px;
  color: var(--ink);
  background: white;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.demo-card strong {
  font-size: 28px;
  line-height: 1.1;
}

.demo-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.contact-page {
  min-height: calc(100vh - 74px);
  background: var(--soft);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 36px;
  align-items: end;
  padding: 88px 72px 64px;
  color: white;
  background:
    linear-gradient(120deg, rgba(3, 16, 38, 0.94), rgba(6, 91, 232, 0.82)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-theme-review .contact-hero {
  background:
    linear-gradient(120deg, rgba(3, 16, 38, 0.94), rgba(15, 181, 215, 0.76)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-theme-starter .contact-hero {
  background:
    linear-gradient(120deg, rgba(3, 16, 38, 0.94), rgba(25, 163, 91, 0.76)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-theme-growth .contact-hero {
  background:
    linear-gradient(120deg, rgba(3, 16, 38, 0.94), rgba(6, 91, 232, 0.82)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-theme-elite .contact-hero {
  background:
    linear-gradient(120deg, rgba(3, 16, 38, 0.94), rgba(122, 63, 224, 0.78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-theme-review .demo-form button {
  background: #087f98;
}

.contact-theme-starter .demo-form button {
  background: var(--green);
}

.contact-theme-growth .demo-form button {
  background: var(--blue);
}

.contact-theme-elite .demo-form button {
  background: var(--violet);
}

.contact-hero .eyebrow,
.contact-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
}

.contact-hero p:not(.eyebrow) {
  max-width: 790px;
  font-size: 21px;
  line-height: 1.45;
}

.contact-summary {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.contact-summary strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.contact-summary ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 560px) 1fr;
  gap: 28px;
  align-items: start;
  padding: 56px 72px 82px;
}

.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cad5e8;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-support {
  display: grid;
  gap: 18px;
}

.contact-support article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(13, 34, 74, 0.08);
}

.contact-support h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.contact-support p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 72px;
  color: rgba(255, 255, 255, 0.72);
  background: #020b19;
}

.footer-brand {
  width: fit-content;
  padding: 0;
  background: transparent;
}

.footer-brand img {
  height: 58px;
}

.site-footer p {
  margin: 16px 0 8px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 12px 28px;
  align-content: start;
}

.site-footer a:hover {
  color: white;
}

.legal-page {
  min-height: calc(100vh - 74px);
  padding: 82px 24px;
  background: var(--soft);
}

.legal-page section {
  max-width: 900px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.legal-page h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.package-page {
  min-height: calc(100vh - 74px);
  background: var(--soft);
}

.package-hero {
  padding: 92px 72px;
  color: white;
  background:
    linear-gradient(120deg, rgba(6, 91, 232, 0.9), rgba(3, 16, 38, 0.88)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.starter-page .package-hero {
  background:
    linear-gradient(120deg, rgba(25, 163, 91, 0.9), rgba(3, 16, 38, 0.88)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.elite-page .package-hero {
  background:
    linear-gradient(120deg, rgba(122, 63, 224, 0.9), rgba(3, 16, 38, 0.88)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.package-hero .eyebrow,
.package-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.package-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
}

.package-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 22px;
  line-height: 1.45;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 56px 72px 82px;
}

.package-detail-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(13, 34, 74, 0.08);
}

.package-detail-grid h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.package-detail-grid p,
.package-detail-grid li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.package-detail-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero,
  .agent-system,
  .demo,
  .contact-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .dashboard-panel {
    max-width: 760px;
    transform: none;
  }

  .pain-strip {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .pain-intro {
    padding-right: 0;
    border-right: 0;
  }

  .pain-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-outcome {
    grid-column: 1;
  }

  .package-grid,
  .implementation-grid,
  .review-card,
  .package-process,
  .service-grid,
  .resource-grid,
  .resource-feature {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-package {
    transform: none;
  }

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

  .steps article::after {
    display: none;
  }

  .security-band {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .brand > span {
    font-size: 28px;
  }

  .logo-link img {
    height: 44px;
  }

  .hero,
  .section,
  .agent-system,
  .security-band,
  .demo,
  .contact-hero,
  .contact-layout,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 0.94;
  }

  .hero-line {
    margin-top: 16px;
    font-size: 28px;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 17px;
  }

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

  .hero-actions,
  .button {
    width: 100%;
  }

  .metric-grid,
  .chart-row,
  .check-grid,
  .steps,
  .package-process,
  .trust-grid,
  .package-detail-grid {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .implementation-grid,
  .review-card,
  .pricing-final-cta {
    grid-template-columns: 1fr;
  }

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

  .pricing-final-cta {
    display: grid;
  }

  .dashboard-panel {
    padding: 12px;
  }

  .dashboard-panel .line-chart {
    min-height: 120px;
  }

  .pain-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .agent-visual {
    min-height: 300px;
  }

  .app {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

  .site-footer {
    display: grid;
  }

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

  .legal-page section {
    padding: 28px;
  }

  .package-hero,
  .package-detail-grid {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .mobile-nav {
    inset: 68px 0 auto;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-line {
    font-size: 23px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .dashboard-panel {
    display: none;
  }

  .pain-list {
    grid-template-columns: 1fr;
  }

  .package,
  .service-grid article,
  .resource-grid article {
    padding: 22px;
  }
}
