:root {
  --ink: #17211d;
  --muted: #63706a;
  --line: #dfe8e3;
  --paper: #ffffff;
  --soft: #f3f8f5;
  --brand: #0f9f6e;
  --brand-dark: #08724d;
  --gold: #d89a24;
  --blue: #2d6cdf;
  --shadow: 0 22px 60px rgba(16, 34, 26, 0.16);
  --deep-shadow: 0 28px 44px rgba(10, 25, 18, 0.18), 0 10px 18px rgba(10, 25, 18, 0.1);
  --lift-shadow: 0 34px 70px rgba(12, 31, 22, 0.22), 0 2px 0 rgba(255, 255, 255, 0.9) inset;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 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;
}

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);
}

.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;
}

.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, #18b87f, var(--brand-dark));
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(15, 159, 110, 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(15, 159, 110, 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, #26392f, 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: #75f0bd;
}

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: #70f0b6;
}

.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: #70f0b6;
  border-color: #70f0b6;
}

.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, #f7fbf9);
  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, #18b87f, var(--brand-dark));
  box-shadow: 0 14px 26px rgba(15, 159, 110, 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(15, 159, 110, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 159, 110, 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, #f8fcfa);
  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%, #f9fcfa 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(15, 159, 110, 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, #d6f3e5);
  box-shadow: 0 12px 24px rgba(15, 159, 110, 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, #31463a, 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, #10251d, #081711);
  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, #eff5f2);
  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: #18372c;
}

.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, #f7fbf9);
  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, #f9fcfb);
  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(15, 159, 110, 0.2), 0 1px 0 #fff inset;
  transform: translateY(-10px) rotateX(2deg);
}

.price-card:hover {
  border-color: rgba(15, 159, 110, 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: #e2f7ef;
  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, #f8fcfa);
  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);
}

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, #12281f, #08130f);
}

.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: #75f0bd;
}

.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;
}

.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(15, 159, 110, 0.12);
}

.portal-body {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(15, 159, 110, 0.06), transparent 36%),
    linear-gradient(180deg, #f7fbf8 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, #17382c, #081711);
  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, #f8fcfa);
  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, #10251d, #081711);
}

.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 #bfd0c7;
  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(15, 159, 110, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f5fbf8, #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, #f9fcfb);
}

.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(15, 159, 110, 0.36);
  background: #f4fbf8;
}

.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, #18b87f, var(--brand-dark));
  box-shadow: 0 12px 22px rgba(15, 159, 110, 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;
}

@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 {
    grid-template-columns: 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 {
    grid-template-columns: 1fr;
  }

  .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;
  }

}
