:root {
  --blue: #075ef5;
  --blue-700: #0649c7;
  --ink: #071635;
  --muted: #536886;
  --line: #d7e5f8;
  --panel: #ffffff;
  --surface: #f6faff;
  --green: #0aa36f;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #ffffff;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 42%, rgba(228, 241, 255, 0.42), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 78%, #f8fbff 100%);
}

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

svg {
  display: block;
}

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

.site-header {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  height: 68px;
  padding: 0 clamp(24px, 3.2vw, 40px);
  border-bottom: 1px solid rgba(190, 210, 237, 0.72);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  display: block;
  width: 136px;
  height: auto;
}

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

.brand-mark svg {
  width: 38px;
  height: 38px;
  fill: var(--blue);
}

.brand-mark path:nth-child(2) {
  fill: #ffffff;
}

.brand-mark path:nth-child(3) {
  fill: var(--blue);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 48px);
  color: #071b43;
  font-size: 14px;
  white-space: nowrap;
}

.nav a,
.locale,
.cabinet-link {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.cabinet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  color: #ffffff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(7, 94, 245, 0.18);
}

.cabinet-link svg {
  flex-shrink: 0;
}

.cabinet-link:hover {
  color: #ffffff;
  background: var(--blue-700);
}

.locale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #09204c;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.locale svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.locale .chevron {
  width: 16px;
  height: 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(700px, 1.98fr);
  align-items: center;
  gap: clamp(22px, 2.2vw, 40px);
  max-width: 1536px;
  margin: 0 auto;
  padding: 28px clamp(28px, 3.5vw, 40px) 18px;
  background: transparent;
}

.hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 32px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

h1 {
  max-width: 420px;
  margin: 0;
  color: #071635;
  font-size: clamp(34px, 2.48vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

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

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: 42px minmax(120px, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 138px;
  color: #173665;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.mini-icon,
.card-icon,
.benefit-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  border: 1px solid #d4e4fb;
  box-shadow: 0 10px 24px rgba(42, 95, 170, 0.08);
}

.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.mini-icon svg,
.card-icon svg,
.benefit-icon svg,
.secondary-cta svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-icon svg {
  width: 23px;
  height: 23px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.primary-cta {
  min-width: 198px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(7, 94, 245, 0.18);
}

.primary-cta:hover {
  background: var(--blue-700);
}

.secondary-cta {
  min-width: 192px;
  gap: 10px;
  padding: 0 20px;
  color: var(--blue);
  border: 1px solid var(--blue);
  background: #ffffff;
}

.secondary-cta:hover {
  background: #eef5ff;
}

.secondary-cta svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.hero-art {
  align-self: stretch;
  display: grid;
  align-items: center;
  min-width: 0;
  min-height: 620px;
}

.hero-art img {
  display: block;
  width: min(100%, 1060px);
  height: auto;
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 52px rgba(36, 92, 155, 0.1));
}

.info-row {
  display: grid;
  grid-template-columns: 1.12fr 0.95fr;
  gap: 10px;
  max-width: 1456px;
  margin: 0 auto 28px;
  padding: 0 clamp(28px, 3.5vw, 40px);
}

.audience-panel,
.benefits-panel {
  min-width: 0;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(26, 68, 126, 0.08);
}

.audience-panel {
  padding: 18px 20px 26px;
}

.benefits-panel {
  padding: 18px 18px 24px;
}

.audience-panel h2,
.benefits-panel h2 {
  margin: 0 0 16px;
  color: #153467;
  font-size: 13px;
  font-weight: 800;
}

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

.audience-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 12px;
  border: 1px solid #e5eefb;
  border-radius: 8px;
  background: linear-gradient(180deg, #f9fbff, #f2f7ff);
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.audience-card h3 {
  margin: 0 0 6px;
  color: #0b55d9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.audience-card p,
.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

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

.benefit-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 82px;
  padding: 0 14px;
  text-align: center;
  border-right: 1px solid #dfebfa;
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
}

.benefit-item p {
  max-width: 130px;
  color: #153467;
  font-weight: 700;
}

/* Cycle pipeline */

.cycle {
  background: #ffffff;
  padding: 96px clamp(28px, 3.5vw, 48px) 80px;
  position: relative;
}

.cycle-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cycle-eyebrow {
  margin: 0 0 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.cycle-heading {
  margin: 0 0 20px;
  text-align: center;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

.cycle-sub {
  max-width: 580px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.cycle-pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
}

.cycle-pipeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
}

.cycle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 1px 3px rgba(7, 22, 53, 0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.cycle-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(7, 94, 245, 0.1);
  border-color: rgba(7, 94, 245, 0.25);
}

.cycle-step-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cycle-num {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.cycle-step-done .cycle-num {
  background: var(--green);
}

.cycle-step-done .cycle-num svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cycle-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef4ff, #dbe8ff);
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(7, 94, 245, 0.08);
}

.cycle-icon-ai {
  background: linear-gradient(135deg, #f3eeff, #e8dffe);
  color: #7c3aed;
}

.cycle-icon-done {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: var(--green);
}

.cycle-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cycle-step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.cycle-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cycle-note {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Page layouts for subpages */

.page-hero {
  padding: 56px clamp(28px, 3.5vw, 48px) 40px;
  text-align: center;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(216, 228, 245, 0.5);
}

.page-hero h1 {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: clamp(28px, 2.6vw, 40px);
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px clamp(28px, 3.5vw, 48px) 72px;
}

.page-content h2 {
  margin: 48px 0 16px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.page-content h3 {
  margin: 32px 0 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.page-content p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}

.page-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.page-content li {
  margin-bottom: 8px;
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}

/* Pricing */

.pricing-hero {
  padding-bottom: 48px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px clamp(28px, 3.5vw, 48px) 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 16px 40px rgba(26, 68, 126, 0.06);
  transition: transform 280ms ease, box-shadow 280ms ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(7, 94, 245, 0.08), 0 24px 48px rgba(7, 94, 245, 0.12);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 4px 6px rgba(7, 94, 245, 0.06), 0 20px 48px rgba(7, 94, 245, 0.12);
}

.pricing-card.accent-green {
  border-color: var(--green);
}

.pricing-card.accent-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #34d399);
}

.pricing-card.accent-orange {
  border-color: #ea580c;
}

.pricing-card.accent-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea580c, #f59e0b);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
  border-radius: 16px 16px 0 0;
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-badge-green {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #065f46;
}

.pricing-badge-blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1e40af;
}

.pricing-badge-orange {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #9a3412;
}

.pricing-name {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
}

.pricing-desc {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 24px;
}

.pricing-price {
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 4px;
}

.pricing-period {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 28px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #334155;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #38bdf8);
  opacity: 0.5;
}

.pricing-features li:last-child {
  border-bottom: 0;
}

.pricing-cta {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  line-height: 48px;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pricing-cta:hover {
  transform: translateY(-1px);
}

.pricing-cta-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(7, 94, 245, 0.2);
}

.pricing-cta-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 16px rgba(7, 94, 245, 0.3);
}

.pricing-cta-secondary {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.pricing-cta-secondary:hover {
  background: #eef5ff;
}

.pricing-cta-green {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 163, 111, 0.2);
}

.pricing-cta-green:hover {
  background: #089060;
  box-shadow: 0 6px 16px rgba(10, 163, 111, 0.3);
}

.pricing-cta-orange {
  background: #ffffff;
  color: #ea580c;
  border: 1px solid #ea580c;
}

.pricing-cta-orange:hover {
  background: #fff7ed;
}

.pricing-cta-orange-filled {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.pricing-cta-orange-filled:hover {
  background: linear-gradient(135deg, #c2410c, #9a3412);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3);
}

.pricing-cta-dark {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.pricing-cta-dark:hover {
  background: #f8fafc;
}

.pricing-cta-dark-filled {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.pricing-cta-dark-filled:hover {
  background: linear-gradient(135deg, #0f172a, #020617);
  box-shadow: 0 6px 16px rgba(30, 41, 59, 0.3);
}

.pricing-cta-inline {
  margin-top: 12px;
  width: auto;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
}

/* Support tiers */

.pricing-support-section {
  padding: 72px 0 64px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(28px, 3.5vw, 48px);
}

.support-card-v2 {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 12px 28px rgba(26, 68, 126, 0.05);
  transition: transform 280ms ease, box-shadow 280ms ease;
  position: relative;
  overflow: hidden;
}

.support-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
}

.support-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(7, 94, 245, 0.08), 0 24px 48px rgba(7, 94, 245, 0.12);
}

.support-card-v2-featured {
  border-color: var(--blue);
  box-shadow: 0 4px 6px rgba(7, 94, 245, 0.06), 0 20px 48px rgba(7, 94, 245, 0.12);
}

.support-card-v2-head {
  margin-bottom: 20px;
}

.support-tier-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1e40af;
}

.support-card-v2-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.support-features-v2 {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex-grow: 1;
}

.support-features-v2 li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  color: #334155;
}

.support-features-v2 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #38bdf8);
  opacity: 0.5;
}

.support-features-v2 li:last-child {
  border-bottom: 0;
}

.support-price-v2 {
  margin-bottom: 2px;
}

.support-price-v2-value {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  color: var(--ink);
}

.support-price-v2-period {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.support-price-v2-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 16px;
}

.support-price-box {
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
  margin-bottom: 16px;
}

.support-price-label {
  font-size: 12px;
  color: var(--muted);
}

.support-price-value {
  font-size: 16px;
  font-weight: 800;
  margin: 4px 0;
}

.support-price-unit {
  font-size: 11px;
  color: var(--muted);
}

/* Info callout */

.pricing-notes-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px clamp(28px, 3.5vw, 48px) 64px;
}

.callout {
  margin: 0 0 24px;
  padding: 20px 28px;
  border-radius: 12px;
  border-left: 4px solid var(--blue);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  font-size: 15px;
  color: #334155;
  text-align: center;
}

.callout-green {
  border-left-color: var(--green);
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #065f46;
}

/* Contact page */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px clamp(28px, 3.5vw, 48px) 72px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-item p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.55;
}

.contact-info-item a {
  color: var(--blue);
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(216, 228, 245, 0.88);
  box-shadow: 0 12px 28px rgba(26, 68, 126, 0.06);
  min-height: 400px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* Module detail page */

.module-hero {
  padding: 56px clamp(28px, 3.5vw, 48px) 32px;
  text-align: center;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(216, 228, 245, 0.5);
}

.module-hero h1 {
  max-width: 780px;
  margin: 0 auto 16px;
  font-size: clamp(26px, 2.4vw, 36px);
}

.module-hero > p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.module-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px clamp(28px, 3.5vw, 48px) 64px;
}

.module-body > p {
  max-width: 800px;
  margin: 0 0 32px;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}

.module-body h2 {
  margin: 48px 0 24px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.module-body h3 {
  margin: 32px 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.feature-grid-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.feature-block-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 12px 28px rgba(26, 68, 126, 0.05);
}

.feature-block-detail .adv-icon {
  margin-bottom: 0;
}

.feature-block-detail h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.feature-block-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.accent-box-detail {
  padding: 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0ff 100%);
  border: 1px solid rgba(7, 94, 245, 0.12);
  margin-bottom: 40px;
}

.accent-box-detail h3 {
  margin: 0 0 20px;
}

.accent-item-detail {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}

.accent-item-detail svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.scenario-card-detail {
  padding: 24px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 8px 20px rgba(26, 68, 126, 0.04);
}

.scenario-card-detail h4 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.scenario-card-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Modal */

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: modalFadeIn 200ms ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-overlay.active {
  display: grid;
  place-items: center;
}

.modal-box {
  width: 90%;
  max-width: 560px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: modalSlideUp 280ms ease;
}

.modal-box-success {
  max-width: 440px;
  text-align: center;
  padding: 48px 32px;
}

.modal-header {
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
}

.modal-header-orange {
  background: linear-gradient(135deg, #ea580c, #c2410c);
}

.modal-header-green {
  background: linear-gradient(135deg, var(--green), #059669);
}

.modal-header-dark {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: background 160ms ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal-body {
  padding: 24px;
}

.modal-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #059669);
  display: grid;
  place-items: center;
}

.modal-success-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.modal-success-text {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.modal-btn-cancel {
  min-width: 100px;
  min-height: 42px;
  padding: 0 20px;
  background: #ffffff;
  color: var(--muted);
  border: 1px solid #e2e8f0;
}

.modal-btn-cancel:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.modal-btn-submit {
  min-width: 160px;
  min-height: 42px;
  padding: 0 24px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(7, 94, 245, 0.2);
}

.modal-btn-submit:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 16px rgba(7, 94, 245, 0.3);
  transform: translateY(-1px);
}

.modal-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal-btn-orange {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.modal-btn-orange:hover {
  background: linear-gradient(135deg, #c2410c, #9a3412);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3);
}

.modal-btn-green {
  background: linear-gradient(135deg, var(--green), #059669);
  box-shadow: 0 4px 12px rgba(10, 163, 111, 0.2);
}

.modal-btn-green:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 6px 16px rgba(10, 163, 111, 0.3);
}

.modal-btn-dark {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.modal-btn-dark:hover {
  background: linear-gradient(135deg, #0f172a, #020617);
  box-shadow: 0 6px 16px rgba(30, 41, 59, 0.3);
}

.modal-btn-center {
  margin: 0 auto;
  min-width: 140px;
  min-height: 44px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group {
  flex: 1;
  margin-bottom: 12px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.required-mark {
  color: #dc2626;
}

.form-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 94, 245, 0.1);
}

.form-input-readonly {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 600;
}

.form-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 14px 0;
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Calculator result */

.calc-result {
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(7, 94, 245, 0.15);
  margin-bottom: 8px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(7, 94, 245, 0.08);
  font-size: 13px;
  color: var(--muted);
}

.calc-row:last-of-type {
  border-bottom: 0;
}

.calc-total {
  text-align: center;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
}

.calc-total-blue {
  background: #eff6ff;
}

.calc-total-orange {
  background: #fff7ed;
}

.calc-total-label {
  font-size: 12px;
  color: var(--muted);
}

.calc-total-value {
  font-size: 22px;
  font-weight: 800;
  margin-top: 2px;
}

.form-message {
  padding: 10px 14px;
  border-radius: 8px;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Utility classes */

.color-blue { color: var(--blue); }
.color-green { color: var(--green); }
.color-orange { color: #ea580c; }
.color-dark { color: var(--ink); }

.hidden { display: none !important; }

/* Section wrappers for alternating backgrounds */

.section-alt {
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
  border-top: 1px solid rgba(216, 228, 245, 0.5);
  border-bottom: 1px solid rgba(216, 228, 245, 0.5);
}

.section-dark {
  background: linear-gradient(135deg, var(--ink) 0%, #0a2352 60%, #0d3478 100%);
  color: #ffffff;
}

.section-title {
  margin: 0 0 12px;
  text-align: center;
  color: var(--ink);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
}

.section-subtitle {
  margin: 20px auto 48px;
  max-width: 620px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Advantages */

.advantages {
  padding: 80px clamp(28px, 3.5vw, 48px) 72px;
}

.advantages .advantages-grid,
.advantages .section-title,
.advantages .section-subtitle {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}

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

.adv-card {
  position: relative;
  padding: 32px 28px 28px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.04), 0 16px 40px rgba(26, 68, 126, 0.06);
  transition: box-shadow 280ms ease, transform 280ms ease;
  overflow: hidden;
}

.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
  opacity: 0;
  transition: opacity 280ms ease;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(7, 94, 245, 0.08), 0 24px 48px rgba(7, 94, 245, 0.12);
}

.adv-card:hover::before {
  opacity: 1;
}

.adv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef4ff 0%, #dbe8ff 100%);
  color: var(--blue);
}

.adv-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adv-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.adv-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Modules */

.modules {
  max-width: 1536px;
  margin: 0 auto;
  padding: 80px clamp(28px, 3.5vw, 48px) 72px;
}

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

.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 12px 28px rgba(26, 68, 126, 0.05);
  transition: box-shadow 280ms ease, transform 280ms ease, border-color 280ms ease;
}

.module-card:hover {
  border-color: rgba(7, 94, 245, 0.3);
  box-shadow: 0 8px 16px rgba(7, 94, 245, 0.08), 0 20px 40px rgba(7, 94, 245, 0.12);
  transform: translateY(-3px);
}

.mod-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, #eef4ff 0%, #dbe8ff 100%);
  color: var(--blue);
}

.mod-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.module-card::after {
  content: "\2192";
  position: absolute;
  top: 26px;
  right: 20px;
  color: var(--blue);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.module-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Platform product cards */

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

.platform-module-card {
  --module-accent: var(--blue);
  --module-accent-soft: #eef5ff;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216, 228, 245, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.04), 0 18px 42px rgba(26, 68, 126, 0.07);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.platform-module-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--module-accent);
}

.platform-module-card:hover {
  border-color: color-mix(in srgb, var(--module-accent) 34%, #d7e5f8);
  box-shadow: 0 10px 22px rgba(7, 94, 245, 0.08), 0 26px 54px rgba(26, 68, 126, 0.12);
  transform: translateY(-4px);
}

.platform-module-card-identyx {
  --module-accent: #0e9f9b;
  --module-accent-soft: #e9fbf9;
}

.platform-module-card-infrax {
  --module-accent: #075ef5;
  --module-accent-soft: #eef5ff;
}

.platform-module-card-nodyx {
  --module-accent: #ef6f61;
  --module-accent-soft: #fff1ee;
}

.platform-module-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid #e3edf9;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

.platform-module-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.platform-module-card:hover .platform-module-media img {
  transform: scale(1.025);
}

.platform-module-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px 24px;
}

.platform-module-kicker {
  color: var(--module-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-module-body strong {
  color: var(--ink);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.platform-module-lead {
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
}

.platform-module-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.platform-module-features span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--module-accent) 18%, #d7e5f8);
  border-radius: 6px;
  color: #173665;
  background: var(--module-accent-soft);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
}

.platform-module-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--module-accent);
  font-size: 13px;
  font-weight: 800;
}

.platform-module-link::after {
  content: "\2192";
  font-size: 17px;
  line-height: 1;
  transition: transform 180ms ease;
}

.platform-module-card:hover .platform-module-link::after {
  transform: translateX(3px);
}

/* Product detail pages */

.suite-hero {
  padding: 56px clamp(28px, 3.5vw, 48px) 48px;
  border-bottom: 1px solid rgba(216, 228, 245, 0.64);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.suite-hero-inner,
.suite-detail,
.suite-related-inner {
  max-width: 1536px;
  margin: 0 auto;
}

.suite-hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.suite-hero h1 {
  max-width: 740px;
  font-size: clamp(34px, 3vw, 48px);
}

.suite-hero p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.7;
}

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

.suite-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.suite-hero-media::after {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 75% at center, transparent 40%, #f8fbff 100%);
}

.suite-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.suite-detail {
  padding: 72px clamp(28px, 3.5vw, 48px) 76px;
}

.suite-detail h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.25;
}

.suite-detail h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.suite-intro {
  max-width: 820px;
  margin: 0 0 48px;
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
}

.suite-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  margin-bottom: 64px;
}

.suite-panel {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(216, 228, 245, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 14px 34px rgba(26, 68, 126, 0.06);
}

.suite-panel-accent {
  background: linear-gradient(135deg, #f5fbff 0%, #eef6ff 100%);
}

.suite-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-list li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.suite-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #28b9aa);
}

.suite-feature-grid,
.suite-scenarios,
.suite-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.suite-feature-grid {
  margin-bottom: 64px;
}

.suite-feature-card,
.suite-scenario-card,
.suite-related-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(216, 228, 245, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 10px 26px rgba(26, 68, 126, 0.05);
}

.suite-feature-card p,
.suite-scenario-card p,
.suite-related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.suite-feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(135deg, #eef4ff 0%, #dff0ff 100%);
}

.suite-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.suite-section {
  margin-bottom: 64px;
}

.suite-scenarios {
  margin-top: 24px;
}

.suite-scenario-card h3 {
  color: var(--blue);
  font-size: 15px;
}

.suite-scenario-steps {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: scenario-step;
}

.suite-scenario-steps li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-size: 13px;
  line-height: 1.55;
}

.suite-scenario-steps li::before {
  content: counter(scenario-step);
  counter-increment: scenario-step;
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #28b9aa);
  font-size: 11px;
  font-weight: 800;
}

.suite-related {
  padding: 56px clamp(28px, 3.5vw, 48px) 64px;
}

.suite-related-card {
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.suite-related-card:hover {
  border-color: rgba(7, 94, 245, 0.26);
  box-shadow: 0 10px 22px rgba(7, 94, 245, 0.08), 0 20px 42px rgba(26, 68, 126, 0.1);
  transform: translateY(-3px);
}

.suite-related-card h3 {
  margin-bottom: 8px;
}

/* Replaces */

.replaces {
  padding: 80px clamp(28px, 3.5vw, 48px) 64px;
}

.replaces .section-title {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}

.replaces .replaces-visual {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.replaces-sub {
  margin: 0 auto 48px;
  max-width: 620px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.replaces-visual {
  display: block;
  margin-bottom: 40px;
}

.replaces-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.replaces-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 0 0;
}

.replaces-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(7, 22, 53, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.replaces-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(7, 94, 245, 0.1);
}

.replaces-card-icon {
  grid-row: 1 / -1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #34d399);
}

.replaces-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.replaces-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  align-self: end;
}

.replaces-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  align-self: start;
}

@media (max-width: 600px) {
  .replaces-checks {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* Registry */

.registry {
  max-width: 1536px;
  margin: 0 auto;
  padding: 80px clamp(28px, 3.5vw, 48px) 72px;
}

.registry-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.registry-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
}

.registry-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.registry-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.registry-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.registry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #38bdf8);
  box-shadow: 0 2px 8px rgba(7, 94, 245, 0.25);
}

.registry-badge-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 40px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f0f5ff 0%, #ede6ff 50%, #f5f0ff 100%);
  border: 1px solid rgba(94, 135, 235, 0.18);
  box-shadow: 0 16px 40px rgba(94, 135, 235, 0.08);
  text-align: center;
}

.registry-flag {
  font-size: 64px;
  line-height: 1;
}

.registry-badge-title {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.registry-badge-num {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.registry-badge-class {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* Counters */

.counters {
  padding: 80px clamp(28px, 3.5vw, 48px) 72px;
}

.counters-inner {
  max-width: 1536px;
  margin: 0 auto;
}

.counters .section-title,
.counters .section-subtitle {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}

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

.counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(216, 228, 245, 0.88);
  box-shadow: 0 4px 6px rgba(26, 68, 126, 0.03), 0 16px 36px rgba(26, 68, 126, 0.06);
}

.counter-value {
  color: var(--blue);
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.counters-note {
  margin: 20px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

/* CTA Banner */

.cta-banner {
  padding: 88px clamp(28px, 3.5vw, 48px) 96px;
  text-align: center;
}

.cta-banner h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.25;
}

.cta-banner p {
  margin: 0 auto 36px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.6;
}

.cta-banner .cta-row {
  justify-content: center;
  margin-top: 0;
}

.cta-banner .primary-cta {
  min-height: 52px;
  padding: 0 32px;
  font-size: 15px;
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-banner .primary-cta:hover {
  background: #f0f5ff;
}

.cta-banner .secondary-cta {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner .secondary-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-banner .secondary-cta svg {
  fill: none;
  stroke: #ffffff;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1536px;
  margin: 0 auto;
  padding: 48px clamp(28px, 3.5vw, 40px) 40px;
}

.footer-logo {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.footer-about p {
  margin: 0 0 20px;
  max-width: 300px;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 160ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1536px;
  margin: 0 auto;
  padding: 20px clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-copy,
  .hero-art {
    min-height: 0;
  }

  .hero-copy {
    align-items: flex-start;
  }

  .value-list {
    margin-top: 42px;
  }

  .hero-art img {
    margin: 0 auto;
  }

  .info-row,
  .audience-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    grid-template-columns: 38px 1fr;
    justify-items: start;
    align-items: center;
    min-height: auto;
    padding: 12px 4px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #dfebfa;
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

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

  .cycle-pipeline::before {
    display: none;
  }

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

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

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

  .suite-hero-inner,
  .suite-split {
    grid-template-columns: 1fr;
  }

  .suite-hero-media {
    max-width: 860px;
  }

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

  .registry-row {
    grid-template-columns: 1fr;
  }

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

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

  .feature-grid-detail {
    grid-template-columns: 1fr;
  }

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

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

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

/* Burger menu */

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}

.burger svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(7, 22, 53, 0.45);
  backdrop-filter: blur(6px);
}

.mobile-menu.active {
  display: block;
  animation: mmOverlayIn 220ms ease;
}

@keyframes mmOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mmPanelIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: #ffffff;
  box-shadow: -12px 0 48px rgba(7, 22, 53, 0.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: mmPanelIn 280ms cubic-bezier(0.22, 0.68, 0, 1);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(216, 228, 245, 0.7);
}

.mobile-menu-header .brand img {
  width: 110px;
  height: auto;
}

.mobile-menu-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 228, 245, 0.88);
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 160ms ease;
}

.mobile-menu-close:hover {
  background: #eef2f7;
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  flex: 1;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: background 160ms ease, color 160ms ease;
}

.mobile-menu-nav a:hover {
  background: #f0f5ff;
  color: var(--blue);
}

.mobile-menu-nav a svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-footer {
  padding: 14px 20px 24px;
  border-top: 1px solid rgba(216, 228, 245, 0.7);
}

.mobile-menu-footer .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(7, 94, 245, 0.2);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mobile-menu-footer .mobile-cta:hover {
  background: var(--blue-700);
  box-shadow: 0 8px 22px rgba(7, 94, 245, 0.28);
  transform: translateY(-1px);
}

.mobile-menu-footer .mobile-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .cycle-pipeline {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .platform-modules-grid {
    grid-template-columns: 1fr;
  }

  .suite-feature-grid,
  .suite-scenarios,
  .suite-related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .cycle {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .advantages,
  .modules,
  .registry,
  .counters {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .cta-banner {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .replaces {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .section-subtitle {
    margin-bottom: 32px;
  }
}

@media (max-width: 620px) {
  html, body {
    overflow-x: hidden;
  }

  .site-header,
  .hero,
  .info-row {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand img {
    width: 118px;
  }

  h1 {
    font-size: 28px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .value-list {
    display: none;
  }

  .cta-row {
    display: grid;
    width: 100%;
    margin-top: 28px;
    gap: 12px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .hero {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hero-copy {
    display: contents;
  }

  .eyebrow { order: 1; }
  .hero h1 { order: 2; }
  .value-list { order: 3; }
  .hero-art {
    order: 4;
    margin-left: -16px;
    margin-right: -16px;
  }
  .cta-row { order: 5; }

  .hero-art img {
    width: 100%;
    max-width: none;
  }

  .info-row {
    gap: 12px;
    margin-bottom: 16px;
  }

  .audience-panel,
  .benefits-panel {
    padding: 14px 14px 18px;
  }

  .audience-grid {
    gap: 8px;
  }

  .audience-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    min-height: auto;
  }

  .card-icon {
    width: 32px;
    height: 32px;
  }

  .card-icon svg {
    width: 18px;
    height: 18px;
  }

  .audience-card h3 {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .audience-card p {
    font-size: 10px;
  }

  .benefit-item {
    padding: 10px 4px;
  }

  .cycle {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cycle-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .cycle-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .cycle-pipeline {
    margin-bottom: 28px;
  }

  .cycle-step {
    padding: 20px 14px 18px;
  }

  .cycle-note {
    font-size: 13px;
  }

  .advantages,
  .modules,
  .registry,
  .counters {
    padding-top: 40px;
    padding-bottom: 36px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .adv-card {
    padding: 22px 18px 20px;
  }

  .adv-card h3 {
    font-size: 15px;
  }

  .adv-card p {
    font-size: 13px;
  }

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

  .module-card {
    padding: 20px 18px;
  }

  .platform-module-body {
    padding: 18px 16px 20px;
  }

  .platform-module-body strong {
    font-size: 22px;
  }

  .platform-module-features span {
    font-size: 11px;
    padding: 4px 8px;
    min-height: 26px;
  }

  .replaces {
    padding-top: 40px;
    padding-bottom: 36px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .replaces-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .replaces-checks {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: none;
    padding-top: 20px;
  }

  .replaces-card {
    padding: 18px;
  }

  .registry-row {
    gap: 28px;
  }

  .registry-copy h2 {
    font-size: 22px;
  }

  .registry-copy > p {
    font-size: 14px;
  }

  .registry-badge-box {
    padding: 32px 24px;
  }

  .registry-flag {
    font-size: 48px;
  }

  .registry-badge-title {
    font-size: 18px;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .counter-card {
    padding: 24px 14px;
  }

  .counter-label {
    font-size: 12px;
    text-align: center;
  }

  .cta-banner {
    padding-top: 40px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .cta-banner p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .cta-banner .cta-row {
    display: grid;
    width: 100%;
  }

  .cta-banner .primary-cta,
  .cta-banner .secondary-cta {
    width: 100%;
  }

  .suite-hero {
    padding: 32px 16px 24px;
  }

  .suite-hero h1 {
    font-size: 24px;
  }

  .suite-hero p {
    font-size: 15px;
    margin-top: 16px;
  }

  .suite-hero-actions {
    margin-top: 24px;
    display: grid;
    width: 100%;
  }

  .suite-hero-actions .primary-cta,
  .suite-hero-actions .secondary-cta {
    width: 100%;
  }

  .suite-detail {
    padding: 36px 16px 48px;
  }

  .suite-detail h2 {
    font-size: 20px;
  }

  .suite-intro {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .suite-panel {
    padding: 18px;
  }

  .suite-split {
    gap: 16px;
    margin-bottom: 40px;
  }

  .suite-feature-card,
  .suite-scenario-card,
  .suite-related-card {
    padding: 18px;
  }

  .suite-section {
    margin-bottom: 40px;
  }

  .suite-related {
    padding: 36px 16px 40px;
  }

  .page-hero {
    padding: 32px 16px 28px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .page-content {
    padding: 32px 16px 48px;
  }

  .module-hero {
    padding: 32px 16px 24px;
  }

  .module-hero h1 {
    font-size: 22px;
  }

  .module-body {
    padding: 32px 16px 40px;
  }

  .module-body h2 {
    font-size: 20px;
    margin-top: 32px;
  }

  .feature-block-detail {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 18px;
  }

  .accent-box-detail {
    padding: 20px;
    margin-bottom: 28px;
  }

  .scenario-card-detail {
    padding: 18px;
  }

  .pricing-hero {
    padding: 32px 16px 32px;
  }

  .pricing-grid {
    padding: 28px 16px 0;
    gap: 16px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-support-section {
    padding: 40px 0 36px;
  }

  .support-grid {
    padding: 0 16px;
    gap: 16px;
  }

  .support-card-v2 {
    padding: 22px 18px;
  }

  .pricing-notes-section {
    padding: 32px 16px 40px;
  }

  .contact-grid {
    padding: 28px 16px 40px;
    gap: 20px;
  }

  .contact-map {
    min-height: 280px;
  }

  .contact-map iframe {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 16px 28px;
  }

  .footer-about p {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .modal-box {
    width: 94%;
  }

  .modal-header {
    padding: 14px 18px;
  }

  .modal-body {
    padding: 18px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .modal-box-success {
    padding: 32px 20px;
  }

  .modal-success-title {
    font-size: 20px;
  }

  .callout {
    padding: 16px 18px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 24px;
  }

  .brand img {
    width: 100px;
  }

  .hero {
    padding-top: 20px;
  }

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

  .counters-grid {
    gap: 8px;
  }

  .counter-card {
    padding: 18px 10px;
  }

  .counter-value {
    font-size: 28px;
  }

  .counter-label {
    font-size: 11px;
  }

  .pricing-card {
    padding: 20px 16px;
  }

  .pricing-name {
    font-size: 16px;
  }

  .platform-module-body strong {
    font-size: 20px;
  }

  .cta-banner h2 {
    font-size: 20px;
  }

  .cycle-heading {
    font-size: 20px;
  }

  .section-title {
    font-size: 20px;
  }
}
