:root {
  --ink: #0f1e34;
  --muted: #5a6b82;
  --line: #e3e9f2;
  --paper: #ffffff;
  --soft: #f2f6fc;
  --brand: #1f6feb;
  --brand-dark: #0b4aa8;
  --wa: #0f9f6e;
  --wa-dark: #08724d;
  --gold: #d89a24;
  --blue: #2d6cdf;
  --shadow: 0 22px 60px rgba(15, 30, 52, 0.16);
  --deep-shadow: 0 28px 44px rgba(12, 26, 48, 0.18), 0 10px 18px rgba(12, 26, 48, 0.1);
  --lift-shadow: 0 34px 70px rgba(12, 26, 48, 0.22), 0 2px 0 rgba(255, 255, 255, 0.9) inset;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fe 38%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

.policy-body {
  background:
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 36%, #f6faff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(24, 43, 33, 0.08);
  backdrop-filter: blur(16px);
}

.policy-body .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(24, 43, 33, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 24px rgba(8, 114, 77, 0.32), 0 1px 0 rgba(255, 255, 255, 0.42) inset;
  font-weight: 800;
}

img.brand-mark {
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 41, 29, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.75;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a,
.nav-link {
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, #4f93f7, var(--brand-dark));
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(31, 111, 235, 0.28), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 22px 34px rgba(31, 111, 235, 0.32), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transform: translateY(-2px);
}

.btn-small {
  min-height: 38px;
  padding-inline: 16px;
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

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

.btn-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(135deg, #26364a, var(--ink));
  border-color: var(--ink);
  box-shadow: 0 18px 32px rgba(23, 33, 29, 0.22), 0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.btn-outline {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 41, 29, 0.1), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  perspective: 1200px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 74px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px),
    linear-gradient(90deg, rgba(8, 27, 20, 0.9) 0%, rgba(8, 27, 20, 0.72) 42%, rgba(8, 27, 20, 0.26) 100%),
    linear-gradient(180deg, rgba(8, 27, 20, 0.35), rgba(8, 27, 20, 0.55));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
}

.hero::before {
  right: clamp(22px, 8vw, 128px);
  top: 17%;
  width: clamp(120px, 16vw, 230px);
  height: clamp(88px, 11vw, 160px);
  transform: rotateX(58deg) rotateZ(-18deg) translateZ(22px);
}

.hero::after {
  right: clamp(12px, 3vw, 62px);
  bottom: 16%;
  width: clamp(96px, 12vw, 172px);
  height: clamp(78px, 9vw, 130px);
  transform: rotateX(58deg) rotateZ(17deg) translateZ(10px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 96px auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  transform-style: preserve-3d;
}

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

.hero .eyebrow {
  color: #70adff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.activation-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 38px 78px rgba(0, 0, 0, 0.34), -1px 1px 0 rgba(255, 255, 255, 0.28) inset;
  backdrop-filter: blur(22px);
  transform: rotateY(-9deg) rotateX(5deg) translateZ(40px);
  transform-style: preserve-3d;
}

.activation-panel::before {
  content: "";
  position: absolute;
  inset: 16px -14px -16px 20px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(6, 24, 17, 0.42);
  filter: blur(8px);
  transform: translateZ(-34px);
}

.activation-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 34%);
  pointer-events: none;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-weight: 800;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #6aa8ff;
}

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

.setup-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.setup-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.setup-list .done,
.setup-list .active {
  color: #fff;
  font-weight: 750;
}

.setup-list .done::before {
  background: #6aa8ff;
  border-color: #6aa8ff;
}

.setup-list .active::before {
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 154, 36, 0.18);
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -36px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--deep-shadow);
  transform: translateZ(0);
}

.trust-strip div {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 248, 0.92));
}

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

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(54px, 6vw, 86px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p,
.process-copy p,
.dashboard-copy p {
  color: var(--muted);
  font-size: 17px;
}

.conversion-section {
  padding-bottom: clamp(34px, 4vw, 58px);
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 1100px;
}

.conversion-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f6faff);
  box-shadow: var(--deep-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.conversion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 44%);
  pointer-events: none;
}

.conversion-card:hover {
  box-shadow: var(--lift-shadow);
  transform: translateY(-8px) rotateX(3deg);
}

.conversion-card span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, #4f93f7, var(--brand-dark));
  box-shadow: 0 14px 26px rgba(31, 111, 235, 0.25), 0 1px 0 rgba(255, 255, 255, 0.32) inset;
  font-weight: 900;
}

.conversion-card p {
  color: var(--muted);
}

.conversion-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(31, 111, 235, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.12), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 42px rgba(17, 41, 29, 0.1);
}

.conversion-cta strong,
.conversion-cta span {
  display: block;
}

.conversion-cta strong {
  font-size: 22px;
}

.conversion-cta span {
  margin-top: 4px;
  color: var(--muted);
}

.outcome-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding-top: 0;
}

.outcome-copy {
  position: sticky;
  top: 120px;
}

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

.outcome-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 14px 32px rgba(17, 41, 29, 0.08);
}

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

.outcome-grid strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.outcome-grid span {
  color: var(--muted);
}

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

.service-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(17, 41, 29, 0.08), 0 1px 0 #ffffff inset;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  transform: translateY(0) rotateX(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after,
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 42%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(31, 111, 235, 0.42);
  box-shadow: var(--lift-shadow);
  transform: translateY(-8px) rotateX(3deg);
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background:
    linear-gradient(145deg, #ffffff, #dbe9ff);
  box-shadow: 0 12px 24px rgba(31, 111, 235, 0.18), 0 1px 0 #fff inset;
  font-weight: 850;
}

.service-card p,
.price-card p,
.price-card li,
.timeline p {
  color: var(--muted);
}

.process-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
}

.process-copy {
  max-width: 460px;
}

.timeline {
  display: grid;
  gap: 16px;
  perspective: 1000px;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, var(--soft));
  box-shadow: 0 14px 34px rgba(17, 41, 29, 0.08);
  transform: translateX(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.timeline article:hover {
  box-shadow: var(--deep-shadow);
  transform: translateX(8px);
}

.timeline span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, #31435a, var(--ink));
  box-shadow: 0 14px 22px rgba(23, 33, 29, 0.22), 0 1px 0 rgba(255, 255, 255, 0.24) inset;
  font-weight: 850;
}

.timeline h3,
.timeline p {
  margin-bottom: 4px;
}

.dashboard-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(48px, 5vw, 76px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 76px),
    linear-gradient(35deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px),
    linear-gradient(135deg, #0f2036, #0a1426);
  color: #fff;
  perspective: 1300px;
}

.dashboard-copy {
  max-width: 560px;
}

.dashboard-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-preview {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #eef4fd);
  box-shadow: 0 46px 90px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.78) inset;
  transform: rotateY(8deg) rotateX(4deg);
  transform-style: preserve-3d;
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  inset: 18px -18px -20px 24px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(2, 8, 6, 0.34);
  filter: blur(12px);
  transform: translateZ(-40px);
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  background: #17324f;
}

.dash-sidebar span {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
}

.dash-sidebar span:first-child {
  background: var(--brand);
}

.dash-main {
  padding: 26px;
  color: var(--ink);
}

.dash-head,
.business-row,
.dash-stats {
  display: flex;
  align-items: center;
}

.dash-head {
  justify-content: space-between;
  margin-bottom: 22px;
}

.dash-head strong {
  font-size: 21px;
}

.dash-head span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #dff6eb;
  font-size: 13px;
  font-weight: 800;
}

.dash-stats {
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stats div {
  flex: 1;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f6faff);
  box-shadow: 0 10px 22px rgba(17, 41, 29, 0.07), 0 1px 0 #fff inset;
}

.dash-stats strong,
.dash-stats span {
  display: block;
}

.dash-stats span,
.business-row small,
.business-row em {
  color: var(--muted);
  font-size: 13px;
}

.business-row {
  gap: 14px;
  padding: 14px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 26px rgba(17, 41, 29, 0.07);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.business-row:hover {
  box-shadow: 0 18px 34px rgba(17, 41, 29, 0.12);
  transform: translateX(6px);
}

.business-row div {
  min-width: 0;
  flex: 1;
}

.business-row strong,
.business-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-row em {
  font-style: normal;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 20px rgba(216, 154, 36, 0.24), 0 1px 0 rgba(255, 255, 255, 0.38) inset;
}

.avatar.teal {
  background: var(--brand);
}

.avatar.blue {
  background: var(--blue);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  perspective: 1200px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 36px 76px rgba(31, 111, 235, 0.2), 0 1px 0 #fff inset;
  transform: translateY(-10px) rotateX(2deg);
}

.price-card:hover {
  border-color: rgba(31, 111, 235, 0.42);
  box-shadow: var(--lift-shadow);
  transform: translateY(-8px);
}

.price-card.featured:hover {
  transform: translateY(-14px) rotateX(2deg);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #e6f0ff;
  font-size: 12px;
  font-weight: 850;
}

.price-card strong {
  margin: 16px 0;
  font-size: 24px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0 0 24px;
}

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

.faq-section {
  padding-top: clamp(24px, 3vw, 42px);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 12px 30px rgba(17, 41, 29, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

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

.policy-hero {
  padding: 136px clamp(18px, 4vw, 54px) 52px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px),
    linear-gradient(35deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px),
    linear-gradient(135deg, #0f2036, #0a1426);
}

.policy-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.policy-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 76px);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.policy-hero p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.policy-meta div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.policy-meta dt,
.policy-meta dd {
  margin: 0;
}

.policy-meta dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-meta dd {
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.policy-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 72px) 0;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(17, 41, 29, 0.08);
}

.policy-toc strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
}

.policy-toc a {
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.policy-toc a:hover {
  color: var(--brand-dark);
  background: #eaf2ff;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content section {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 41, 29, 0.07), 0 1px 0 #fff inset;
  scroll-margin-top: 104px;
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
}

.policy-content h3 {
  margin-top: 22px;
  font-size: 20px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content p:last-child,
.policy-content ul:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.policy-content a {
  color: var(--brand-dark);
  font-weight: 800;
}

address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.site-footer {
  padding: 0 clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(135deg, #112340, #081020);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(24px, 4vw, 58px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 66px) 0 34px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 420px;
}

.footer-logo {
  color: #fff;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}

.footer-col a,
.footer-col span,
.footer-col address,
.footer-bottom small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

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

.footer-contact a {
  color: #fff;
  font-size: 20px;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  width: min(1180px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-bottom small {
  max-width: 620px;
  text-align: right;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 15, 0.68);
  backdrop-filter: blur(10px);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.38), 0 1px 0 #fff inset;
  transform: rotateX(1deg);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  margin: 20px 34px 22px 0;
  border-radius: var(--radius);
  background: var(--soft);
}

.auth-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.auth-tabs .active {
  color: #fff;
  background: var(--ink);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: grid;
  gap: 14px;
}

.auth-form h2 {
  margin-bottom: 2px;
  font-size: 28px;
}

.facebook-login-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #1877f2;
  border-radius: var(--radius);
  color: #fff;
  background: #1877f2;
  cursor: pointer;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.22);
}

.facebook-login-button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #1877f2;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.facebook-login-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.auth-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 750;
}

.auth-form input,
.auth-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: none;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.12);
}

.portal-body {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(31, 111, 235, 0.06), transparent 36%),
    linear-gradient(180deg, #f4f8fe 0%, #ffffff 72%);
}

.portal-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100vh;
}

.portal-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  padding: 24px 18px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #16304f, #0a1426);
  box-shadow: 18px 0 42px rgba(12, 31, 22, 0.12);
}

.portal-brand {
  min-width: 0;
}

.portal-nav {
  display: grid;
  align-content: start;
  gap: 6px;
  overflow-y: auto;
}

.portal-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
}

.portal-nav a:hover,
.portal-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.portal-nav span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.portal-nav a.active span {
  background: var(--brand);
}

.portal-side-note {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.portal-side-note strong,
.portal-side-note span {
  display: block;
}

.portal-side-note span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.portal-main {
  min-width: 0;
  padding: 28px clamp(18px, 3vw, 40px) 46px;
}

.portal-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.portal-topbar h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  text-shadow: none;
}

.portal-topbar .eyebrow {
  margin-bottom: 8px;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.portal-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 41, 29, 0.08);
}

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

.portal-hero-panel,
.portal-section,
.portal-stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 16px 38px rgba(17, 41, 29, 0.08), 0 1px 0 #fff inset;
}

.portal-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px),
    linear-gradient(35deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px),
    linear-gradient(135deg, #0f2036, #0a1426);
}

.portal-hero-copy h2 {
  max-width: 780px;
  font-size: clamp(32px, 5vw, 62px);
}

.portal-hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.portal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: none;
}

.btn-ghost-light:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #dff6eb;
  font-size: 12px;
  font-weight: 900;
}

.status-pill.warning {
  color: #7a5010;
  background: #fff1d5;
}

.readiness-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.panel-topline.dark {
  color: #fff;
}

.portal-progress {
  background: rgba(255, 255, 255, 0.2);
}

.portal-steps li {
  color: rgba(255, 255, 255, 0.7);
}

.portal-grid {
  display: grid;
  gap: 16px;
}

.portal-stats {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.portal-stats article {
  padding: 20px;
}

.portal-stats span,
.portal-stats small {
  display: block;
  color: var(--muted);
}

.portal-stats strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.portal-stats small {
  font-size: 13px;
}

.portal-section {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.portal-section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.portal-section-head.compact {
  align-items: center;
}

.portal-section-head h2,
.portal-section h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.5vw, 42px);
}

.portal-section-head p,
.portal-section > p,
.portal-section.mini p,
.work-card p {
  color: var(--muted);
}

.connect-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.connect-checklist {
  display: grid;
  gap: 12px;
}

.check-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.check-row > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #c2cfe0;
  border-radius: 50%;
}

.check-row.done > span {
  background: var(--brand);
  border-color: var(--brand);
}

.check-row.done > span::before {
  content: "";
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.check-row.active {
  border-color: rgba(216, 154, 36, 0.42);
  background: #fffaf0;
}

.check-row.active > span {
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 154, 36, 0.14);
}

.check-row strong,
.check-row small {
  display: block;
}

.check-row small {
  margin-top: 3px;
  color: var(--muted);
}

.connection-card {
  padding: 20px;
  border: 1px solid rgba(31, 111, 235, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.connection-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.connection-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.connection-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.connection-card dt,
.connection-card dd {
  margin: 0;
}

.connection-card dt {
  color: var(--muted);
}

.connection-card dd {
  font-weight: 850;
}

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

.work-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.work-card strong,
.work-card p {
  display: block;
}

.work-card button,
.table-row button,
.work-card button:hover,
.table-row button:hover {
  border: 0;
  color: var(--brand-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.table-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.4fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.table-head {
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.table-row em {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.approved {
  color: var(--brand-dark);
  background: #dff6eb;
}

.pending {
  color: #7a5010;
  background: #fff1d5;
}

.portal-section.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
}

.campaign-stack,
.inbox-preview {
  display: grid;
  gap: 12px;
}

.campaign-stack article,
.inbox-preview article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 41, 29, 0.06);
}

.campaign-stack strong,
.campaign-stack span,
.inbox-preview strong,
.inbox-preview span {
  display: block;
}

.campaign-stack span,
.inbox-preview span,
.inbox-preview em {
  color: var(--muted);
  font-size: 13px;
}

.inbox-preview article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
}

.inbox-preview article.active {
  border-color: rgba(31, 111, 235, 0.36);
  background: #f4f9ff;
}

.inbox-preview span {
  grid-column: 1;
}

.inbox-preview em {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-style: normal;
}

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

.portal-section.mini {
  min-height: 260px;
}

.mini-bars {
  display: flex;
  height: 142px;
  align-items: end;
  gap: 12px;
  margin-top: 24px;
}

.mini-bars span {
  flex: 1;
  min-width: 28px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(180deg, #4f93f7, var(--brand-dark));
  box-shadow: 0 12px 22px rgba(31, 111, 235, 0.2);
}

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

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px !important;
  font-weight: 650 !important;
}

.checkbox-label input {
  width: 16px;
  min-height: 16px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 750;
}

.form-note.error {
  color: #b42318;
}

.btn-link {
  display: inline-block;
  margin-top: 4px;
  padding: 0;
  border: none;
  background: none;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  cursor: pointer;
}

.btn-link:disabled {
  opacity: 0.6;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (hover: none) {
  .btn:hover,
  .conversion-card:hover,
  .service-card:hover,
  .timeline article:hover,
  .business-row:hover,
  .price-card:hover,
  .price-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header.menu-open,
  .site-header.scrolled.menu-open {
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 24;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 24;
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-toggle span {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 23;
    display: flex;
    width: min(360px, 86vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 92px 18px 22px;
    border-left: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: #ffffff;
    box-shadow: -28px 0 70px rgba(7, 20, 15, 0.24);
    transform: translateX(110%);
    transition: transform 240ms ease;
    overflow-y: auto;
  }

  .site-header::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 21;
    background: rgba(7, 20, 15, 0);
    pointer-events: none;
    transition: background 240ms ease;
  }

  .site-header.menu-open .main-nav {
    transform: translateX(0);
  }

  .site-header.menu-open::before {
    background: rgba(7, 20, 15, 0.48);
    pointer-events: auto;
  }

  .main-nav a,
  .nav-link {
    display: block;
    width: 100%;
    padding: 13px;
    text-align: left;
  }

  .main-nav .btn {
    margin-top: 6px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero::before,
  .hero::after {
    opacity: 0.42;
  }

  .activation-panel {
    max-width: 460px;
    transform: none;
  }

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

  .process-section,
  .dashboard-band,
  .outcome-section,
  .policy-section {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }

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

  .conversion-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-copy {
    position: static;
  }

  .process-copy {
    max-width: none;
  }

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

  .dashboard-preview,
  .price-card.featured {
    transform: none;
  }

  .portal-shell {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    width: min(320px, 88vw);
    transform: translateX(-110%);
    transition: transform 220ms ease;
  }

  .portal-body.portal-menu-open .portal-sidebar {
    transform: translateX(0);
  }

  .portal-body.portal-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 49;
    background: rgba(7, 20, 15, 0.46);
  }

  .portal-menu {
    display: block;
  }

  .portal-topbar {
    grid-template-columns: auto 1fr;
  }

  .portal-actions {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .portal-hero-panel,
  .connect-layout,
  .portal-section.split {
    grid-template-columns: 1fr;
  }

  .portal-stats,
  .work-grid,
  .two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    margin-top: 112px;
    margin-bottom: 54px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .conversion-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip,
  .service-grid,
  .form-grid,
  .policy-meta {
    grid-template-columns: 1fr;
  }

  .policy-hero {
    padding-top: 112px;
  }

  .dashboard-preview {
    grid-template-columns: 52px 1fr;
    min-height: 0;
  }

  .dash-sidebar {
    padding-top: 22px;
  }

  .dash-sidebar span {
    width: 28px;
    height: 28px;
  }

  .dash-main {
    padding: 18px;
  }

  .dash-stats {
    flex-direction: column;
  }

  .dash-stats div {
    width: 100%;
  }

  .business-row {
    align-items: flex-start;
  }

  .business-row em {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom small {
    text-align: left;
  }

  .portal-main {
    padding-inline: 14px;
  }

  .portal-actions .btn,
  .portal-hero-actions .btn,
  .portal-section-head .btn {
    width: 100%;
  }

  .portal-section-head {
    flex-direction: column;
  }

  .portal-stats,
  .work-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .table-panel {
    overflow-x: auto;
  }

  .table-row {
    min-width: 620px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .activation-panel,
  .service-card,
  .price-card {
    padding: 18px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 18px;
  }

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

}

/* ==========================================================================
   2026 REDESIGN — enterprise messaging-platform landing (alot-style)
   Appended last so it overrides the earlier hero/service styles.
   ========================================================================== */

/* Header now sits on a light hero, so make it light + dark text by default. */
.site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(15, 30, 52, 0.07); }
.main-nav a:hover,
.nav-link:hover { color: var(--brand); }
.nav-toggle {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

/* ---- Hero -------------------------------------------------------------- */
.hero {
  min-height: auto;
  color: var(--ink);
  overflow: visible;
  perspective: none;
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(31, 111, 235, 0.12), transparent 60%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 72%);
}
.hero::before,
.hero::after,
.hero-media,
.hero-overlay { display: none !important; }

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(112px, 15vh, 156px) 0 clamp(56px, 8vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.1);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 850;
  color: var(--ink);
  text-shadow: none;
}
.hero h1 span { color: var(--brand); }

.hero-lead {
  margin: 0 0 26px;
  max-width: 50ch;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(31, 111, 235, 0.14);
  box-shadow: inset 0 0 0 2px var(--brand);
}

/* ---- Hero visual: WhatsApp chat mock ---------------------------------- */
.hero-visual { position: relative; justify-self: center; width: 100%; max-width: 400px; }
.hero-chat {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 30, 52, 0.16);
}
.hero-chat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.hero-chat-top strong { display: block; font-size: 14px; }
.hero-chat-top small { opacity: 0.85; font-size: 12px; }
.hero-chat-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 800;
  font-size: 13px;
}
.hero-chat-body {
  display: grid;
  gap: 8px;
  padding: 18px 14px;
  background: #eef4fd;
  background-image: radial-gradient(rgba(15, 30, 52, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.hc-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.hc-in { justify-self: start; background: #fff; border-top-left-radius: 3px; }
.hc-out { justify-self: end; background: #d9fdd3; border-top-right-radius: 3px; }
.hero-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.hero-chat-input i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-style: normal;
  font-size: 13px;
}
.hero-stat-chip {
  position: absolute;
  left: -16px;
  bottom: -20px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 30, 52, 0.16);
}
.hero-stat-chip strong { font-size: 22px; color: var(--brand); font-weight: 850; }
.hero-stat-chip span { font-size: 12px; color: var(--muted); }

/* ---- Integration logos ------------------------------------------------- */
.logos-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 6px auto 0;
  text-align: center;
}
.logos-strip p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
}
.logos-row span {
  color: #94a2b8;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ---- Stats band -------------------------------------------------------- */
.stats-band {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(34px, 5vw, 56px) auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 3vw, 30px);
  padding: clamp(26px, 3.4vw, 40px) clamp(20px, 3vw, 40px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 28px 56px rgba(31, 111, 235, 0.28);
}
.stats-band .stat { text-align: center; color: #fff; }
.stats-band .stat strong {
  display: block;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 850;
  letter-spacing: -0.02em;
}
.stats-band .stat span { font-size: 14px; opacity: 0.86; }

/* ---- Centered section headings ---------------------------------------- */
.section-heading.center {
  max-width: 740px;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: center;
}

/* ---- Service / solution cards ----------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.service-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 30, 52, 0.05);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 111, 235, 0.32);
  box-shadow: 0 22px 44px rgba(15, 30, 52, 0.12);
}
.service-card h3 { margin: 14px 0 8px; font-size: 18px; font-weight: 800; }
.service-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 0;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tint-blue   { background: rgba(31, 111, 235, 0.12); color: #1f6feb; }
.tint-green  { background: rgba(15, 159, 110, 0.12); color: #0f9f6e; }
.tint-violet { background: rgba(124, 92, 224, 0.13); color: #7c5ce0; }
.tint-amber  { background: rgba(216, 154, 36, 0.16); color: #c2851a; }
.tint-rose   { background: rgba(225, 76, 102, 0.13); color: #e14c66; }

/* ---- Showcase (copy + dashboard preview) ------------------------------ */
.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.showcase-copy h2 { margin: 8px 0 14px; }
.check-points {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}
.check-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15px;
}
.check-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(31, 111, 235, 0.14);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

/* ---- Steps ------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.step-card {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 30, 52, 0.05);
}
.step-card h3 { margin: 16px 0 8px; font-size: 17px; font-weight: 800; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  font-weight: 850;
  background: linear-gradient(135deg, #4f93f7, var(--brand-dark));
  box-shadow: 0 10px 20px rgba(31, 111, 235, 0.28);
}

/* ---- Testimonials ------------------------------------------------------ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.testimonial-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 30, 52, 0.05);
}
.testimonial-card p { color: var(--ink); font-size: 15px; line-height: 1.6; }
.stars { color: #f5a623; letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.testimonial-by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-by strong { display: block; font-size: 14.5px; }
.testimonial-by small { color: var(--muted); font-size: 13px; }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band {
  color: #fff;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.cta-inner {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0;
  text-align: center;
}
.cta-inner h2 { margin: 0 0 12px; font-size: clamp(26px, 3.4vw, 40px); font-weight: 850; letter-spacing: -0.02em; }
.cta-inner p { margin: 0 0 26px; color: rgba(255, 255, 255, 0.9); font-size: 17px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---- Buttons: large + invert variants --------------------------------- */
.btn-lg { min-height: 54px; padding: 0 28px; font-size: 16px; }
.btn-invert {
  color: var(--brand-dark);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 16px 30px rgba(6, 20, 44, 0.24);
}
.btn-ghost-invert {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}
.btn-ghost-invert:hover { background: rgba(255, 255, 255, 0.12); }
.price-tag { display: block; font-size: 20px; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner,
  .showcase-section { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}
@media (max-width: 560px) {
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-chip { left: 0; }
}

/* ==========================================================================
   Omnichannel — channel availability chips, chat tabs, and channel cards
   ========================================================================== */

/* Hero availability chips */
.channel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.channel-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.channel-chips .dot { width: 8px; height: 8px; border-radius: 50%; }
.ch-live .dot { background: #0f9f6e; box-shadow: 0 0 0 4px rgba(15, 159, 110, 0.16); }
.ch-soon { color: var(--muted); }
.ch-soon .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(216, 154, 36, 0.16); }

/* Channel tabs on the hero chat mock */
.hero-chat-tabs {
  display: flex;
  gap: 6px;
  padding: 10px;
  background: #f2f6fc;
  border-bottom: 1px solid var(--line);
}
.hct {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
}
.hct.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
}
.hct em {
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(216, 154, 36, 0.18);
  color: #a86a10;
}

/* Channels section cards */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.channel-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 30, 52, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px rgba(15, 30, 52, 0.12);
}
.channel-card.is-live {
  border-color: rgba(31, 111, 235, 0.35);
  box-shadow: 0 20px 44px rgba(31, 111, 235, 0.16);
}
.channel-card.is-soon { background: linear-gradient(180deg, #ffffff, #f8fbff); }
.channel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.channel-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
}
.channel-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.channel-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 850; }
.channel-card > p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.channel-features { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
.channel-features li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink); }
.channel-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(31, 111, 235, 0.14);
  box-shadow: inset 0 0 0 2px var(--brand);
}
.is-soon .channel-features li::before {
  background: rgba(90, 107, 130, 0.16);
  box-shadow: inset 0 0 0 2px #98a6bb;
}
.channel-card .btn { margin-top: auto; }
.btn-block { width: 100%; }

/* Live / Coming-soon status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.status-badge .sb-dot { width: 7px; height: 7px; border-radius: 50%; }
.status-badge.live { color: #0b7a52; background: rgba(15, 159, 110, 0.14); }
.status-badge.live .sb-dot { background: #0f9f6e; animation: sb-pulse 1.8s infinite; }
.status-badge.soon { color: #a86a10; background: rgba(216, 154, 36, 0.16); }
.status-badge.soon .sb-dot { background: var(--gold); }
@keyframes sb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 159, 110, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(15, 159, 110, 0); }
}

/* Footer channel availability tags */
.foot-tag {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
}
.foot-tag.live { color: #8affd0; background: rgba(15, 159, 110, 0.24); }
.foot-tag.soon { color: #ffdb94; background: rgba(216, 154, 36, 0.22); }

@media (prefers-reduced-motion: reduce) {
  .status-badge.live .sb-dot { animation: none; }
}

/* Ghost button now sits on a LIGHT hero — give it a glassy, readable style. */
.btn-ghost {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(31, 111, 235, 0.4);
  box-shadow: 0 6px 16px rgba(15, 30, 52, 0.06);
}
.btn-ghost:hover {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 12px 24px rgba(31, 111, 235, 0.16);
}
