:root {
  color-scheme: light;
  --ink: #1b2384;
  --ink-2: #1f2789;
  --muted: #5e6380;
  --paper: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f7f7fb;
  --line: rgba(255, 20, 147, 0.25);
  --violet: #9c27b0;
  --blue: #1b2384;
  --cyan: #057d88;
  --gold: #a46d0b;
  --shadow: 0 18px 44px rgba(27, 35, 132, 0.1);
  --shadow-strong: 0 24px 68px rgba(27, 35, 132, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Madefor, "Wix Madefor Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

::selection {
  background: rgba(155, 32, 207, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 32px;
  min-height: 116px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #ff3aa7;
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  grid-column: 1;
  width: 170px;
  height: 54px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  width: 170px;
  height: 54px;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #09106f;
  font-size: 1rem;
  font-weight: 500;
}

.header-cta {
  grid-column: 3;
  justify-self: end;
  white-space: nowrap;
}

.mobile-quote {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 8px 12px;
  border-radius: 0;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: transparent;
  color: var(--violet);
  transform: none;
}

.nav-cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button.primary {
  background: #9c27b0;
  color: #fff;
  box-shadow: none;
}

.site-nav .mobile-quote {
  display: none;
}

.button.secondary {
  background: #fff;
  color: var(--blue);
  border-color: #d8d8ea;
  box-shadow: none;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(156, 39, 176, 0.16);
}

.menu-button {
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 24, 109, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.menu-button::before {
  content: "";
  display: none;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding: clamp(54px, 7vw, 94px) clamp(20px, 5vw, 72px) clamp(72px, 8vw, 112px);
  overflow: hidden;
  background: #fff;
}

.hero-media {
  position: relative;
  min-height: 540px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #111827;
  outline: 1px solid rgba(27, 35, 132, 0.12);
  outline-offset: -1px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.46));
}

.hero-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  min-width: 184px;
  padding: 18px;
  border: 1px solid rgba(27, 35, 132, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(12px);
}

.hero-panel p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-panel strong {
  font-size: 1.85rem;
  color: var(--ink-2);
}

.hero-copy,
.page-hero-inner {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  padding-block: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: #9c27b0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--blue);
  font-family: Madefor, "Wix Madefor Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(3rem, 5.25vw, 5.45rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.92;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-text,
.page-hero p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 58, 167, 0.42);
  border-top-width: 3px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.hero-stats dt {
  color: var(--ink-2);
  font-size: 1.7rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #1b185d;
  color: #fff;
  border-top: 1px solid #ff3aa7;
  border-bottom: 1px solid #ff3aa7;
}

.trust-strip span,
.trust-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  font-weight: 850;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.trust-strip a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #eecbff;
}

.section {
  padding: clamp(80px, 10vw, 142px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 46px;
}

.section-heading.compact {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
}

.section-heading.compact p:not(.eyebrow) {
  margin-inline: auto;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-actions.left {
  justify-content: flex-start;
}

.page-hero {
  position: relative;
  padding: clamp(92px, 11vw, 154px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #f5f7fb 0%, #f5f7fb 68%, #ffffff 68%, #ffffff 100%);
  border-bottom: 1px solid #ff3aa7;
}

.crm-hero {
  background:
    linear-gradient(90deg, #f5f7fb 0%, #f5f7fb 61%, #ffffff 61%, #ffffff 100%);
}

.page-hero-inner {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
}

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

.content-card,
.service-grid article,
.plan,
.process-grid div,
.site-preview,
.quote-form,
.cta-panel {
  border: 1px solid rgba(27, 35, 132, 0.12);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.content-card,
.service-grid article,
.plan {
  border-top: 3px solid rgba(255, 58, 167, 0.65);
}

.content-card:hover,
.service-grid article:hover,
.plan:hover,
.site-preview:hover {
  transform: translateY(-2px);
  border-color: rgba(156, 39, 176, 0.35);
  box-shadow: 0 16px 40px rgba(27, 35, 132, 0.11);
}

.content-card {
  padding: 32px;
}

.content-card p,
.service-grid p,
.process-grid p,
.plan p,
.faq-list p,
.quote-section p,
.split p,
.preview-services p {
  color: var(--muted);
}

.content-card h2,
.plan h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
}

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

.service-grid article {
  padding: 30px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  border-radius: 0;
  background: transparent;
  color: #a56b09;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background: #fff;
  border-block: 1px solid #ff3aa7;
}

.split p {
  max-width: 650px;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.site-preview {
  overflow: hidden;
}

.crm-dashboard {
  overflow: hidden;
  border: 1px solid rgba(27, 35, 132, 0.12);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.crm-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(17, 24, 109, 0.1);
}

.crm-dashboard-header strong {
  color: var(--ink-2);
  font-size: 1.2rem;
}

.crm-dashboard-header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.crm-dashboard-header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(5, 125, 136, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.pipeline-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #f7f7fb;
}

.pipeline-columns article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  padding: 16px;
  border: 1px solid rgba(17, 24, 109, 0.1);
  background: #fff;
}

.pipeline-columns h3 {
  font-size: 0.95rem;
}

.pipeline-columns div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-left: 4px solid var(--violet);
  background: #fff;
  box-shadow: 0 10px 24px rgba(27, 35, 132, 0.08);
}

.pipeline-columns strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.pipeline-columns span {
  color: var(--muted);
  font-size: 0.82rem;
}

.preview-browser {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(17, 24, 109, 0.1);
  background: linear-gradient(180deg, #f7f8ff, #eef2ff);
}

.preview-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7cee2;
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(17, 24, 109, 0.1);
}

.preview-nav strong {
  color: var(--ink-2);
}

.preview-nav nav {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.preview-hero {
  padding: 36px 26px;
  background: #1b185d;
}

.preview-hero p {
  margin: 0 0 10px;
  color: #8deff8;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-hero h3 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.preview-hero span {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 0;
  background: #fff;
  color: var(--ink-2);
  font-weight: 900;
}

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.preview-services article {
  padding: 16px;
  border: 1px solid rgba(17, 24, 109, 0.12);
  border-radius: 8px;
  background: #fff;
}

.preview-services strong {
  color: var(--ink);
}

.preview-services p {
  margin: 6px 0 0;
  font-size: 0.86rem;
}

.preview-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  background: var(--ink);
  color: #fff;
}

.preview-proof span {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-section {
  background: #f7f7fb;
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.plan.featured {
  border: 2px solid rgba(156, 39, 176, 0.74);
  border-top: 7px solid #9c27b0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255, 58, 167, 0.42), rgba(27, 35, 132, 0.22)) border-box;
  box-shadow: 0 24px 62px rgba(142, 36, 170, 0.18);
  transform: translateY(-12px);
}

.badge {
  align-self: flex-start;
  margin: -8px 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-lead {
  color: var(--ink) !important;
  font-weight: 850;
}

.price {
  margin: 20px 0 0;
}

.price span {
  color: var(--ink-2);
  font-size: clamp(3.2rem, 6vw, 4.4rem);
  font-weight: 950;
  line-height: 1;
}

.setup {
  margin: 6px 0 20px;
  color: #057b87 !important;
  font-weight: 850;
}

.plan ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.plan li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 24, 109, 0.11);
}

.plan .button {
  margin-top: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.process-grid div {
  padding: 28px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(76px, 9vw, 126px) clamp(20px, 5vw, 72px);
  background: #1b185d;
  color: #fff;
  border-top: 1px solid #ff3aa7;
}

.quote-section h2 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.25rem, 3.9vw, 3.75rem);
  line-height: 1.02;
}

.quote-section p,
.quote-section a {
  color: rgba(255, 255, 255, 0.78);
}

address {
  margin-top: 32px;
  font-style: normal;
}

.cta-panel {
  align-self: center;
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.cta-panel h3 {
  color: #fff;
  font-size: 1.6rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .button {
  color: #fff;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 24, 109, 0.15);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(155, 32, 207, 0.68);
  box-shadow: 0 0 0 4px rgba(155, 32, 207, 0.12);
}

textarea {
  resize: vertical;
}

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

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.form-status.is-error {
  color: #9a1b1b;
}

.form-status.is-success {
  color: #057d50;
}

.faq-list {
  max-width: 920px;
  margin: 36px auto 0;
  border-top: 1px solid rgba(17, 24, 109, 0.12);
}

details {
  border-bottom: 1px solid rgba(17, 24, 109, 0.12);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 900;
}

details p {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  padding: 36px clamp(20px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid #ff3aa7;
}

.site-footer img {
  width: 150px;
}

.site-footer p,
.site-footer small {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 850;
}

.social-bar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}

.social-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(27, 35, 132, 0.16);
  border-radius: 999px;
  background: linear-gradient(145deg, #fff 0%, #f7f1fb 100%);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(27, 35, 132, 0.08);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.social-bar svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-bar a:hover {
  border-color: rgba(255, 58, 167, 0.5);
  background: linear-gradient(145deg, var(--blue) 0%, var(--violet) 100%);
  color: #fff;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: 2;
    min-height: 380px;
    transform: none;
  }

  .hero-media img {
    min-height: 380px;
  }

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

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

@media (max-width: 1100px) {
  body,
  main,
  .site-header,
  .page-hero,
  .section,
  .quote-section,
  .site-footer {
    width: 100%;
    max-width: 100vw;
  }

  .site-header {
    display: flex;
    min-height: 72px;
    padding: 13px 18px;
  }

  .brand,
  .brand img {
    width: 132px;
    height: 46px;
  }

  .menu-button {
    display: inline-flex !important;
    position: static;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999;
    width: 46px;
    height: 46px;
    transform: none;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(17, 24, 109, 0.28);
    background: #fff;
  }

  .menu-button::before {
    content: "";
    display: block;
    width: 22px;
    height: 14px;
    background:
      linear-gradient(var(--blue), var(--blue)) 0 0 / 22px 2px no-repeat,
      linear-gradient(var(--blue), var(--blue)) 0 6px / 22px 2px no-repeat,
      linear-gradient(var(--blue), var(--blue)) 0 12px / 22px 2px no-repeat;
  }

  .menu-button span {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: auto;
    width: min(292px, calc(100vw - 28px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(17, 24, 109, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .site-nav .mobile-quote {
    display: inline-flex;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero,
  .page-hero,
  .section,
  .quote-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero {
    background: #f5f7fb;
  }

  .page-hero-inner {
    max-width: none;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(1.92rem, 8.1vw, 2.42rem);
    line-height: 1.02;
  }

  .page-hero h1 {
    max-width: 18ch;
  }

  h2 {
    font-size: clamp(1.74rem, 7.1vw, 2.24rem);
    line-height: 1.04;
  }

  .page-hero p:not(.eyebrow),
  .hero-text {
    max-width: 34ch;
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.64rem;
  }

  .hero-copy,
  .hero-media,
  .hero-actions,
  .hero-stats {
    width: 100%;
    max-width: min(342px, calc(100vw - 48px));
  }

  .hero-actions,
  .hero-actions .button,
  .quote-form .button {
    width: 100%;
  }

  .hero-stats,
  .trust-strip,
  .service-grid,
  .process-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip span,
  .trust-strip a {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .content-card,
  .plan,
  .check-list,
  .check-list li {
    min-width: 0;
    max-width: min(320px, calc(100vw - 64px));
    overflow-wrap: break-word;
  }

  .content-card,
  .plan {
    width: min(320px, calc(100vw - 64px));
    margin-inline: auto;
  }

  .plan.featured {
    transform: none;
    box-shadow: 0 18px 48px rgba(142, 36, 170, 0.18);
  }

  .quote-section h2 {
    font-size: clamp(1.78rem, 7.4vw, 2.28rem);
  }

  .split h2,
  .section-heading h2 {
    max-width: 11ch;
  }

  .section-heading.compact h2 {
    margin-inline: auto;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .preview-nav,
  .preview-proof,
  .crm-dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-nav nav,
  .preview-services,
  .pipeline-columns {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

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