﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #0f2f66;
  --green-mid: #215fbe;
  --green-main: #2f6fdf;
  --green-soft: #e9f2ff;
  --green-xsoft: #f3f8ff;
  --accent: #2ca8d8;
  --text-primary: #10233f;
  --text-body: #2f4566;
  --text-muted: #677f9f;
  --text-hint: #8fa5bf;
  --border: rgba(47, 111, 223, 0.15);
  --border-light: rgba(47, 111, 223, 0.08);
  --bg: #ffffff;
  --bg-alt: #f7faff;
  --shadow-sm: 0 1px 3px rgba(16, 41, 86, 0.08), 0 1px 2px rgba(16, 41, 86, 0.05);
  --shadow-md: 0 12px 26px rgba(16, 41, 86, 0.14);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --font-d: "Geologica", system-ui, sans-serif;
  --font-b: "Instrument Sans", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title,
.brand-name {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}

.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-primary);
  background: var(--green-xsoft);
}

.site-nav .nav-cta {
  color: var(--green-main) !important;
  border: 1.5px solid rgba(47, 111, 223, 0.3);
  border-radius: var(--r-md);
  font-weight: 600;
  margin-left: 8px;
  padding: 6px 16px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  background: var(--green-soft);
  border-color: var(--green-main);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 8px 0 16px;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav .mob-cta {
  margin: 12px 28px 0;
  border-radius: var(--r-md);
  text-align: center;
  background: var(--green-main);
  color: #fff;
  border-bottom: 0;
  font-weight: 600;
}

.page {
  min-height: calc((var(--vh, 1vh) * 100) - 146px);
}

.page-hero,
.hero {
  padding: 80px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 338px;
  gap: 52px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.tag,
.kicker,
.section-tag,
.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: var(--accent);
}

.tag::before,
.kicker::before,
.section-tag::before,
.cta-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero-kicker {
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(31px, 3.9vw, 44px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-title span {
  display: block;
  color: var(--green-main);
}

.lead,
.hero-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 630px;
  text-wrap: pretty;
}

.hero-copy .lead,
.hero-copy .hero-lead {
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-note,
.hero-footnote {
  font-size: 12px;
  color: var(--text-hint);
}

.hero-panel {
  background: linear-gradient(180deg, #f3f8ff 0%, #edf5ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.hero-panel h3 {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.hero-panel ul,
.card ul,
.contact-list,
.page-subnav {
  list-style: none;
}

.hero-panel li,
.card li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-body);
}

.hero-panel li + li,
.card li + li {
  margin-top: 11px;
}

.hero-panel li::before,
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(47, 111, 223, 0.52);
}

.hero-panel li::before {
  width: 8px;
  height: 8px;
  top: 6px;
  background: var(--green-main);
  opacity: 0.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.btn-primary {
  background: var(--green-main);
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text-primary);
  font-weight: 500;
}

.btn-secondary:hover {
  background: var(--green-xsoft);
  border-color: rgba(47, 111, 223, 0.22);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 52px 0;
}

.section + .section,
.section-tight + .section,
.section + .section-tight {
  border-top: 1px solid var(--border-light);
}

.section-head {
  margin-bottom: 36px;
}

.section-head .tag {
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -0.7px;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-head h2 mark {
  color: var(--green-main);
  background: none;
  border-bottom: 2.5px solid rgba(47, 111, 223, 0.25);
}

.section-head .lead {
  font-size: 15.5px;
}

.stats-grid,
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-alt);
}

.stat,
.metric {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
}

.stat:last-child,
.metric:last-child {
  border-right: 0;
}

.stat strong,
.metric strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -1px;
  color: var(--green-main);
}

.stat p,
.metric span {
  font-size: 12.8px;
  line-height: 1.46;
  color: var(--text-muted);
}

.two-col,
.split-grid,
.problem-solution,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-grid,
.pricing-grid,
.case-grid,
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.pricing-card,
.case-card,
.company-card,
.note-card,
.contact-card,
.form-card,
.timeline {
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.pricing-card:hover,
.case-card:hover,
.company-card:hover,
.note-card:hover,
.contact-card:hover,
.form-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 111, 223, 0.26);
}

.span-all {
  grid-column: 1 / -1;
}

.card h3,
.pricing-title,
.case-card h3,
.contact-card h2,
.form-card h3 {
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.22;
  margin-bottom: 14px;
  text-wrap: balance;
  color: var(--text-primary);
}

.process-step .step-num {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.68px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.process-step li {
  font-size: 13px;
}

.pricing-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.pricing-card.featured {
  background: var(--green-xsoft);
  border-color: rgba(47, 111, 223, 0.32);
  box-shadow: var(--shadow-md);
}

.pricing-title {
  margin-bottom: 2px;
}

.pricing-price {
  font-family: var(--font-d);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--green-main);
}

.pricing-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-result {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-body);
}

.comparison-wrap {
  display: grid;
  gap: 16px;
}

.comparison-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-row:nth-child(even):not(.comparison-head) {
  background: linear-gradient(180deg, #f7fbff 0%, #f3f8ff 100%);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.45;
}

.comparison-row > div:first-child {
  font-weight: 700;
  color: var(--text-primary);
}

.comparison-head {
  background: var(--green-xsoft);
}

.comparison-head > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.72px;
  color: var(--text-primary);
}

.comparison-head > div.head-left {
  justify-content: flex-start;
  text-align: left;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--green-soft);
  border: 1px solid rgba(47, 111, 223, 0.15);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.32;
  color: var(--green-main);
}

/* Comparison table: all pills should be visually uniform */
.comparison-table .pill {
  display: flex;
  width: 100%;
  min-height: 44px;
  padding: 9px 14px;
}

.note-card h3 {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.note-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-body);
}

.note-card li + li {
  margin-top: 10px;
}

.note-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 111, 223, 0.58);
}

.note-emphasis {
  margin-top: 14px;
  color: var(--text-muted);
}

.note-emphasis strong {
  color: var(--green-main);
}

.case-grid {
  align-items: start;
}

.case-card {
  display: grid;
  gap: 14px;
}

.case-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--green-soft);
  color: var(--green-main);
  font-size: 12px;
  font-weight: 700;
}

.case-flow {
  display: grid;
  gap: 10px;
}

.case-flow p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}

.case-flow strong {
  color: var(--text-primary);
}

.case-card-wide {
  grid-column: 1 / -1;
}

.company-card {
  display: grid;
  gap: 8px;
}

.company-card h4 {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.company-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  border-left: 2px solid rgba(47, 111, 223, 0.22);
  padding-left: 14px;
}

.timeline-year {
  display: block;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.68px;
  color: var(--green-main);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-body);
}

.contact-layout {
  align-items: start;
}

.contact-card h2 {
  margin-bottom: 6px;
}

.contact-heading {
  margin-top: 12px;
}

.lead-soft {
  margin-top: 8px;
}

.lead-gap {
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  font-size: 14px;
}

.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-subnav a {
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--green-main);
  background: var(--green-xsoft);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-grid label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(47, 111, 223, 0.14);
  border-color: rgba(47, 111, 223, 0.3);
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-hint);
}

.alert {
  display: none;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  font-size: 13px;
}

.alert.success {
  background: var(--green-soft);
  border: 1px solid rgba(47, 111, 223, 0.2);
  color: #1f4f9a;
}

.alert.error {
  background: rgba(178, 54, 54, 0.08);
  border: 1px solid rgba(178, 54, 54, 0.2);
  color: #8e3131;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.4vw, 24px);
  background: rgba(9, 20, 44, 0.62);
  backdrop-filter: blur(4px);
}

.contact-modal.open {
  display: flex;
}

.contact-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: #ffffff;
  box-shadow: 0 26px 64px rgba(16, 30, 59, 0.3);
}

.contact-modal__dialog h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.1vw, 32px);
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f7f9fc;
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__close:hover {
  background: #eef3ff;
}

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 60px 56px;
  border-radius: var(--r-xl);
  background: var(--green-dark);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 60% at 50% 0%, rgba(47, 111, 223, 0.56) 0%, transparent 70%);
}

.tag-light {
  color: rgba(255, 255, 255, 0.62);
  position: relative;
  margin-bottom: 18px;
}

.cta-band h2 {
  position: relative;
  max-width: 640px;
  margin: 0 auto 14px;
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.7px;
  color: #fff;
}

.cta-band p {
  position: relative;
  margin: 0 auto 30px;
  max-width: 520px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
}

.cta-band .hero-actions {
  position: relative;
  justify-content: center;
}

.cta-band .btn-secondary {
  background: #ffffff;
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.95);
}

.cta-band .btn-secondary:hover {
  background: #eef5ff;
  border-color: #ffffff;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-meta {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-hint);
  text-align: right;
}

.footer-contacts > span {
  display: block;
}

.footer-contacts a {
  color: inherit;
  text-decoration: none;
}

.footer-contacts a:hover {
  text-decoration: underline;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > * {
  animation: fadeUp 0.5s ease both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.19s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.25s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.3s;
}

.hero-panel {
  animation: fadeUp 0.5s 0.32s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(2px);
  transition: opacity 0.52s ease, transform 0.52s ease, filter 0.52s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Auto-fit layer: adaptive tuning for any viewport */
:root {
  --content-max: clamp(980px, 86vw, 1240px);
  --pad-inline: clamp(14px, 2.4vw, 34px);
  --hero-top: clamp(42px, 8.2vh, 86px);
  --hero-bottom: clamp(34px, 6.2vh, 70px);
  --section-space: clamp(38px, 7vh, 76px);
  --section-space-tight: clamp(30px, 5.6vh, 56px);
}

.container {
  max-width: var(--content-max);
  padding-inline: var(--pad-inline);
}

.page-hero,
.hero {
  padding-top: var(--hero-top);
  padding-bottom: var(--hero-bottom);
}

.section {
  padding-block: var(--section-space);
}

.section-tight {
  padding-block: var(--section-space-tight);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 33%);
  gap: clamp(24px, 4vw, 56px);
}

.hero-panel {
  padding: clamp(20px, 2.2vw, 28px);
}

.hero-title {
  font-size: clamp(30px, 4vw, 48px);
}

.section-head h2 {
  font-size: clamp(23px, 3vw, 34px);
}

.card,
.pricing-card,
.case-card,
.company-card,
.note-card,
.contact-card,
.form-card,
.timeline {
  padding: clamp(18px, 1.9vw, 24px);
}

.stats-grid,
.metrics {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.stat,
.metric {
  min-height: clamp(110px, 14vw, 138px);
}

.process-grid,
.pricing-grid,
.case-grid,
.company-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
}

/* Pricing: make 4 commercial cards sit cleaner on wide screens */
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.two-col,
.split-grid,
.problem-solution,
.contact-layout {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.comparison-row {
  grid-template-columns: minmax(220px, 1.45fr) minmax(170px, 1fr) minmax(190px, 1fr);
}

@media (max-width: 1180px) {
  .brand-sub {
    display: none;
  }

  .site-nav a {
    padding: 6px 9px;
    font-size: 13px;
  }
}

@media (min-width: 1600px) {
  :root {
    --content-max: 1320px;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-row > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 460px) {
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .comparison-head > div {
    font-size: 11px;
  }

  .pill {
    width: 100%;
  }
}

@media (max-height: 760px) and (orientation: landscape) {
  .page-hero,
  .hero {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(27px, 3.2vw, 38px);
  }

  .section,
  .section-tight {
    padding-block: clamp(26px, 4.4vh, 42px);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .stats-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat,
  .metric {
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-child(2),
  .metric:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .metric:nth-child(3) {
    border-bottom: 0;
  }

  .stat:nth-child(4),
  .metric:nth-child(4) {
    border-right: 0;
    border-bottom: 0;
  }

  .process-grid,
  .pricing-grid,
  .case-grid,
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .page-hero,
  .hero {
    padding: 56px 0 48px;
  }

  .section {
    padding: 54px 0;
  }

  .section-tight {
    padding: 42px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head .lead {
    font-size: 14.5px;
  }

  .two-col,
  .split-grid,
  .problem-solution,
  .contact-layout,
  .process-grid,
  .pricing-grid,
  .case-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-row > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 16px;
  }

  .header-row {
    height: 56px;
  }

  .brand-sub {
    display: none;
  }

  .page-hero,
  .hero {
    padding: 42px 0 36px;
  }

  .hero-title {
    font-size: 26px;
    letter-spacing: -0.45px;
  }

  .hero-title span {
    display: inline;
  }

  .lead,
  .hero-lead {
    font-size: 14.5px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
  }

  .hero-panel,
  .card,
  .pricing-card,
  .case-card,
  .company-card,
  .note-card,
  .contact-card,
  .form-card,
  .timeline {
    padding: 20px;
  }

  .stats-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .stat,
  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 18px 16px;
  }

  .stat:last-child,
  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 40px 0;
  }

  .section-tight {
    padding: 34px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 21px;
    letter-spacing: -0.35px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .comparison-head > div {
    font-size: 11px;
  }

  .pill {
    width: 100%;
  }

  .cta-band {
    padding: 34px 22px;
    border-radius: var(--r-lg);
  }

  .cta-band p {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .site-footer {
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Unified project logo imported from the SaaS repository merge. */
.brand {
  gap: 14px;
}

.brand-mark {
  width: 218px;
  height: 54px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.brand-text {
  display: none;
}

@media (max-width: 860px) {
  .brand-mark {
    width: 184px;
    height: 48px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 162px;
    height: 44px;
  }
}


/* SaaS platform public surface */
.platform-page .container,
.pricing-page .container {
  max-width: 1180px;
}

.platform-hero,
.pricing-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 111, 223, 0.12), transparent 32%),
    radial-gradient(circle at 8% 8%, rgba(44, 168, 216, 0.12), transparent 30%);
}

.platform-hero-grid {
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span,
.plan-label,
.auth-switch a {
  display: inline-flex;
  align-items: center;
  color: var(--green-main);
  font-weight: 700;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(47, 111, 223, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
}

.platform-preview {
  padding: 16px;
  background: linear-gradient(145deg, #061733 0%, #102a5c 45%, #ffffff 46%, #ffffff 100%);
}

.preview-shell {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(16, 35, 63, 0.2);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 14px;
  background: #071733;
}

.preview-sidebar span {
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.preview-sidebar span:first-child {
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f6fdf, #5d31f4);
}

.preview-main {
  padding: 22px;
}

.preview-topline,
.preview-metrics,
.preview-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-topline strong {
  color: var(--text-primary);
  font-family: var(--font-d);
}

.preview-topline span,
.preview-metrics span,
.preview-list span {
  color: var(--text-muted);
  font-size: 12px;
}

.preview-metrics {
  margin: 22px 0;
}

.preview-metrics div {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: var(--green-xsoft);
}

.preview-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--text-primary);
  font-size: 17px;
}

.preview-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 150px;
  padding: 16px 12px 0;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f2f7ff 100%);
}

.preview-chart i {
  flex: 1;
  min-height: 28px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #2f6fdf, #5d31f4);
  box-shadow: 0 10px 24px rgba(47, 111, 223, 0.22);
}

.preview-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.preview-list span {
  justify-content: flex-start;
  padding: 9px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
}

.module-grid,
.scenario-grid,
.implementation-grid {
  display: grid;
  gap: 16px;
}

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

.module-card,
.scenario-card,
.implementation-card,
.saas-plan {
  position: relative;
  overflow: hidden;
}

.module-card::before,
.scenario-card::before,
.implementation-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2f6fdf, #2ca8d8, #5d31f4);
  opacity: 0.9;
}

.module-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--green-main);
  background: var(--green-soft);
  font-weight: 800;
}

.module-card p,
.scenario-card p,
.implementation-card p {
  margin-top: 10px;
}

.section-blueprint {
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.3), rgba(233, 242, 255, 0.52));
}

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

.scenario-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-main);
  font-weight: 800;
}

.ai-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 95% 0%, rgba(47, 111, 223, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: var(--shadow-sm);
}

.ai-band h2 {
  max-width: 680px;
  margin: 10px 0 14px;
  color: var(--text-primary);
  font-family: var(--font-d);
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.12;
}

.ai-card-stack {
  display: grid;
  gap: 12px;
}

.ai-card-stack div {
  padding: 16px 18px;
  border: 1px solid rgba(47, 111, 223, 0.12);
  border-radius: 18px;
  background: #fff;
  color: var(--text-primary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.ai-card-stack div:nth-child(2n) {
  transform: translateX(22px);
}

.platform-cta .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

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

.saas-plan {
  display: flex;
  flex-direction: column;
}

.saas-plan ul {
  flex: 1;
}

.plan-label {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  font-size: 12px;
}

.plan-label.popular {
  color: #ffffff;
  background: linear-gradient(135deg, #2f6fdf, #5d31f4);
}

.pricing-price small {
  margin-left: 4px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
}

.plan-button {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}

.enterprise-plan {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

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

.implementation-card strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--text-primary);
  font-family: var(--font-d);
  font-size: 28px;
}

.saas-comparison-table .comparison-row {
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
}

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

.auth-modal__dialog {
  width: min(760px, 100%);
}

.auth-modal__dialog--small {
  width: min(520px, 100%);
}

.auth-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  background: var(--green-xsoft);
  color: var(--text-body) !important;
  font-size: 13px !important;
  line-height: 1.45;
}

.auth-consent input {
  width: auto;
  margin-top: 3px;
}

.auth-switch {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .saas-pricing-grid,
  .module-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-hero-grid,
  .ai-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .trust-row span {
    width: 100%;
  }

  .preview-shell {
    grid-template-columns: 54px 1fr;
    min-height: 340px;
  }

  .preview-sidebar {
    padding: 18px 10px;
  }

  .preview-sidebar span {
    width: 34px;
  }

  .preview-main {
    padding: 16px;
  }

  .preview-metrics,
  .form-two {
    grid-template-columns: 1fr;
    display: grid;
  }

  .module-grid,
  .scenario-grid,
  .implementation-grid,
  .saas-pricing-grid {
    grid-template-columns: 1fr;
  }

  .ai-band {
    padding: 24px;
  }

  .ai-card-stack div:nth-child(2n) {
    transform: none;
  }

  .saas-comparison-table .comparison-row {
    grid-template-columns: 1fr;
  }
}

.platform-page .reveal,
.pricing-page .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.platform-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.platform-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Sales landing with embedded product screens */
.sales-page {
  background:
    radial-gradient(circle at 84% 3%, rgba(47, 111, 223, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 44%, #ffffff 100%);
}

.sales-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 94px) 0 clamp(46px, 6vw, 78px);
}

.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 111, 223, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 111, 223, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 72% 24%, #000 0%, transparent 55%);
}

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

.sales-hero-copy .hero-title {
  max-width: 740px;
  letter-spacing: -1.8px;
}

.sales-value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.sales-value-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(47, 111, 223, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-primary);
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.quick-start-card {
  display: grid;
  gap: 15px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(47, 111, 223, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(16, 41, 86, 0.12);
  backdrop-filter: blur(12px);
}

.quick-start-card strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-d);
  font-size: 18px;
}

.quick-start-card p,
.quick-start-card small {
  color: var(--text-muted);
}

.quick-start-card p {
  margin-top: 3px;
  line-height: 1.45;
}

.quick-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-fields select,
.quick-fields button {
  grid-column: span 1;
}

.quick-fields button {
  justify-content: center;
}

.quick-start-card.is-error {
  border-color: rgba(220, 58, 78, 0.35);
}

.quick-start-card.is-error [data-quick-form-message] {
  color: #b4233a;
  font-weight: 700;
}

.sales-screen-stage {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.sales-screen-stage::before {
  content: "";
  position: absolute;
  inset: 70px 30px 70px 20px;
  z-index: -1;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(47, 111, 223, 0.2), rgba(44, 168, 216, 0.08));
  filter: blur(2px);
}

.hero-screen,
.story-screen {
  overflow: hidden;
  border: 1px solid rgba(47, 111, 223, 0.16);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(16, 41, 86, 0.18);
}

.hero-screen img,
.story-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-screen-main {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(780px, 92%);
  transform: rotate(1.2deg);
}

.hero-screen-main figcaption {
  padding: 13px 18px;
  color: var(--text-primary);
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #f3f8ff);
}

.hero-screen-side {
  position: absolute;
  width: min(430px, 54%);
  border-radius: 22px;
}

.hero-screen-side-top {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.hero-screen-side-bottom {
  right: 42px;
  bottom: 0;
  transform: rotate(4deg);
}

.screen-orbit {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(47, 111, 223, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-main);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(16, 41, 86, 0.14);
}

.screen-orbit-one {
  top: 34px;
  right: 38px;
}

.screen-orbit-two {
  left: 28px;
  bottom: 72px;
}

.sales-proof-section {
  padding-top: 0;
}

.sales-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.sales-proof-grid article {
  padding: 24px;
  border-right: 1px solid var(--border-light);
}

.sales-proof-grid article:last-child {
  border-right: 0;
}

.sales-proof-grid strong {
  display: block;
  color: var(--green-main);
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.sales-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.45;
}

.pain-section {
  background: #ffffff;
}

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

.pain-card {
  min-height: 230px;
}

.pain-card span,
.story-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-main);
  font-weight: 900;
}

.product-forms-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 54%, #f7fbff 100%);
}

.section-head-wide {
  max-width: 940px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 58px rgba(16, 41, 86, 0.1);
}

.product-story + .product-story {
  margin-top: 28px;
}

.product-story-reverse {
  grid-template-columns: minmax(520px, 1.18fr) minmax(0, 0.82fr);
}

.product-story-reverse .story-copy {
  order: 2;
}

.product-story-reverse .story-screen {
  order: 1;
}

.story-copy h3 {
  color: var(--text-primary);
  font-family: var(--font-d);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.7px;
}

.story-copy p {
  margin-top: 14px;
  color: var(--text-body);
  font-size: 16px;
}

.story-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  list-style: none;
}

.story-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6fdf, #2ca8d8);
}

.story-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-main);
  font-weight: 900;
}

.story-screen {
  border-radius: 26px;
}

.story-screen-right {
  transform: perspective(1400px) rotateY(-5deg);
}

.story-screen-left {
  transform: perspective(1400px) rotateY(5deg);
}

.growth-system-section {
  background: #ffffff;
}

.growth-system {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 32px;
  align-items: start;
}

.growth-system-copy h2 {
  margin-top: 10px;
  color: var(--text-primary);
  font-family: var(--font-d);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
}

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

.growth-steps article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: var(--shadow-sm);
}

.growth-steps strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2f6fdf, #5d31f4);
  color: #ffffff;
  font-family: var(--font-d);
}

.growth-steps h3 {
  color: var(--text-primary);
}

.growth-steps p {
  margin-top: 8px;
  color: var(--text-muted);
}

.sales-ai-band {
  background:
    radial-gradient(circle at 90% 12%, rgba(93, 49, 244, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

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

.mini-plan {
  min-height: 210px;
}

.mini-plan span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-main);
  font-weight: 900;
}

.mini-plan strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-d);
  font-size: 30px;
}

.mini-plan p {
  margin-top: 12px;
}

.mini-plan-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 111, 223, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  border-color: rgba(47, 111, 223, 0.28);
}

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

.sales-final-cta {
  background:
    radial-gradient(circle at 82% 0%, rgba(44, 168, 216, 0.42), transparent 36%),
    linear-gradient(135deg, #071733 0%, #123d82 100%);
}

@media (max-width: 1180px) {
  .sales-hero-grid,
  .product-story,
  .product-story-reverse,
  .growth-system {
    grid-template-columns: 1fr;
  }

  .product-story-reverse .story-copy,
  .product-story-reverse .story-screen {
    order: initial;
  }

  .sales-screen-stage {
    min-height: 520px;
  }

  .hero-screen-main {
    width: 82%;
  }
}

@media (max-width: 900px) {
  .sales-proof-grid,
  .pain-grid,
  .mini-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-fields,
  .growth-steps {
    grid-template-columns: 1fr;
  }

  .story-screen-right,
  .story-screen-left {
    transform: none;
  }
}

@media (max-width: 640px) {
  .sales-hero {
    padding-top: 38px;
  }

  .sales-screen-stage {
    min-height: 420px;
  }

  .hero-screen-main {
    top: 44px;
    width: 94%;
  }

  .hero-screen-side {
    width: 58%;
  }

  .screen-orbit {
    display: none;
  }

  .sales-proof-grid,
  .pain-grid,
  .mini-plan-grid {
    grid-template-columns: 1fr;
  }

  .sales-proof-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .sales-proof-grid article:last-child {
    border-bottom: 0;
  }

  .product-story {
    padding: 18px;
    border-radius: 24px;
  }
}
