:root {
  --dark: #07182d;
  --navy: #0d2745;
  --blue: #168bff;
  --light-blue: #eaf4ff;
  --white: #fff;
  --off: #f6f8fb;
  --ink: #0a1626;
  --muted: #637186;
  --line: rgba(13, 39, 69, 0.13);
  --dark-line: rgba(255, 255, 255, 0.14);
  --radius: 10px;
  --shadow: 0 28px 80px rgba(7, 24, 45, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative;
  padding: 12px 14px;
  color: #24354d;
  font-size: 0.9rem;
  font-weight: 850;
}
.site-nav a.active::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 3px;
  background: var(--blue);
}
.site-nav .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
}
.site-nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--dark);
  border: 0;
  border-radius: var(--radius);
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; }

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(22, 139, 255, 0.28), transparent 30%),
    linear-gradient(135deg, var(--dark), #07111f 68%, #020813);
}

.hero::before,
.page-hero::before,
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-copy,
.hero-showcase,
.page-hero > *,
.contact-page > * { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.1vw, 6.3rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.8vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.94;
}
h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1.02;
}
.hero p,
.page-hero p:not(.eyebrow),
.section-heading p,
.intro-split p,
.tab-panel p,
.concept-grid p,
.mini-plans p,
.pricing-cards p,
.service-list p,
.timeline p,
.market-grid p,
.note-section p,
.contact-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  font-weight: 650;
  line-height: 1.58;
}
.hero p { color: rgba(255, 255, 255, 0.78); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 900;
  border-radius: var(--radius);
}
.button.primary { color: #fff; background: var(--blue); box-shadow: 0 18px 42px rgba(22, 139, 255, 0.28); }
.button.secondary { color: #fff; background: rgba(255,255,255,0.08); border: 1px solid var(--dark-line); }
.button.light { color: var(--blue); background: #fff; box-shadow: none; }

.hero-showcase {
  align-self: stretch;
  display: grid;
  align-items: center;
}

.hero-media-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 52vw, 650px);
  background: #fff;
  border: 1px solid var(--dark-line);
  border-radius: 22px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 58%, rgba(7, 24, 45, 0.86)),
    linear-gradient(90deg, rgba(7, 24, 45, 0.3), transparent 42%);
}

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

.hero-status-bar {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}

.hero-status-bar span,
.hero-status-bar strong {
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  background: rgba(7, 24, 45, 0.72);
}

.hero-status-bar strong {
  background: var(--blue);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--off);
  border-bottom: 1px solid var(--line);
}
.proof-strip span {
  padding: 22px;
  color: var(--ink);
  font-weight: 950;
  text-align: center;
  border-right: 1px solid var(--line);
}

.section,
.page-hero,
.contact-page { padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px); }
.light-section { background: var(--off); }
.section-heading { max-width: 980px; margin-bottom: clamp(32px, 5vw, 58px); }

.intro-split {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}
.section-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.services-tabs-section { background: #fff; }
.service-tabs {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: stretch;
}
.tab-buttons { display: grid; gap: 10px; }
.tab-buttons button {
  min-height: 54px;
  padding: 0 18px;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.tab-buttons button.active { color: #fff; background: var(--blue); border-color: var(--blue); }
.tab-panel {
  display: none;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: clamp(24px, 5vw, 70px);
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--dark);
  border-radius: 18px;
  color: #fff;
}
.tab-panel.active { display: grid; }
.tab-panel h3 { color: #fff; max-width: 14ch; }
.tab-panel span { color: var(--blue); font-weight: 950; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.tab-panel p { color: rgba(255,255,255,.72); }
.tab-panel ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.tab-panel li { padding: 14px 16px; color: #fff; font-weight: 800; background: rgba(255,255,255,.08); border: 1px solid var(--dark-line); border-radius: var(--radius); }
.tab-panel li::before { content: "✓"; margin-right: 10px; color: var(--blue); }

.showcase-section { color: #fff; background: var(--dark); }
.showcase-section h2,
.showcase-section h3 { color: #fff; }
.showcase-section .section-heading p { color: rgba(255,255,255,.68); }
.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.concept-grid article {
  padding: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--dark-line);
  border-radius: 16px;
}
.concept-grid span { display: block; margin: 8px 6px 12px; color: #fff; font-weight: 950; }
.concept-screen {
  height: 220px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9) 0 13%, transparent 13%),
    linear-gradient(135deg, #244, #7c8);
  position: relative;
  overflow: hidden;
}
.concept-screen::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 70px;
  border-radius: 10px;
  background: rgba(255,255,255,.88);
}
.concept-screen.green { background-color: #2e7d4f; }
.concept-screen.slate { background-color: #515b66; }
.concept-screen.blue { background-color: #1367c8; }
.concept-screen.orange { background-color: #c46b2f; }
.concept-grid p { margin: 12px 6px 4px; color: rgba(255,255,255,.7); font-size: .95rem; }

.package-preview { background: var(--off); }
.mini-plans,
.pricing-cards,
.pricing-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mini-plans article,
.pricing-cards article,
.pricing-page article,
.service-list article,
.timeline article,
.market-grid article,
.lead-form,
.contact-callout {
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(7,24,45,.06);
}
.mini-plans .featured,
.pricing-cards .featured {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.mini-plans span,
.pricing-cards span,
.pricing-page span,
.service-list span,
.timeline span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mini-plans strong,
.pricing-cards strong,
.pricing-page strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -.055em;
  line-height: .94;
}
.mini-plans .featured strong,
.mini-plans .featured p,
.mini-plans .featured span,
.pricing-cards .featured strong,
.pricing-cards .featured p,
.pricing-cards .featured span { color: #fff; }
.text-link { display: inline-flex; margin-top: 22px; color: var(--blue); font-weight: 950; }

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--dark));
}
.cta-band h2 { color: #fff; }

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 66% 42%, rgba(22, 139, 255, 0.14), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(22,139,255,.24), transparent 30%),
    linear-gradient(135deg, #07182d, #031024 68%, #020814);
}
.page-hero h1,
.page-hero h2 { color: #fff; }
.page-hero p:not(.eyebrow) { color: rgba(255,255,255,.74); }

.service-list,
.timeline,
.market-grid { display: grid; gap: 18px; background: var(--off); }
.service-list article,
.timeline article {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1fr;
  gap: clamp(24px, 5vw, 70px);
}
.service-list h2,
.timeline h2,
.market-grid h2,
.note-section h2 { font-size: clamp(2rem, 3.6vw, 4rem); }

.services-hero {
  min-height: 610px;
  padding-bottom: 120px;
  grid-template-columns: minmax(360px, 0.7fr) minmax(460px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.services-hero > div,
.services-hero img,
.process-hero > div,
.process-hero img {
  position: relative;
  z-index: 1;
}

.services-hero img,
.process-hero img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
}

.service-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1040px;
  margin-top: 34px;
}

.service-jumpbar a {
  padding: 12px 15px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.service-jumpbar a:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.services-page {
  display: grid;
  gap: 26px;
  padding: clamp(34px, 5vw, 70px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(180deg, #f6f8fb, #fff 38%, #f6f8fb);
}

.service-detail {
  scroll-margin-top: 90px;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(30px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(7, 24, 45, 0.07);
}

.service-detail:nth-child(even) {
  background:
    radial-gradient(circle at 92% 14%, rgba(22, 139, 255, 0.09), transparent 30%),
    #fff;
}

.service-detail-head {
  position: relative;
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 950;
  background: var(--blue);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(22, 139, 255, 0.24);
}

.service-detail h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.4vw, 5.15rem);
}

.service-detail-head > p:not(.eyebrow) {
  max-width: 520px;
  color: #33465f;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 750;
}

.service-detail-body > p {
  max-width: 820px;
  color: #394b63;
  font-size: 1.08rem;
  font-weight: 650;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(240px, 0.75fr);
  gap: 18px;
  margin-top: 24px;
}

.detail-grid > div {
  padding: 24px;
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.detail-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 950;
}

.detail-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 19px;
  color: #41546b;
  font-weight: 750;
}

.detail-grid p {
  margin: 0;
  color: #41546b;
  font-weight: 700;
}

.services-cta {
  padding: clamp(56px, 7vw, 90px) clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 24%, rgba(22, 139, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #07182d, #031024);
}

.services-cta h2 {
  max-width: 16ch;
  color: #fff;
}

.services-cta p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
  font-weight: 700;
}

.process-hero {
  min-height: 620px;
  grid-template-columns: minmax(360px, 0.7fr) minmax(460px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.process-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.process-hero-points span {
  padding: 11px 14px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.process-roadmap {
  position: relative;
  display: grid;
  gap: 42px;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 14% 22%, rgba(22, 139, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #f6f8fb, #fff 48%, #f6f8fb);
}

.process-roadmap::before {
  content: "";
  position: absolute;
  top: 86px;
  bottom: 86px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(22, 139, 255, 0.45), transparent);
}

.road-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.road-step:nth-child(odd) .road-card {
  grid-column: 1;
}

.road-step:nth-child(even) .road-card {
  grid-column: 3;
}

.road-marker {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
}

.road-marker span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  font-weight: 950;
  background: var(--blue);
  border: 8px solid #f6f8fb;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(22, 139, 255, 0.3);
}

.road-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 66px rgba(7, 24, 45, 0.08);
}

.road-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 2px;
  background: rgba(22, 139, 255, 0.55);
}

.road-step:nth-child(odd) .road-card::after {
  right: -44px;
}

.road-step:nth-child(even) .road-card::after {
  left: -44px;
}

.road-card h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.road-card p:not(.eyebrow) {
  max-width: 740px;
  color: #42546b;
  font-size: 1.05rem;
  font-weight: 700;
}

.road-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.road-card li {
  position: relative;
  padding-left: 22px;
  color: #33465f;
  font-weight: 800;
}

.road-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 999px;
  transform: translateY(-50%);
}

.process-support {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(52px, 7vw, 84px) clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 139, 255, 0.22), transparent 30%),
    #07182d;
}

.process-support h2 {
  max-width: 13ch;
  color: #fff;
}

.process-support > p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
  font-weight: 700;
}

.who-hero {
  min-height: 620px;
}

.who-intro,
.who-how {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.who-intro h2,
.who-how h2 {
  max-width: 13ch;
}

.who-intro p:not(.eyebrow),
.who-how p {
  max-width: 760px;
  color: #42546b;
  font-size: 1.1rem;
  font-weight: 700;
}

.who-intro img,
.who-how img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(7, 24, 45, 0.14);
}

.who-fit,
.who-examples,
.who-outcomes {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
}

.who-fit {
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 139, 255, 0.08), transparent 30%),
    #f6f8fb;
}

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

.who-fit-grid article,
.who-outcomes article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 52px rgba(7, 24, 45, 0.07);
}

.who-fit-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 950;
  background: var(--blue);
  border-radius: 12px;
}

.who-fit-grid h3,
.who-outcomes h3 {
  font-size: clamp(1.55rem, 2vw, 2.25rem);
}

.who-fit-grid p,
.who-outcomes p {
  color: #42546b;
  font-size: 1rem;
  font-weight: 700;
}

.who-how {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(22, 139, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #07182d, #031024 68%, #020814);
}

.who-how h2 {
  color: #fff;
}

.who-how p {
  color: rgba(255, 255, 255, 0.74);
}

.who-how-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.who-how-list article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.who-how-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
}

.who-how-list p {
  margin: 0;
  font-size: 0.98rem;
}

.who-examples {
  background: #fff;
}

.who-examples .section-heading p {
  max-width: 860px;
}

.who-examples img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 26px 80px rgba(7, 24, 45, 0.13);
}

.who-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #f6f8fb;
}

.pricing-cards,
.comparison-section { background: var(--off); }
.pricing-cards .monthly { margin: 0 0 18px; color: var(--blue); font-weight: 950; }
.comparison-section .section-heading p { color: var(--muted); }
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.pricing-table { width: 100%; min-width: 820px; border-collapse: collapse; background: #fff; }
.pricing-table th,
.pricing-table td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--line); font-weight: 850; }
.pricing-table th:first-child,
.pricing-table td:first-child { text-align: left; }
.pricing-table th { color: #fff; background: var(--dark); }
.pricing-table th span { display: inline-block; margin-left: 8px; padding: 4px 8px; color: #fff; font-size: .68rem; text-transform: uppercase; background: var(--blue); border-radius: 999px; }
.pricing-table tbody tr:nth-child(even) { background: var(--off); }
.note-section { background: #fff; }
.note-section p { max-width: 920px; }
.market-grid { grid-template-columns: repeat(2, 1fr); }

.dot-grid-section,
.dot-grid-light {
  position: relative;
  overflow: hidden;
}

.dot-grid-section::after,
.dot-grid-light::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(22, 139, 255, 0.36) 1.1px, transparent 1.3px) 0 0 / 24px 24px,
    linear-gradient(rgba(22, 139, 255, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(22, 139, 255, 0.08) 1px, transparent 1px) 0 0 / 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 48%, #000 0%, rgba(0,0,0,.74) 45%, transparent 82%);
  opacity: 0.5;
}

.dot-grid-light::after {
  background:
    radial-gradient(circle, rgba(22, 139, 255, 0.18) 1.1px, transparent 1.3px) 0 0 / 24px 24px,
    linear-gradient(rgba(22, 139, 255, 0.05) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(22, 139, 255, 0.05) 1px, transparent 1px) 0 0 / 48px 48px;
  mask-image: radial-gradient(ellipse at 82% 20%, #000 0%, rgba(0,0,0,.6) 44%, transparent 80%);
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(460px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.pricing-hero > div,
.pricing-hero img {
  position: relative;
  z-index: 1;
}

.pricing-hero img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
}

.pricing-plan-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background: #f6f8fb;
}

.pricing-plan-section > * {
  position: relative;
  z-index: 1;
}

.detailed-pricing {
  background: transparent;
  padding: 0;
}

.detailed-pricing article {
  display: grid;
  align-content: start;
}

.detailed-pricing article p:not(.monthly) {
  min-height: 104px;
}

.detailed-pricing ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding-left: 19px;
  color: #3e5067;
  font-weight: 750;
}

.detailed-pricing .featured ul {
  color: rgba(255, 255, 255, 0.86);
}

.detailed-pricing a {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin-top: auto;
  color: #fff;
  font-weight: 950;
  background: var(--blue);
  border-radius: 8px;
}

.detailed-pricing article:not(.featured) a {
  color: var(--blue);
  background: #eaf4ff;
}

.pricing-small-note {
  max-width: 900px;
  margin: 24px auto 0;
  color: #506178;
  text-align: center;
  font-weight: 800;
}

.pricing-detail-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 88px);
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(22, 139, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #07182d, #031024 68%, #020814);
}

.pricing-detail-split h2 {
  max-width: 13ch;
  color: #fff;
}

.pricing-detail-split > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  font-weight: 700;
}

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

.monthly-detail-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.monthly-detail-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 950;
}

.monthly-detail-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.pricing-plan-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.pricing-plan-details article {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(7, 24, 45, 0.08);
}

.pricing-plan-details h2 {
  max-width: 12ch;
  font-size: clamp(1.85rem, 3vw, 3.3rem);
}

.pricing-plan-details p:not(.eyebrow) {
  color: #42546b;
  font-size: 1.02rem;
  font-weight: 700;
}

.note-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.note-section img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 26px 80px rgba(7, 24, 45, 0.14);
}

.pricing-extra-notes {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
  background: #f6f8fb;
}

.pricing-extra-notes h2 {
  max-width: 13ch;
}

.pricing-extra-notes div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1100px;
  margin-top: 24px;
}

.pricing-extra-notes span {
  padding: 12px 14px;
  color: #33465f;
  font-weight: 850;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.contact-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(420px,1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 70% 24%, rgba(22,139,255,.16), transparent 34%),
    linear-gradient(135deg, #07182d, #031024 68%, #020814);
}
.contact-page::before { background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); }
.contact-intro h1 { color: #fff; }
.contact-intro p { color: rgba(255,255,255,.76); }
.contact-callout { margin-top: 30px; color: #fff; background: var(--dark); }
.contact-callout strong,
.contact-callout span { display: block; }
.contact-callout strong { margin-bottom: 8px; font-size: 1.2rem; }
.contact-callout span { color: rgba(255,255,255,.76); font-weight: 700; line-height: 1.45; }
.contact-visual {
  width: 100%;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}
.lead-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.lead-form label { display: grid; gap: 8px; color: var(--ink); font-size: .86rem; font-weight: 900; }
.lead-form input,
.lead-form textarea { width: 100%; min-height: 48px; padding: 12px; color: var(--ink); font: inherit; background: var(--off); border: 1px solid var(--line); border-radius: var(--radius); }
.lead-form input:focus,
.lead-form textarea:focus { outline: 2px solid rgba(22,139,255,.7); border-color: rgba(22,139,255,.7); }
.lead-form textarea { resize: vertical; }
.honeypot { display: none !important; }
.full { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--blue); font-weight: 850; }

.site-footer {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 76px);
  color: #fff;
  background: var(--dark);
}
.site-footer img { width: 150px; background: #fff; border-radius: var(--radius); }
.site-footer p { margin: 0; color: rgba(255,255,255,.72); font-weight: 700; }
.site-footer nav { display: flex; gap: 16px; font-weight: 900; }

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 1100px) {
  .site-nav a { padding-right: 10px; padding-left: 10px; }
  .brand img { width: 146px; }
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .ls-header .site-nav {
    top: 66px;
    right: 14px;
    left: 14px;
    max-height: calc(100svh - 88px);
    overflow-y: auto;
    padding: 10px;
    background: rgba(3, 16, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  }
  .ls-header .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    border-radius: 10px;
  }
  .ls-header .site-nav a.active {
    color: #fff;
    background: rgba(22, 139, 255, 0.16);
  }
  .ls-header .site-nav a.active::after {
    display: none;
  }
  .ls-header .site-nav .nav-cta {
    justify-content: center;
    margin: 8px 0 0;
    color: #fff;
    background: var(--blue);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .hero,
  .intro-split,
  .service-tabs,
  .tab-panel,
  .cta-band,
  .contact-page,
  .service-list article,
  .timeline article,
  .pricing-cards,
  .mini-plans,
  .pricing-page,
  .market-grid { grid-template-columns: 1fr; }
  .concept-grid,
  .proof-strip,
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .hero-media-card { min-height: 440px; }
}

@media (max-width: 680px) {
  .brand img { width: 126px; }
  h1 { font-size: clamp(3rem, 14vw, 4.9rem); }
  .concept-grid,
  .proof-strip,
  .feature-grid,
  .lead-form,
  .site-footer { grid-template-columns: 1fr; }
  .hero-status-bar { grid-template-columns: 1fr 1fr; }
  .hero-media-card { min-height: 360px; }
  .site-footer nav { flex-wrap: wrap; }
}

/* Launchstead homepage v6 */
.ls-header {
  min-height: 66px;
  background: #07182d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ls-header .brand img {
  width: 164px;
  background: transparent;
}

.ls-header .site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  letter-spacing: -0.01em;
}

.ls-header .site-nav .active {
  color: #fff;
}

.ls-footer {
  grid-template-columns: 1.3fr repeat(3, 0.9fr) 1.15fr;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 42px;
}

.ls-footer img {
  width: 168px;
  height: auto;
  object-fit: contain;
  background: transparent;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 250px;
  margin-bottom: 0;
}

.ls-footer nav,
.footer-contact {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
}

.ls-footer strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.88rem;
}

.ls-footer a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 650;
}

.ls-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(540px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
  min-height: 640px;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 62% 46%, rgba(22, 139, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #07182d, #031024 68%, #020814);
}

.ls-hero::before {
  content: "";
  position: absolute;
  top: 86px;
  right: clamp(18px, 5vw, 76px);
  bottom: 46px;
  width: min(58vw, 980px);
  background:
    radial-gradient(circle, rgba(22, 139, 255, 0.44) 1.15px, transparent 1.35px) 0 0 / 24px 24px,
    linear-gradient(rgba(22, 139, 255, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(22, 139, 255, 0.08) 1px, transparent 1px) 0 0 / 48px 48px;
  mask-image: radial-gradient(ellipse at 58% 52%, #000 0%, rgba(0,0,0,.88) 44%, transparent 78%);
  opacity: 0.72;
  pointer-events: none;
}

.ls-hero::after {
  content: "";
  position: absolute;
  right: 4vw;
  bottom: 64px;
  width: min(46vw, 720px);
  height: 220px;
  background: radial-gradient(ellipse, rgba(22, 139, 255, 0.22), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.ls-hero-copy,
.ls-hero-art {
  position: relative;
  z-index: 1;
}

.ls-hero h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.1rem, 5.2vw, 6.2rem);
  letter-spacing: -0.06em;
}

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

.ls-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1.48;
}

.ls-hero-art img {
  width: 100%;
  filter: drop-shadow(0 38px 90px rgba(0, 0, 0, 0.38));
}

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

.hero-badges span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-badges span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--blue);
  border-radius: 2px;
}

.trusted-row {
  padding: 22px clamp(18px, 5vw, 76px);
  background: #f6f8fb;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.trusted-row p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trusted-row div {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.trusted-row span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #45566d;
  font-size: 0.94rem;
  font-weight: 800;
}

.trusted-row svg {
  width: 24px;
  height: 24px;
  color: #748298;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ls-section {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-topline h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.service-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.service-filter a {
  padding: 10px 14px;
  color: #33465f;
  font-size: 0.9rem;
  font-weight: 850;
  background: #f0f5fc;
  border-radius: 6px;
}

.service-filter a:first-child {
  color: #fff;
  background: var(--blue);
}

.service-card-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-card-row article {
  min-height: 240px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(13, 39, 69, 0.08);
}

.service-card-row article > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--light-blue);
  border: 1px solid rgba(22, 139, 255, 0.14);
  border-radius: 14px;
}

.icon-badge svg,
.step-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-row h3 {
  color: var(--ink);
  font-size: 1.15rem;
}

.service-card-row p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.service-card-row a {
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 950;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(48px, 6vw, 78px) clamp(18px, 5vw, 76px);
  color: #fff;
  background: #07182d;
}

.process-band h2 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.process-band p {
  color: rgba(255, 255, 255, 0.66);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(22, 139, 255, 0.72), transparent);
}

.process-track article {
  position: relative;
  z-index: 1;
}

.process-track span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 950;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(22, 139, 255, 0.12);
}

.process-track h3 {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.process-track p {
  font-size: 0.98rem;
  line-height: 1.48;
}

.work-section {
  background: #fff;
}

.outline-link {
  padding: 12px 16px;
  color: var(--blue);
  font-weight: 900;
  border: 1px solid rgba(22, 139, 255, 0.28);
  border-radius: 8px;
}

.work-image {
  width: 100%;
  border-radius: 14px;
  background: #f5f8fc;
  box-shadow: 0 20px 70px rgba(13, 39, 69, 0.12);
}

.pricing-band {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 76px);
  color: #fff;
  background: #07182d;
}

.pricing-band h2 {
  max-width: none;
  color: #fff;
  text-align: center;
}

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

.pricing-home-grid article {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.pricing-home-grid article.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(22, 139, 255, 0.52);
}

.pricing-home-grid em {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 5px 12px;
  color: #fff;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 950;
  background: var(--blue);
  border-radius: 999px;
  transform: translateX(-50%);
}

.pricing-home-grid h3 {
  color: var(--blue);
}

.pricing-home-grid div {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 8px;
  align-items: end;
  margin: 18px 0;
}

.pricing-home-grid strong {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 0.9;
}

.pricing-home-grid span,
.pricing-home-grid li,
.pricing-note {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-home-grid ul {
  display: grid;
  gap: 8px;
  min-height: 150px;
  margin: 0 0 18px;
  padding-left: 18px;
}

.pricing-home-grid a {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.pricing-home-grid .featured a {
  background: var(--blue);
  border-color: var(--blue);
}

.pricing-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.94rem;
}

.faq-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.faq-list h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 16px 0;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list details p {
  color: var(--muted);
}

.cta-photo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1fr);
  min-height: 360px;
  color: #fff;
  background: #07182d;
  border-radius: 14px;
}

.cta-photo-card img {
  grid-column: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.cta-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #07182d 0%, rgba(7, 24, 45, 0.98) 40%, rgba(7, 24, 45, 0.18) 78%),
    radial-gradient(circle at 20% 30%, rgba(22, 139, 255, 0.24), transparent 36%);
}

.cta-photo-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  padding: clamp(28px, 5vw, 54px);
}

.cta-photo-card h2 {
  color: #fff;
  font-size: clamp(2.35rem, 3.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.cta-photo-card .button {
  width: max-content;
  min-width: 210px;
}

@media (max-width: 1100px) {
  .ls-hero,
  .process-band,
  .faq-cta {
    grid-template-columns: 1fr;
  }

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

  .process-roadmap::before {
    left: 48px;
  }

  .road-step,
  .road-step:nth-child(odd),
  .road-step:nth-child(even) {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .road-step:nth-child(odd) .road-card,
  .road-step:nth-child(even) .road-card {
    grid-column: 2;
  }

  .road-marker {
    grid-column: 1;
  }

  .road-card::after {
    display: none;
  }

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

  .pricing-hero,
  .services-hero,
  .process-hero,
  .pricing-detail-split,
  .pricing-plan-details,
  .note-section {
    grid-template-columns: 1fr;
  }

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

  .who-intro,
  .who-how {
    grid-template-columns: 1fr;
  }

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

  .services-hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .cta-photo-card {
    grid-template-columns: 1fr;
  }

  .cta-photo-card img {
    grid-column: 1;
    grid-row: 1;
    min-height: 320px;
  }

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

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

  .trusted-row div {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 680px) {
  .ls-header .brand img {
    width: 122px;
  }

  .ls-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .section-topline {
    display: grid;
  }

  .service-jumpbar a {
    width: 100%;
  }

  .service-detail {
    padding: 24px;
  }

  .service-detail h2 {
    font-size: clamp(2.1rem, 13vw, 3.5rem);
  }

  .process-hero {
    min-height: auto;
  }

  .pricing-hero {
    min-height: auto;
  }

  .who-hero {
    min-height: auto;
  }

  .who-fit-grid,
  .who-outcomes {
    grid-template-columns: 1fr;
  }

  .process-roadmap {
    gap: 24px;
  }

  .process-roadmap::before {
    left: 30px;
  }

  .road-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .road-marker span {
    width: 48px;
    height: 48px;
    border-width: 6px;
  }

  .road-card {
    padding: 22px;
  }

  .road-card h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .road-card ul {
    grid-template-columns: 1fr;
  }

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

  .service-card-row,
  .process-track,
  .pricing-home-grid,
  .trusted-row div,
  .ls-footer {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    display: none;
  }
}
