@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --font-main: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #667085;
  --line: #dde5ef;
  --brand: #ef3f34;
  --brand-dark: #c82e25;
  --blue: #146fc4;
  --blue-dark: #0b427d;
  --gold: #f2b84b;
  --green: #168a63;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --max: 1180px;
  --header-height: 78px;
  font-family: var(--font-main);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-family: var(--font-main);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

body,
button,
input,
select,
textarea,
table,
a,
p,
li,
span,
strong,
small,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

::selection {
  background: rgba(239, 63, 52, 0.18);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 229, 239, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.header-scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  width: min(100% - 34px, 1260px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 220px;
}

.brand img {
  width: 225px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.active {
  color: var(--ink);
  background: var(--surface-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 14px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #fff1ef;
  color: var(--brand-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: 180ms ease;
}

.nav-toggle.is-open span {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 32px rgba(239, 63, 52, 0.25);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(20, 111, 196, 0.4);
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.btn-link {
  color: var(--blue);
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 32, 0.88) 0%, rgba(10, 18, 32, 0.66) 42%, rgba(10, 18, 32, 0.1) 100%);
  z-index: 1;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 72px 0;
  color: #fff;
}

.hero-text {
  max-width: 980px;
}

.hero h1 {
  max-width: 720px;
  margin: 16px 0 22px;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 630px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  width: min(100%, 980px);
}

.proof-item {
  min-width: 0;
  min-height: 112px;
  padding: 18px 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.proof-item .metric-value {
  display: block;
  margin-top: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: end;
  background: #101828;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 30, 0.88), rgba(12, 18, 30, 0.48), rgba(12, 18, 30, 0.12));
  z-index: 1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 82px 0 70px;
  color: #fff;
}

.breadcrumb {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: #fff;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-white {
  background: #fff;
}

.section-dark {
  background: #111827;
  color: #fff;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.section-dark .card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
}

.section-dark .card h3,
.section-dark .card-title {
  color: #fff;
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.78);
}

.section-soft {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
}

.brand-ecosystem-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(10, 18, 32, 0.96), rgba(12, 44, 76, 0.9) 48%, rgba(255, 255, 255, 0.98) 48%),
    #101828;
}

.brand-ecosystem-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 46px;
  align-items: center;
  padding: 72px 0 78px;
}

.brand-hero-copy {
  color: #fff;
}

.brand-hero-copy .breadcrumb {
  margin-bottom: 18px;
}

.brand-hero-copy h1 {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-hero-copy p {
  width: min(100%, 560px);
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.brand-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.brand-orbit::before {
  content: "";
  position: absolute;
  inset: 50% 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 63, 52, 0.28), rgba(20, 111, 196, 0.34));
  transform: translateY(-50%);
}

.orbit-logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(221, 229, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.orbit-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 63, 52, 0.34);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.orbit-logo-main {
  grid-column: 1 / -1;
  min-height: 142px;
  background: #fff;
}

.orbit-logo img {
  width: min(100%, 260px);
  max-height: 80px;
  object-fit: contain;
}

.orbit-logo-main img {
  max-height: 92px;
}

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

.brand-panel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 111, 196, 0.28);
  box-shadow: var(--shadow-soft);
}

.brand-panel-logo {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.brand-panel-logo img {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.brand-category {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
}

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

.text-link {
  color: var(--blue);
  font-weight: 800;
}

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

.brand-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.brand-path span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head.founder-head {
  max-width: 980px;
}

.founder-heading span {
  display: block;
  white-space: nowrap;
}

.section-head h2 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #e7edf5;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.text-stack > * + * {
  margin-top: 18px;
}

.lead {
  color: var(--ink-soft);
  font-size: 18px;
}

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

.brand-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
}

.brand-lede {
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.partner-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.partner-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  min-height: 74px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.partner-logo-card img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.partner-tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 900;
}

.partner-tag.microsoft {
  border-left: 4px solid #146fc4;
}

.partner-tag.google {
  border-left: 4px solid #34a853;
}

.partner-tag.zoho {
  border-left: 4px solid #ef3f34;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 111, 196, 0.28);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #fff1ef;
  color: var(--brand-dark);
  font-weight: 900;
}

.platform-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
  margin-bottom: 22px;
}

.platform-logo img {
  max-width: 185px;
  max-height: 54px;
  object-fit: contain;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 111, 196, 0.28);
  box-shadow: var(--shadow-soft);
}

.client-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.card h3,
.card-title,
.pricing-card h3,
.mini-panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 900;
}

.card p,
.mini-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.card .card-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.section-dark .card .card-title {
  color: #fff;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(22, 138, 99, 0.14);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  padding: 28px;
  background: #fff;
}

.stat .metric-value {
  display: block;
  margin-top: 0;
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row .marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8f2ff;
  color: var(--blue);
  font-weight: 900;
}

.feature-row h3,
.feature-title {
  margin: 0 0 4px;
  font-size: 19px;
  color: var(--ink);
  font-weight: 900;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.feature-row .feature-title {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

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

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.pricing-card.featured {
  border-color: rgba(239, 63, 52, 0.45);
  box-shadow: 0 18px 46px rgba(239, 63, 52, 0.12);
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1ef;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.pricing-card .check-list {
  margin: 8px 0 24px;
}

.pricing-card .btn {
  margin-top: auto;
}

.note {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: #eef6ff;
  color: var(--ink-soft);
  border-radius: 0 8px 8px 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.compare-table th,
.compare-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: #f8fafc;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.compare-table td {
  color: var(--ink-soft);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.process-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 4px;
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), #193653);
  color: #fff;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -80px -160px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(239, 63, 52, 0.22);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 111, 196, 0.12);
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #ecfdf3;
  color: #067647;
  font-weight: 800;
}

.form-message.show {
  display: block;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-card + .contact-card {
  margin-top: 16px;
}

.contact-card h3 {
  margin: 0 0 8px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.18;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-notice {
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  background: #fff1ef;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.site-footer {
  background: #0b1220;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 64px 0 38px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 18px;
  filter: brightness(1.05);
}

.footer-main p,
.footer-main a,
.footer-main li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-main h3,
.footer-heading {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

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

.footer-links li + li {
  margin-top: 9px;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.source-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .brand img {
    width: 190px;
  }

  .nav-link,
  .nav-trigger {
    padding-inline: 8px;
    font-size: 13px;
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .nav-link,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 15px;
  }

  .nav-dropdown {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

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

  .split,
  .contact-grid,
  .cta-band-inner,
  .brand-row,
  .brand-ecosystem-inner {
    grid-template-columns: 1fr;
  }

  .brand-ecosystem-hero {
    min-height: auto;
    background: linear-gradient(180deg, #101828 0%, #102f51 52%, #f7f9fc 52%, #ffffff 100%);
  }

  .brand-ecosystem-inner {
    gap: 34px;
    padding: 58px 0 62px;
  }

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

  .orbit-logo-main {
    grid-column: 1 / -1;
  }

  .brand-showcase {
    grid-template-columns: 1fr;
  }

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

  .partner-tags {
    justify-content: flex-start;
  }

  .partner-logo-row {
    justify-content: flex-start;
  }

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

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

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

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

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 680px);
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 26px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 172px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(10, 18, 32, 0.9), rgba(10, 18, 32, 0.7));
  }

  .hero-content {
    padding: 74px 0 56px;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero p,
  .page-hero p,
  .section-head p,
  .lead {
    font-size: 16px;
  }

  .founder-heading span {
    white-space: normal;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    min-height: 360px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .pricing-grid,
  .pricing-grid.four,
  .stats-band,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .card,
  .pricing-card,
  .form-card,
  .contact-card {
    padding: 22px;
  }

  .cta-band {
    padding: 30px 22px;
  }

  .brand-hero-copy h1 {
    font-size: 36px;
  }

  .brand-orbit {
    grid-template-columns: 1fr;
  }

  .brand-orbit::before {
    display: none;
  }

  .orbit-logo {
    min-height: 104px;
  }

  .brand-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .brand-panel-logo {
    min-height: 112px;
  }

  .brand-path {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .partner-logo-card {
    width: 100%;
  }

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