:root {
  --bg: #f5f2ec;
  --surface: #ffffff;
  --surface-soft: #f0ebe2;
  --surface-strong: #0f2731;
  --surface-muted: #ecf1ef;
  --text: #1b2226;
  --text-soft: #5d666b;
  --text-light: #e9f0ef;
  --line: rgba(18, 49, 58, 0.12);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #c96f3b;
  --accent-strong: #b05d2e;
  --accent-soft: rgba(201, 111, 59, 0.14);
  --success: #2c7a59;
  --shadow-soft: 0 18px 50px rgba(15, 39, 49, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 39, 49, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #f5f2ec 100%);
  color: var(--text);
  line-height: 1.65;
}

[id] {
  scroll-margin-top: 108px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 104px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.58);
}

.section-hero {
  padding-top: 132px;
  padding-bottom: 96px;
}

.section-cta {
  background:
    radial-gradient(circle at top left, rgba(201, 111, 59, 0.18), transparent 26%),
    linear-gradient(135deg, #0f2731 0%, #183b46 100%);
  color: var(--text-light);
}

.narrow {
  width: min(920px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(245, 242, 236, 0.88);
  border-bottom: 1px solid rgba(18, 49, 58, 0.08);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.site-header.is-condensed {
  background: rgba(245, 242, 236, 0.96);
  border-bottom-color: rgba(18, 49, 58, 0.12);
  box-shadow: 0 14px 34px rgba(15, 39, 49, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 84px;
  padding: 8px 0 10px;
  transition:
    min-height 0.28s ease,
    padding 0.28s ease,
    gap 0.28s ease;
}

.footer-inner {
  min-height: 84px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  padding-top: 4px;
  transition:
    gap 0.28s ease,
    padding-top 0.28s ease,
    transform 0.28s ease;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #12313a 0%, #1c4955 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-logo {
  width: clamp(148px, 13.5vw, 192px);
  height: auto;
  margin-top: 2px;
  transform-origin: left center;
  transition:
    width 0.28s ease,
    transform 0.28s ease,
    margin-top 0.28s ease;
}

.brand-copy {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.2;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.site-header.is-condensed .header-inner {
  min-height: 72px;
  padding: 4px 0 6px;
}

.site-header.is-condensed .brand {
  gap: 4px;
  padding-top: 0;
}

.site-header.is-condensed .brand-logo {
  width: clamp(132px, 12vw, 168px);
  margin-top: 0;
  transform: scale(0.96);
}

.site-header.is-condensed .brand-copy small {
  opacity: 0.84;
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(201, 111, 59, 0.28);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(18, 49, 58, 0.12);
  color: var(--text);
}

.button-secondary:hover {
  background: #fff;
  border-color: rgba(18, 49, 58, 0.2);
}

.button-light {
  background: #fff;
  color: #12313a;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-full {
  width: 100%;
}

.mobile-header-cta,
.mobile-cta-bar {
  display: none;
}

.eyebrow,
.section-label,
.panel-label,
.package-badge,
.demo-tag {
  display: inline-flex;
  justify-self: start;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 49, 58, 0.08);
  color: #12313a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

.section-heading-center .section-label {
  justify-self: center;
}

.hero-grid,
.section-grid,
.demo-grid,
.cta-grid {
  display: grid;
  gap: 44px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.section-grid h2,
.narrow h2,
.cta-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(2.35rem, 4vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-kicker {
  margin: 14px 0 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 10.8ch;
  margin-top: 12px;
}

.hero-lead {
  max-width: 62ch;
  margin-top: 18px;
}

.section-grid h2,
.section-heading h2,
.narrow h2,
.cta-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.hero-lead,
.section-intro,
.text-block p,
.cta-copy p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-points li,
.check-list li,
.feature-list li,
.package-list li,
.demo-list li {
  position: relative;
  padding-left: 28px;
}

.hero-points li::before,
.check-list li::before,
.feature-list li::before,
.package-list li::before,
.demo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c96f3b 0%, #d89a4f 100%);
  box-shadow: 0 0 0 6px rgba(201, 111, 59, 0.12);
}

.hero-points li {
  min-height: 100%;
  padding: 14px 14px 14px 34px;
  border-radius: 16px;
  border: 1px solid rgba(18, 49, 58, 0.1);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  line-height: 1.4;
}

.hero-points li::before {
  left: 14px;
  top: 18px;
}

.hero-panel {
  display: grid;
  gap: 16px;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -28px -18px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 111, 59, 0.14) 0%, rgba(201, 111, 59, 0) 72%);
  pointer-events: none;
  animation: floatHalo 8s ease-in-out infinite;
}

.panel-card,
.info-card,
.benefit-card,
.process-card,
.package-card,
.form-card,
.demo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.panel-card,
.info-card,
.package-card,
.form-card,
.demo-card {
  padding: 28px;
}

.panel-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px 30px 30px;
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.96)),
    #fff;
  border-color: rgba(201, 111, 59, 0.24);
  box-shadow: 0 24px 60px rgba(15, 39, 49, 0.12);
}

.panel-main::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -38px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 49, 58, 0.08) 0%, rgba(18, 49, 58, 0) 72%);
  z-index: -1;
  pointer-events: none;
}

.panel-main h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.panel-main > p {
  max-width: 36ch;
}

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

.panel-metrics {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 12px;
  margin-top: 22px;
}

.metric-card {
  position: relative;
  min-height: 100%;
  padding: 18px 18px 18px 16px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "chip title"
    "chip desc";
  column-gap: 14px;
  row-gap: 5px;
  align-items: start;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(18, 49, 58, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 236, 227, 0.9)),
    #fff;
  box-shadow: 0 16px 34px rgba(15, 39, 49, 0.08);
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), rgba(201, 111, 59, 0.16));
}

.metric-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 49, 58, 0.08) 0%, rgba(18, 49, 58, 0) 72%);
  z-index: -1;
}

.metric-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(18, 49, 58, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 239, 231, 0.92));
}

.metric-card:nth-child(3) {
  border-color: rgba(201, 111, 59, 0.24);
  box-shadow: 0 18px 38px rgba(201, 111, 59, 0.14);
}

.metric-chip {
  grid-area: chip;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(201, 111, 59, 0.18), rgba(201, 111, 59, 0.08));
  border: 1px solid rgba(201, 111, 59, 0.2);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  grid-area: title;
  font-size: 1.08rem;
  line-height: 1.14;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.metric-card span:last-child {
  grid-area: desc;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.48;
}

.panel-stack .panel-card strong,
.principle-card strong,
.contact-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.panel-stack .panel-card strong {
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 1.18rem;
}

.principle-card strong,
.benefit-card h3,
.process-card h3,
.package-card h3,
.demo-card h3,
.highlight-strip strong,
.extra-chip {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-stack .panel-card {
  position: relative;
  min-height: 100%;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 39, 49, 0.08);
}

.panel-stack .panel-card:first-child {
  background: linear-gradient(180deg, rgba(18, 49, 58, 0.04), rgba(255, 255, 255, 0.94));
}

.panel-stack .panel-card:last-child {
  border-color: rgba(201, 111, 59, 0.24);
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 232, 0.95));
}

.section-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.text-block {
  display: grid;
  gap: 26px;
}

.text-block p {
  margin-top: 0;
}

.muted-card {
  background: var(--surface-muted);
}

.check-list,
.feature-list,
.package-list,
.demo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

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

.principle-card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(18, 49, 58, 0.12);
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.98));
  box-shadow: 0 20px 44px rgba(15, 39, 49, 0.1);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading .section-intro {
  margin: 0;
}

.section-heading-center {
  text-align: center;
  justify-items: center;
}

.benefit-grid,
.process-grid,
.package-grid,
.extra-grid {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  min-height: 100%;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(18, 49, 58, 0.12);
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 238, 0.99));
  box-shadow: 0 20px 44px rgba(15, 39, 49, 0.1);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), rgba(201, 111, 59, 0.18));
}

.benefit-card h3,
.info-card h2,
.process-card h3,
.package-card h3,
.demo-card h3,
.form-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.2;
}

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

.benefit-card p,
.principle-card p,
.process-card p,
.package-card p,
.demo-card p,
.info-card p {
  margin: 0;
}

.principle-card strong,
.benefit-card h3,
.process-card h3,
.highlight-strip strong {
  line-height: 1.18;
}

.principle-card strong {
  min-height: 2.9em;
}

.benefit-card h3 {
  min-height: 3.5em;
}

.info-card-dark {
  background: linear-gradient(135deg, #102a34 0%, #173842 100%);
  color: var(--text-light);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.feature-list li {
  font-weight: 700;
}

.feature-list-light li::before {
  background: linear-gradient(135deg, #f1b68e 0%, #ffffff 100%);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
}

.closing-line {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.key-support {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.highlight-strip {
  margin-top: 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
}

.highlight-strip div {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(18, 49, 58, 0.12);
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 236, 227, 0.95));
  box-shadow: 0 20px 44px rgba(15, 39, 49, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.highlight-strip strong {
  display: block;
  min-height: 2.9em;
  margin-bottom: 0;
}

.highlight-strip div::before,
.principle-card::before,
.extra-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), rgba(201, 111, 59, 0.18));
}

.highlight-strip div::after,
.principle-card::after,
.extra-chip::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 49, 58, 0.08) 0%, rgba(18, 49, 58, 0) 72%);
  z-index: -1;
  pointer-events: none;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.process-card {
  position: relative;
  min-height: 100%;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(18, 49, 58, 0.12);
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 238, 0.98));
  box-shadow: 0 20px 46px rgba(15, 39, 49, 0.1);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.process-card p {
  color: var(--text-soft);
}

.process-card h3 {
  min-height: 4.25em;
  font-size: 1.1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  margin-bottom: 6px;
  background: linear-gradient(180deg, rgba(201, 111, 59, 0.16), rgba(201, 111, 59, 0.08));
  border: 1px solid rgba(201, 111, 59, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
}

.package-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 232, 0.98));
  border-color: rgba(201, 111, 59, 0.42);
  box-shadow: 0 28px 65px rgba(201, 111, 59, 0.22);
  transform: translateY(-12px) scale(1.02);
}

.package-badge-featured {
  background: rgba(201, 111, 59, 0.14);
  color: var(--accent-strong);
}

.package-intro {
  max-width: 760px;
}

.package-kicker {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(201, 111, 59, 0.12);
  color: var(--accent-strong);
  font-weight: 800;
}

.price {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.package-copy {
  margin: 0;
  color: var(--text-soft);
}

.package-spotlight {
  padding-top: 4px;
  color: var(--text);
  font-weight: 700;
}

.package-card-featured .price,
.package-card-featured .package-copy {
  color: var(--text);
}

.package-card-featured .button-primary {
  width: 100%;
}

.extra-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.extra-chip {
  position: relative;
  min-height: 118px;
  padding: 30px 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  isolation: isolate;
  border-radius: 22px;
  border: 1px solid rgba(18, 49, 58, 0.12);
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 242, 235, 0.97));
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 20px 44px rgba(15, 39, 49, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.principle-card:hover,
.benefit-card:hover,
.process-card:hover,
.highlight-strip div:hover,
.extra-chip:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 111, 59, 0.3);
  box-shadow: 0 26px 56px rgba(15, 39, 49, 0.14);
}

body.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready .reveal-item.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.demo-grid,
.cta-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.demo-card {
  overflow: hidden;
  padding: 0;
  border-color: rgba(201, 111, 59, 0.28);
  box-shadow: 0 30px 70px rgba(15, 39, 49, 0.16);
}

.demo-card-link {
  display: block;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.demo-card-link:hover,
.demo-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(201, 111, 59, 0.44);
  box-shadow: 0 34px 78px rgba(15, 39, 49, 0.2);
}

.demo-card-link:focus-visible {
  outline: 3px solid rgba(201, 111, 59, 0.24);
  outline-offset: 4px;
}

.demo-browser {
  display: flex;
  gap: 10px;
  padding: 18px 22px;
  background: #eef3f2;
  border-bottom: 1px solid var(--line);
}

.demo-browser span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(18, 49, 58, 0.2);
}

.demo-screen {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8f4ee 100%);
}

.demo-screen p {
  color: var(--text-soft);
}

.demo-lead {
  margin: 18px 0 0;
  color: var(--text);
  font-weight: 700;
}

.demo-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.demo-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 49, 58, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.demo-proof {
  margin-bottom: 10px;
  color: var(--accent-strong) !important;
  font-size: 0.95rem;
  font-weight: 800;
}

.demo-screen h3 {
  font-size: 1.52rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.24s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-content {
  height: 0;
  overflow: hidden;
  transition:
    height 0.28s ease,
    padding 0.28s ease;
  padding: 0 24px;
}

.faq-item.is-open .faq-content {
  padding: 0 24px 24px;
}

.faq-content p {
  margin: 0;
  color: var(--text-soft);
}

.cta-copy,
.form-card {
  position: relative;
  z-index: 1;
}

.section-cta .cta-copy p {
  color: rgba(233, 240, 239, 0.84);
}

.cta-support {
  margin-top: 16px !important;
  font-weight: 700;
  color: #fff !important;
}

.contact-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 30px;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 44px rgba(7, 21, 27, 0.18);
}

.contact-box::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
  z-index: -1;
}

.contact-box strong {
  margin-bottom: 0;
  color: #fff;
}

.contact-box-list {
  display: grid;
  gap: 10px;
}

.contact-box p {
  margin: 0;
  color: rgba(233, 240, 239, 0.86);
}

.contact-box-list p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.contact-box-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(233, 240, 239, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-box a {
  color: #fff;
  font-weight: 700;
}

.contact-box-note {
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.form-card p {
  margin-top: 10px;
  color: var(--text-soft);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.checkbox-row {
  font-weight: 700;
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(18, 49, 58, 0.16);
  background: #fff;
  color: var(--text);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(201, 111, 59, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 111, 59, 0.14);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  font-weight: 600;
}

.checkbox-row input {
  margin-top: 3px;
}

.checkbox-row a {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(201, 111, 59, 0.58);
  text-underline-offset: 4px;
}

.checkbox-row a:hover {
  color: var(--accent);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
  color: var(--success);
}

.form-feedback.is-pending {
  color: var(--text-soft);
}

.form-feedback.is-error {
  color: #a03d2f;
}

.site-footer {
  padding: 24px 0 36px;
  background: #0c2028;
  color: rgba(233, 240, 239, 0.82);
}

.site-footer .footer-inner {
  align-items: flex-start;
}

.site-footer strong {
  color: #fff;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 420px;
}

.footer-logo-shell {
  display: inline-flex;
  justify-self: start;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-logo {
  width: clamp(178px, 18vw, 260px);
  height: auto;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.status-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.status-main {
  flex: 1;
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.status-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(18, 49, 58, 0.12);
  background:
    radial-gradient(circle at top right, rgba(201, 111, 59, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.98));
  box-shadow: 0 24px 60px rgba(15, 39, 49, 0.12);
}

.status-card h1 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.status-card p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18, 49, 58, 0.08);
  color: #12313a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-card.status-error {
  border-color: rgba(160, 61, 47, 0.18);
  background:
    radial-gradient(circle at top right, rgba(160, 61, 47, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.98));
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.status-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  padding-left: 24px;
  position: relative;
  color: var(--text-soft);
}

.status-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(201, 111, 59, 0.12);
}

.service-page {
  --bg: #07080b;
  --surface: #111319;
  --surface-soft: #0c0f14;
  --surface-strong: #040507;
  --surface-muted: #141821;
  --text: #f3f5f7;
  --text-soft: #9ea5b3;
  --text-light: #ffffff;
  --line: rgba(76, 255, 88, 0.18);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #4cff57;
  --accent-strong: #1fca33;
  --accent-soft: rgba(76, 255, 87, 0.16);
  --accent-secondary: #d43bff;
  --accent-secondary-strong: #b71ee6;
  --success: #4cff57;
  --shadow-soft: 0 26px 70px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 32px 84px rgba(0, 0, 0, 0.46);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

body.service-page {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(76, 255, 87, 0.16), transparent 24%),
    radial-gradient(circle at 86% 4%, rgba(212, 59, 255, 0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(76, 255, 87, 0.08), transparent 28%),
    linear-gradient(180deg, #07080b 0%, #0b0d11 36%, #07080b 100%);
  color: var(--text);
}

.service-page .site-header {
  background: rgba(7, 8, 11, 0.82);
  border-bottom-color: rgba(76, 255, 87, 0.16);
  box-shadow: none;
}

.service-page .site-header.is-condensed {
  background: rgba(7, 8, 11, 0.94);
  border-bottom-color: rgba(76, 255, 87, 0.22);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.service-page .brand-copy small,
.service-page .main-nav {
  color: rgba(158, 165, 179, 0.92);
}

.service-page .header-inner {
  min-height: 92px;
  padding: 12px 0;
}

.service-page .brand {
  gap: 0;
  padding-top: 0;
}

.service-page .brand-logo {
  width: clamp(250px, 20vw, 340px);
  margin-top: 0;
}

.service-page .site-header.is-condensed .brand-logo {
  width: clamp(228px, 18vw, 304px);
  margin-top: 0;
  transform: none;
}

.service-page .brand-copy small,
.service-page .main-nav a,
.service-page .footer-links a {
  font-family: "League Spartan", "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page .main-nav a:hover {
  color: var(--text-light);
}

.service-page .section-soft {
  background:
    linear-gradient(180deg, rgba(12, 15, 20, 0.92), rgba(8, 10, 14, 0.94));
}

.service-page .section-cta {
  background:
    radial-gradient(circle at top left, rgba(76, 255, 87, 0.18), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(212, 59, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #09120d 0%, #10141e 52%, #160a1f 100%);
}

.service-page .eyebrow,
.service-page .section-label,
.service-page .panel-label,
.service-page .package-badge,
.service-page .demo-tag,
.service-page .status-tag {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--accent-secondary);
  font-family: "League Spartan", "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-page .hero-copy h1,
.service-page .section-heading h2,
.service-page .section-grid h2,
.service-page .narrow h2,
.service-page .cta-copy h2,
.service-page .panel-main h2,
.service-page .info-card h2,
.service-page .status-card h1 {
  color: var(--text-light);
  font-family: "League Spartan", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.service-page .panel-main h2,
.service-page .info-card h2 {
  line-height: 0.98;
}

.service-page .hero-copy h1 {
  max-width: none;
  margin-top: 16px;
  font-size: clamp(3.25rem, 4.7vw, 5rem);
  line-height: 0.94;
}

.service-page .hero-kicker {
  color: var(--accent-secondary);
  font-family: "League Spartan", "Manrope", sans-serif;
  max-width: none;
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page .hero-grid {
  grid-template-columns: minmax(0, 1.32fr) minmax(330px, 0.68fr);
  gap: 64px;
  align-items: start;
}

.service-page .hero-lead,
.service-page .section-intro,
.service-page .text-block p,
.service-page .cta-copy p,
.service-page .info-card p,
.service-page .benefit-card p,
.service-page .process-card p,
.service-page .package-card p,
.service-page .faq-content p,
.service-page .contact-box p,
.service-page .demo-card p {
  color: var(--text-soft);
}

.service-page .hero-note,
.service-page .package-spotlight {
  color: rgba(255, 255, 255, 0.86);
}

.service-page .hero-panel {
  padding-top: 8px;
}

.service-page .button {
  border-radius: 10px;
  font-family: "League Spartan", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-page .button-primary,
.service-page .button-light {
  background: linear-gradient(180deg, #62ff58 0%, #20c935 100%);
  color: #081008;
  box-shadow: 0 18px 44px rgba(76, 255, 87, 0.22);
}

.service-page .button-primary:hover,
.service-page .button-light:hover {
  background: linear-gradient(180deg, #7aff72 0%, #2de144 100%);
}

.service-page .button-secondary {
  background: rgba(17, 19, 25, 0.82);
  border-color: rgba(212, 59, 255, 0.34);
  color: var(--text-light);
}

.service-page .button-secondary:hover {
  background: rgba(24, 27, 34, 0.96);
  border-color: rgba(212, 59, 255, 0.56);
}

.service-page .button-outline-light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
}

.service-page .button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.service-page .hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-page .hero-points li {
  border-color: rgba(76, 255, 87, 0.18);
  background: linear-gradient(180deg, rgba(17, 19, 25, 0.94), rgba(11, 13, 18, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  color: var(--text-light);
}

.service-page .hero-points li::before,
.service-page .check-list li::before,
.service-page .feature-list li::before,
.service-page .package-list li::before,
.service-page .demo-list li::before,
.service-page .status-list li::before {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  box-shadow: 0 0 0 6px rgba(76, 255, 87, 0.1);
}

.hero-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-page .hero-evidence span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(76, 255, 87, 0.16);
  background: rgba(15, 18, 23, 0.78);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-page .hero-panel::after {
  background: radial-gradient(circle, rgba(76, 255, 87, 0.18) 0%, rgba(76, 255, 87, 0) 72%);
}

.service-page .panel-card,
.service-page .info-card,
.service-page .benefit-card,
.service-page .process-card,
.service-page .package-card,
.service-page .form-card,
.service-page .demo-card,
.service-page .faq-item,
.service-page .status-card {
  border-color: rgba(76, 255, 87, 0.16);
  background: linear-gradient(180deg, rgba(16, 18, 24, 0.97), rgba(9, 10, 14, 0.97));
  box-shadow: var(--shadow-soft);
}

.service-page .panel-main {
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.16), transparent 38%),
    radial-gradient(circle at bottom left, rgba(212, 59, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(18, 20, 27, 0.98), rgba(10, 12, 16, 0.98));
  border-color: rgba(76, 255, 87, 0.28);
  box-shadow: var(--shadow-strong);
  padding: 38px 34px 34px;
}

.service-page .panel-main::after,
.service-page .metric-card::after,
.service-page .highlight-strip div::after,
.service-page .principle-card::after,
.service-page .extra-chip::after,
.service-page .contact-box::after {
  background: radial-gradient(circle, rgba(212, 59, 255, 0.14) 0%, rgba(212, 59, 255, 0) 72%);
}

.service-page .metric-card,
.service-page .panel-stack .panel-card,
.service-page .principle-card,
.service-page .benefit-card,
.service-page .process-card,
.service-page .highlight-strip div,
.service-page .extra-chip {
  border-color: rgba(76, 255, 87, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(11, 13, 17, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.service-page .panel-metrics {
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(76, 255, 87, 0.12);
}

.service-page .metric-card {
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
}

.service-page .metric-card::before,
.service-page .benefit-card::before,
.service-page .highlight-strip div::before,
.service-page .principle-card::before,
.service-page .extra-chip::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 100%);
}

.service-page .metric-card:nth-child(2),
.service-page .panel-stack .panel-card:first-child,
.service-page .panel-stack .panel-card:last-child {
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(11, 13, 17, 0.98));
}

.service-page .metric-card:nth-child(3),
.service-page .panel-stack .panel-card:last-child,
.service-page .package-card-featured {
  border-color: rgba(212, 59, 255, 0.28);
  box-shadow: 0 22px 54px rgba(212, 59, 255, 0.12);
}

.service-page .metric-chip,
.service-page .step-number {
  border-color: rgba(76, 255, 87, 0.24);
  background: linear-gradient(180deg, rgba(76, 255, 87, 0.18), rgba(212, 59, 255, 0.14));
  color: var(--text-light);
}

.service-page .metric-chip {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  margin: 0;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.service-page .metric-card strong {
  margin-top: 0;
  line-height: 1.08;
}

.service-page .metric-card span:last-child {
  line-height: 1.48;
}

.service-page .muted-card,
.service-page .pricing-note {
  background: linear-gradient(180deg, rgba(14, 17, 22, 0.98), rgba(9, 11, 15, 0.98));
}

.service-page .info-card-dark {
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.12), transparent 30%),
    linear-gradient(135deg, #09120d 0%, #10141e 55%, #160a1f 100%);
  border-color: rgba(212, 59, 255, 0.24);
}

.service-page .feature-list li,
.service-page .check-list li,
.service-page .package-list li,
.service-page .demo-list li {
  color: rgba(243, 245, 247, 0.92);
}

.service-page .package-card-featured {
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(19, 21, 28, 0.99), rgba(10, 12, 17, 0.99));
}

.service-page .package-badge-featured {
  color: var(--accent);
}

.service-page .package-kicker {
  border: 1px solid rgba(212, 59, 255, 0.18);
  background: rgba(212, 59, 255, 0.12);
  color: #f0beff;
}

.service-page .price {
  color: var(--text-light);
  font-family: "League Spartan", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.service-page .text-link {
  color: var(--accent);
  text-decoration-color: rgba(76, 255, 87, 0.58);
}

.service-page .text-link:hover {
  color: #8cff84;
}

.service-page .faq-trigger {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.01);
}

.service-page .faq-icon::before,
.service-page .faq-icon::after {
  background: var(--accent);
}

.service-page .contact-box {
  border-color: rgba(76, 255, 87, 0.16);
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(12, 15, 20, 0.9), rgba(7, 9, 12, 0.88));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.service-page .contact-box strong,
.service-page .contact-box a {
  color: var(--text-light);
}

.service-page .demo-card {
  border-color: rgba(76, 255, 87, 0.18);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.service-page .demo-card-link:hover,
.service-page .demo-card-link:focus-visible {
  border-color: rgba(76, 255, 87, 0.28);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
}

.service-page .demo-browser {
  background: linear-gradient(180deg, rgba(17, 21, 27, 0.98), rgba(12, 15, 19, 0.98));
  border-bottom-color: rgba(76, 255, 87, 0.12);
}

.service-page .demo-browser span {
  background: rgba(255, 255, 255, 0.2);
}

.service-page .demo-screen {
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(212, 59, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.99), rgba(9, 10, 14, 0.99));
}

.service-page .demo-screen h3 {
  color: var(--text-light);
  font-family: "League Spartan", "Manrope", sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
}

.service-page .demo-screen p,
.service-page .demo-list li {
  color: var(--text-soft);
}

.service-page .demo-proof {
  color: var(--accent) !important;
}

.service-page #demo-reale .demo-card {
  border-color: rgba(76, 255, 87, 0.18) !important;
  background: linear-gradient(180deg, rgba(15, 17, 22, 0.99), rgba(8, 10, 14, 0.99)) !important;
}

.service-page #demo-reale .demo-browser {
  background: linear-gradient(180deg, rgba(22, 26, 32, 0.98), rgba(15, 18, 23, 0.98)) !important;
  border-bottom: 1px solid rgba(76, 255, 87, 0.12) !important;
}

.service-page #demo-reale .demo-screen {
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(212, 59, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.99), rgba(9, 10, 14, 0.99)) !important;
}

.service-page #demo-reale .demo-tag,
.service-page #demo-reale .demo-screen h3 {
  color: var(--text-light) !important;
}

.service-page #demo-reale .demo-screen p,
.service-page #demo-reale .demo-list li {
  color: var(--text-soft) !important;
}

.service-page #demo-reale .demo-proof {
  color: var(--accent) !important;
}

.service-page .contact-box-list span {
  background: rgba(212, 59, 255, 0.12);
  color: #f0beff;
}

.service-page .form-card {
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.98), rgba(9, 10, 14, 0.98));
}

.service-page .form-row input,
.service-page .form-row textarea {
  border-color: rgba(76, 255, 87, 0.14);
  background: rgba(8, 10, 14, 0.9);
  color: var(--text-light);
}

.service-page .form-row input::placeholder,
.service-page .form-row textarea::placeholder {
  color: rgba(158, 165, 179, 0.74);
}

.service-page .form-row input:focus,
.service-page .form-row textarea:focus {
  border-color: rgba(76, 255, 87, 0.7);
  box-shadow: 0 0 0 4px rgba(76, 255, 87, 0.14);
}

.service-page .checkbox-row {
  color: var(--text-soft);
}

.service-page .checkbox-row a {
  color: var(--accent);
  text-decoration-color: rgba(76, 255, 87, 0.44);
}

.service-page .site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(76, 255, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #050608 0%, #07080b 100%);
  border-top: 1px solid rgba(76, 255, 87, 0.14);
}

.service-page .footer-logo {
  width: clamp(210px, 18vw, 300px);
}

.service-page .site-footer p,
.service-page .footer-links {
  color: rgba(158, 165, 179, 0.86);
}

.service-page .footer-links a:hover {
  color: var(--text-light);
}

.service-page .mobile-cta-bar {
  border-color: rgba(76, 255, 87, 0.12);
  background: rgba(10, 12, 16, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.service-page .mobile-cta-secondary {
  background: rgba(212, 59, 255, 0.12);
  border-color: rgba(212, 59, 255, 0.18);
  color: var(--text-light);
}

.service-page .mobile-cta-primary {
  background: linear-gradient(180deg, #62ff58 0%, #20c935 100%);
  color: #081008;
  box-shadow: 0 14px 30px rgba(76, 255, 87, 0.2);
}

.service-page .back-to-top {
  background: linear-gradient(135deg, #4cff57 0%, #b71ee6 100%);
  color: #050608;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.service-page .back-to-top:hover {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.36);
}

.service-page .info-card h3,
.service-page .comparison-card h3 {
  margin: 0 0 16px;
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text-light);
  font-family: "League Spartan", "Manrope", sans-serif;
  text-transform: uppercase;
}

.service-page .benefit-card h3,
.service-page .process-card h3,
.service-page .package-card h3,
.service-page .extra-chip {
  color: var(--text-light);
  font-family: "League Spartan", "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-page .benefit-card h3,
.service-page .process-card h3 {
  min-height: 0;
}

.service-feature-grid,
.channel-grid {
  display: grid;
  gap: 18px;
}

.service-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-page .service-feature-grid .benefit-card,
.service-page .channel-grid .benefit-card {
  min-height: 100%;
}

.service-page .comparison-grid .info-card {
  min-height: 100%;
}

.service-page .package-disclaimer {
  margin-bottom: 22px;
  display: grid;
  gap: 10px;
  border-color: rgba(76, 255, 87, 0.2);
  background:
    radial-gradient(circle at top right, rgba(76, 255, 87, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.98), rgba(9, 10, 14, 0.98));
}

.service-page .package-disclaimer strong {
  display: block;
  color: var(--text-light);
  font-family: "League Spartan", "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page .package-disclaimer p {
  margin: 0;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .service-page .header-inner {
    min-height: 82px;
    padding: 10px 0;
  }

  .service-page .hero-grid {
    gap: 34px;
  }

  .service-page .hero-copy h1 {
    font-size: clamp(2.8rem, 9vw, 4.2rem);
  }

  .service-page .hero-kicker {
    white-space: normal;
  }

  .service-page .hero-actions {
    align-items: stretch;
  }

  .service-page .panel-main {
    padding: 30px 24px 24px;
  }
}

@media (max-width: 640px) {
  .service-page .brand-logo {
    width: 178px;
  }

  .service-page .site-header.is-condensed .brand-logo {
    width: 168px;
  }

  .service-page .hero-copy h1 {
    font-size: clamp(2.6rem, 11vw, 3.7rem);
    line-height: 0.96;
  }

  .service-page .hero-kicker {
    max-width: none;
    font-size: 0.8rem;
    white-space: normal;
  }

  .service-page .hero-lead,
  .service-page .section-intro,
  .service-page .text-block p,
  .service-page .cta-copy p {
    font-size: 1rem;
  }

  .service-page .panel-main h2 {
    font-size: 1.9rem;
    line-height: 1;
  }

  .service-page .panel-metrics {
    padding-top: 18px;
  }

  .service-page .metric-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 16px 16px 16px 14px;
  }

  .service-page .metric-chip {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .service-page .package-disclaimer {
    padding: 20px 18px;
    margin-bottom: 18px;
  }

  .service-page .package-card,
  .service-page .form-card,
  .service-page .info-card,
  .service-page .demo-screen {
    padding: 22px 20px;
  }

  .service-page .mobile-header-cta {
    font-size: 0.8rem;
    padding: 0 14px;
  }
}

.service-footnote {
  margin-top: 24px;
}

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

.pricing-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.pricing-note p {
  margin: 0;
}

.channel-intro {
  max-width: 76ch;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(201, 111, 59, 0.58);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

@media (max-width: 1120px) {
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

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

  .section {
    padding: 84px 0;
  }

  .section-hero {
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .main-nav {
    display: none;
  }

  .mobile-header-cta {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.88rem;
    box-shadow: 0 12px 30px rgba(201, 111, 59, 0.18);
  }

  .hero-grid,
  .section-grid,
  .demo-grid,
  .cta-grid,
  .dual-grid,
  .package-grid,
  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .principles,
  .benefit-grid,
  .process-grid,
  .extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .panel-stack {
    grid-template-columns: 1fr;
  }

  .package-card-featured {
    transform: none;
    order: -1;
  }

  .cta-grid > .form-card {
    order: -1;
  }

  .demo-grid > .demo-card {
    order: -1;
  }

  .hero-grid,
  .cta-grid {
    gap: 28px;
  }

  .contact-box {
    margin-top: 22px;
  }

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

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

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    background: rgba(245, 242, 236, 0.94);
  }

  .header-inner,
  .footer-inner {
    min-height: 72px;
  }

  .header-inner {
    padding: 8px 0;
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    width: 126px;
  }

  .section {
    padding: 60px 0;
  }

  .section-hero {
    padding-top: 92px;
    padding-bottom: 56px;
  }

  .hero-copy h1,
  .section-grid h2,
  .section-heading h2,
  .narrow h2,
  .cta-copy h2 {
    font-size: clamp(1.92rem, 9vw, 2.8rem);
  }

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

  .eyebrow,
  .section-label,
  .panel-label,
  .package-badge,
  .demo-tag {
    padding: 7px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .hero-kicker {
    font-size: 0.88rem;
    margin-top: 14px;
  }

  .hero-lead,
  .section-intro,
  .text-block p,
  .cta-copy p {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-points,
  .panel-metrics,
  .demo-facts {
    grid-template-columns: 1fr;
  }

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

  .demo-facts {
    display: grid;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .button,
  .button-small,
  .mobile-cta-primary,
  .mobile-cta-secondary {
    min-height: 56px;
  }

  .mobile-header-cta {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .panel-card,
  .info-card,
  .process-card,
  .package-card,
  .benefit-card,
  .form-card,
  .demo-screen {
    padding: 22px;
  }

  .panel-main {
    padding: 24px 22px 22px;
  }

  .metric-card {
    padding: 18px 16px 16px 14px;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
  }

  .metric-chip {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .panel-stack .panel-card {
    padding: 18px;
  }

  .principles,
  .benefit-grid,
  .process-grid,
  .extra-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .package-grid {
    gap: 16px;
  }

  .price {
    font-size: 2.35rem;
  }

  .package-kicker,
  .package-spotlight {
    font-size: 0.96rem;
  }

  .principle-card,
  .benefit-card,
  .process-card,
  .highlight-strip div,
  .extra-chip {
    min-height: auto;
  }

  .benefit-card h3,
  .process-card h3,
  .principle-card strong,
  .highlight-strip strong {
    min-height: 0;
  }

  .feature-list,
  .check-list,
  .package-list,
  .demo-list {
    gap: 16px;
  }

  .feature-list li,
  .check-list li,
  .package-list li,
  .demo-list li {
    line-height: 1.52;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-trigger {
    padding: 18px 18px;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .faq-content {
    padding: 0 18px;
  }

  .faq-item.is-open .faq-content {
    padding: 0 18px 18px;
  }

  .status-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .status-actions {
    flex-direction: column;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-box {
    padding: 18px;
  }

  .contact-box-list p {
    align-items: flex-start;
  }

  .footer-logo-shell {
    padding: 0;
    border-radius: 0;
  }

  .footer-logo {
    width: 164px;
  }

  .form-card {
    border-radius: 24px;
  }

  .lead-form {
    gap: 14px;
    margin-top: 22px;
  }

  .form-row input,
  .form-row textarea {
    min-height: 56px;
    font-size: 16px;
    padding: 16px;
  }

  .form-row textarea {
    min-height: 140px;
  }

  .checkbox-row {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

.mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(18, 49, 58, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 40px rgba(15, 39, 49, 0.18);
    backdrop-filter: blur(18px);
  }

  .mobile-cta-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0 14px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-cta-secondary {
    background: rgba(18, 49, 58, 0.08);
    color: var(--text);
    border: 1px solid rgba(18, 49, 58, 0.08);
  }

  .mobile-cta-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 28px rgba(201, 111, 59, 0.22);
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 58;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #12313a 0%, #1c4955 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 39, 49, 0.24);
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.back-to-top span {
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 22px 40px rgba(15, 39, 49, 0.3);
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(201, 111, 59, 0.28);
  outline-offset: 4px;
}

@keyframes floatHalo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-8px, -10px, 0);
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 108px;
  }

  .hero-copy h1,
  .section-grid h2,
  .section-heading h2,
  .narrow h2,
  .cta-copy h2 {
    font-size: clamp(1.78rem, 9vw, 2.5rem);
  }

  .mobile-cta-bar {
    grid-template-columns: 1fr 1.35fr;
  }

  .mobile-header-cta {
    padding: 0 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .site-header.is-condensed .header-inner {
    min-height: 68px;
    padding: 6px 0;
  }

  .site-header.is-condensed .brand-logo {
    width: 112px;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(106px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
