:root {
  --ink: #101817;
  --muted: #5e6a67;
  --soft: #edf7f5;
  --line: #d8e5e1;
  --paper: #ffffff;
  --white: #ffffff;
  --green: #22d3ee;
  --green-dark: #0891b2;
  --blue: #0e7490;
  --coral: #22d3ee;
  --gold: #9b7828;
  --panel: #f7fbfa;
  --shadow: 0 22px 70px rgba(16, 24, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(18px, 1fr) minmax(0, 1120px) minmax(18px, 1fr);
  align-items: center;
  padding: 12px 0;
  background: rgba(16, 24, 23, 0.98);
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
  backdrop-filter: blur(18px);
}

.site-header > .brand,
.site-header > .nav {
  grid-column: 2;
  grid-row: 1;
}

.site-header > .brand {
  justify-self: start;
}

.site-header > .nav {
  justify-self: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 760;
}

.nav a:hover {
  color: var(--green);
}

.nav-menu {
  position: relative;
  padding: 18px 0;
}

.nav-menu-label {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: default;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 250px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-dropdown a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--green-dark);
  background: var(--soft);
}

.nav-cta {
  padding: 11px 14px;
  color: var(--ink) !important;
  background: var(--green);
  border-radius: 8px;
}

.nav-cta:hover {
  color: var(--ink) !important;
  background: var(--green);
}

.hero {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  min-height: 96vh;
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(24px, 4vw, 48px) 64px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 18%, rgba(11, 124, 112, 0.14), transparent 26%),
    radial-gradient(circle at 72% 52%, rgba(37, 111, 143, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 68%, #ffffff 100%);
}

.hero-content {
  max-width: 580px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(25px, 2.6vw, 31px);
  font-weight: 900;
  line-height: 1.12;
}

.hero-copy {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  border: 1px solid rgba(11, 124, 112, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.blog-post-shell {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 140px clamp(18px, 5vw, 48px) 72px;
}

.blog-post-shell h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.post-tags a {
  padding: 6px 10px;
  color: var(--blue);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.post-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.post-meta a,
.eyebrow a,
.author-profile-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body {
  margin-top: 42px;
  color: var(--ink);
  font-size: 19px;
}

.post-body h2 {
  margin: 38px 0 12px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.post-body p {
  margin: 0 0 20px;
}

.post-body img {
  display: block;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.post-body figure {
  margin: 28px 0;
}

.post-body figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.video-embed {
  position: relative;
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  background: #101817;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-body blockquote {
  margin: 30px 0;
  padding: 18px 22px;
  background: var(--soft);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

.home-hero .button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 124, 112, 0.28);
}

.hero-notes {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.hero-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 124, 112, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  object-position: center;
}

.hero-card-copy {
  padding: 24px;
}

.hero-card-copy h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.12;
}

.hero-card-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: 76px 0;
  background: var(--panel);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro p:last-child,
.approach-copy p,
.cta-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.intro-image {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(11, 124, 112, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 24, 23, 0.1);
}

.services {
  padding: 84px 0 96px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.service-card {
  grid-column: span 2;
  display: block;
  min-height: 310px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(16, 24, 23, 0.06);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-card:hover {
  border-color: rgba(11, 124, 112, 0.38);
  box-shadow: 0 16px 46px rgba(16, 24, 23, 0.11);
  transform: translateY(-3px);
}

.service-card.strong {
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.13), transparent 30%),
    linear-gradient(140deg, var(--green), var(--green-dark));
  border-color: transparent;
  box-shadow: var(--shadow);
}

.service-card.wide {
  grid-column: span 4;
  min-height: 260px;
  background: var(--soft);
}

.service-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--green-dark);
  background: #dff0ec;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.service-card.strong .service-number {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 33px);
  line-height: 1.06;
}

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

.service-card.strong p {
  color: rgba(255, 255, 255, 0.86);
}

.service-hero {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  min-height: 88vh;
  margin: 74px auto 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(24px, 4vw, 48px) 64px;
  background:
    radial-gradient(circle at 50% 18%, rgba(11, 124, 112, 0.14), transparent 26%),
    radial-gradient(circle at 72% 52%, rgba(37, 111, 143, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 68%, #ffffff 100%);
  color: var(--ink);
}

.service-hero::before {
  display: none;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.service-hero > .section-inner,
.post-header > .section-inner {
  width: 100%;
}

.service-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-summary {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(11, 124, 112, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1.36;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
}

.service-summary > :not(.service-portrait) {
  margin-right: 24px;
  margin-left: 24px;
}

.service-summary > .panel-label {
  margin-top: 24px;
}

.service-summary > :last-child {
  margin-bottom: 24px;
}

.service-summary p:last-child {
  color: #34413d;
  font-size: 18px;
  font-weight: 720;
}

.blog-author-card {
  align-self: center;
}

.blog-author-card .service-portrait {
  aspect-ratio: 1.36;
  max-height: none;
}

.blog-author-card .author-profile-link,
.author-summary .author-profile-link {
  display: inline-flex;
  margin-top: 16px;
}

.post-pricing {
  border-top: 1px solid var(--line);
}

.author-hero {
  padding: 150px 0 84px;
  background:
    radial-gradient(circle at 50% 18%, rgba(11, 124, 112, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 72%, #ffffff 100%);
}

.author-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.author-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
}

.author-summary {
  align-self: stretch;
}

.author-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
}

.service-detail {
  padding: 86px 0;
  background: var(--panel);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}

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

.detail-list p {
  margin: 0;
  padding: 22px 24px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 19px;
  font-weight: 720;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  align-items: stretch;
  margin-top: 34px;
}

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

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

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

.services .workshop-grid .pricing-card-wide {
  grid-column: auto;
}

.pricing-heading {
  max-width: 880px;
}

.pricing-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.94)),
    var(--paper);
  border: 1px solid rgba(216, 229, 225, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 24, 23, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pricing-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  opacity: 0.28;
  content: "";
}

.pricing-card::after {
  position: absolute;
  z-index: -1;
  right: -78px;
  bottom: -96px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0));
  content: "";
}

.pricing-card:hover {
  border-color: rgba(8, 145, 178, 0.34);
  box-shadow: 0 24px 64px rgba(16, 24, 23, 0.12);
  transform: translateY(-3px);
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(237, 247, 245, 0.98)),
    var(--paper);
  border-color: rgba(8, 145, 178, 0.58);
  box-shadow: 0 28px 78px rgba(8, 145, 178, 0.18);
}

.pricing-card.featured:hover {
  box-shadow: 0 32px 86px rgba(8, 145, 178, 0.22);
}

.pricing-card.featured::before {
  height: 7px;
  opacity: 1;
}

.pricing-card-wide {
  grid-column: 1 / -1;
}

.pricing-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.12;
}

.pricing-card:not(.featured) h3::before {
  display: block;
  height: 28px;
  margin-bottom: 14px;
  content: "";
}

.pricing-price {
  display: flex;
  align-items: end;
  margin: auto 0 0;
  padding-top: 24px;
  color: var(--green-dark);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 950;
  line-height: 0.95;
}

.pricing-card p:not(.pricing-price):not(.pricing-tag) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.55;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 720;
}

.pricing-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.pricing-tag {
  align-self: flex-start;
  order: -1;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: #08343d;
  background: rgba(34, 211, 238, 0.2);
  border: 1px solid rgba(8, 145, 178, 0.22);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 14px 18px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(8, 145, 178, 0.2);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.pricing-link::after {
  font-size: 17px;
  line-height: 1;
  content: ">";
}

.pricing-link:hover {
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(16, 24, 23, 0.18);
  transform: translateY(-1px);
}

.summary-pricing {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.summary-pricing div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-pricing span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.summary-pricing strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.value-section {
  padding: 88px 0;
  background: var(--paper);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.value-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.calculator {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(16, 24, 23, 0.08);
}

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

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

.field.wide {
  grid-column: 1 / -1;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 720;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(34, 211, 238, 0.22);
  border-color: var(--green-dark);
}

.field textarea {
  resize: vertical;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.result {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.result span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.calculator-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.offer-hero {
  padding: 148px 0 86px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 247, 245, 0.92), rgba(255, 255, 255, 1)),
    var(--paper);
}

.offer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.offer-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.ownership-panel {
  padding: clamp(26px, 4vw, 38px);
  background: var(--ink);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ownership-logo {
  display: block;
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  object-fit: cover;
}

.ownership-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.08;
}

.ownership-panel p:not(.panel-label) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.seller-panel {
  overflow: hidden;
  padding: 0;
}

.seller-panel > :not(.seller-hero-portrait) {
  margin-right: clamp(26px, 4vw, 38px);
  margin-left: clamp(26px, 4vw, 38px);
}

.seller-panel > .panel-label {
  margin-top: clamp(24px, 4vw, 34px);
}

.seller-panel > p:last-child {
  margin-bottom: clamp(26px, 4vw, 38px);
}

.seller-hero-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
}

.ownership-strip {
  padding: 28px 0;
  background: var(--ink);
}

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

.ownership-strip-grid div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

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

.ownership-strip-grid strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.ownership-strip-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.offer-section {
  padding: 96px 0 104px;
  background: var(--paper);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.included-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.included-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
}

.included-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.seller-path-section {
  background: var(--paper);
}

.seller-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.seller-market-section {
  padding: 96px 0 104px;
  background: var(--panel);
}

.seller-market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.seller-market-grid h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.seller-market-grid p:not(.section-kicker):not(.panel-label) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.seller-note {
  padding: clamp(24px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(16, 24, 23, 0.08);
}

.seller-note h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.14;
}

.seller-note p:not(.panel-label) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.seller-details {
  padding-top: 96px;
  padding-bottom: 104px;
}

.offer-pricing-section {
  padding: 96px 0 110px;
  background: var(--panel);
}

.offer-pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.offer-calculator {
  display: grid;
  gap: 0;
  width: 100%;
}

.price-summary {
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 24, 23, 0.07);
}

.price-summary-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-summary-heading h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}

.price-summary-heading span {
  color: var(--green-dark);
  font-weight: 900;
}

.calculator-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.calculator-group-heading h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.calculator-group-heading span {
  color: var(--green-dark);
  font-weight: 900;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 10px;
}

.selector-card {
  position: relative;
  display: grid;
  min-height: 70px;
  align-content: center;
  justify-items: center;
  padding: 13px 14px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.selector-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selector-card:has(input:checked) {
  border-color: var(--green-dark);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 14px 34px rgba(8, 145, 178, 0.14);
  transform: translateY(-2px);
}

.not-recommended-option {
  border-style: dashed;
}

.not-recommended-option::after {
  display: block;
  margin-top: 5px;
  color: #9b7828;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  content: "Not recommended";
}

.selector-tag {
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: rgba(34, 211, 238, 0.16);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.selector-card strong {
  color: #1d6fe8;
  font-size: clamp(24px, 2.7vw, 32px);
  font-weight: 950;
  line-height: 0.95;
}

.selector-card span:not(.selector-tag) {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.15;
}

.selector-card small {
  display: block;
  max-width: 230px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.experience-toggle {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.experience-toggle label {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.experience-toggle input {
  accent-color: var(--green-dark);
}

.experience-toggle span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.experience-toggle label:has(input:checked) {
  background: rgba(34, 211, 238, 0.14);
  border-color: rgba(8, 145, 178, 0.38);
}

.google-spend-row {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
}

.google-spend-control {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.promo-credit-note {
  width: 100%;
  margin-left: 0;
  padding: 12px 14px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.24);
  border-radius: 8px;
}

.promo-credit-note[hidden] {
  display: none;
}

.promo-credit-note strong,
.promo-credit-note span {
  display: block;
}

.promo-credit-note strong {
  color: var(--ink);
  font-size: 14px;
}

.promo-credit-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 520px);
  gap: 12px;
}

.budget-options label {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.budget-options input {
  accent-color: var(--green-dark);
}

.budget-options label:has(input:checked) {
  color: var(--ink);
  background: rgba(34, 211, 238, 0.16);
  border-color: rgba(8, 145, 178, 0.45);
}

.price-summary {
  border-color: rgba(8, 145, 178, 0.3);
}

.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line-control {
  align-items: start;
  flex-wrap: wrap;
  padding: 16px 0;
}

.summary-line-control > div:first-child {
  flex: 0 1 310px;
}

.summary-line-control > .selector-grid,
.summary-line-control > .budget-options {
  flex: 1 1 500px;
}

.summary-line.google-spend-row {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  justify-content: stretch;
}

.program-fee-line {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(120px, auto);
  align-items: start;
  gap: 16px 28px;
  padding: 16px 0 18px;
}

.program-fee-line > strong {
  justify-self: end;
}

.included-breakdown {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.included-breakdown div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 22px;
}

.included-breakdown div::before {
  order: 2;
  flex: 1 1 auto;
  min-width: 24px;
  border-bottom: 1px dotted rgba(94, 106, 103, 0.62);
  transform: translateY(-0.18em);
  content: "";
}

.program-fee-line .included-breakdown span {
  order: 1;
  flex: 0 1 auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
}

.program-fee-line .included-breakdown strong {
  order: 3;
  flex: 0 0 72px;
  text-align: right;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
}

.summary-line span,
.summary-total span {
  color: var(--muted);
  font-weight: 750;
}

.summary-line small {
  display: block;
  max-width: 340px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.42;
}

.summary-total small {
  display: block;
  max-width: 440px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.42;
}

.summary-line strong {
  color: var(--ink);
  font-size: 20px;
}

.credit-line strong {
  color: var(--green-dark);
}

.summary-total {
  padding-top: 20px;
  border-bottom: 0;
}

.summary-total strong {
  color: var(--green-dark);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.95;
}

.price-summary p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.ownership-details {
  background: var(--paper);
}

.ownership-details-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.ownership-details .step {
  border-bottom-color: var(--line);
}

.ownership-details .step p {
  color: var(--muted);
}

.service-cta {
  padding: 92px 0;
  background: var(--paper);
}

.contact-section {
  padding: 108px 0 116px;
  background: var(--panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(52px, 7vw, 92px);
  align-items: center;
}

.contact-copy {
  max-width: 520px;
}

.contact-grid p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-host {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-host img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(8, 145, 178, 0.22);
  border-radius: 8px;
}

.contact-host strong,
.contact-host span {
  display: block;
}

.contact-host strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.contact-host span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.contact-form {
  padding: clamp(26px, 4vw, 36px);
  background: var(--paper);
}

.form-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 26px;
}

.cta-actions {
  justify-content: center;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.blog-section {
  padding: 86px 0 110px;
  background: var(--paper);
}

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

.blog-card {
  display: block;
  min-height: 360px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(16, 24, 23, 0.06);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card[href]:hover,
.blog-card[href]:focus-visible {
  border-color: var(--green-dark);
  box-shadow: 0 14px 36px rgba(16, 24, 23, 0.1);
  transform: translateY(-2px);
}

.blog-card.featured {
  background: var(--soft);
}

.blog-tag {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.06;
}

.blog-card .blog-card-date {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.blog-card .blog-card-date + h3 {
  margin-top: 0;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.blog-card-tags a {
  padding: 5px 8px;
  color: var(--blue);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.blog-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-dark);
  font-weight: 900;
}

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

.newsletter-section {
  padding: 86px 0;
  background: var(--panel);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}

.newsletter-grid p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 20px;
}

.post-header {
  width: min(1120px, calc(100% - 36px));
  min-height: 88vh;
  margin: 74px auto 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(24px, 4vw, 48px) 64px;
  background:
    radial-gradient(circle at 50% 18%, rgba(11, 124, 112, 0.14), transparent 26%),
    radial-gradient(circle at 72% 52%, rgba(37, 111, 143, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 68%, #ffffff 100%);
}

.post-header-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.post-header h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 72px);
  line-height: 1.02;
  text-wrap: balance;
}

.post-body {
  padding: 74px 0 96px;
}

.video-placeholder {
  padding: clamp(24px, 5vw, 48px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.video-placeholder h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.video-placeholder p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.post-content {
  max-width: 860px;
  margin-top: 56px;
}

.post-content h2 {
  margin-top: 42px;
  font-size: clamp(30px, 4vw, 48px);
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.post-list {
  margin-top: 24px;
}

.approach {
  padding: 88px 0;
  color: var(--white);
  background: var(--ink);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 54px;
}

.approach-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.case-study-feature {
  padding: 88px 0 96px;
  background: var(--paper);
}

.case-study-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.case-study-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.case-study-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.case-study-slide {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  min-width: 0;
  padding: clamp(18px, 2vw, 22px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.96)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 24, 23, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.case-study-slide:hover,
.case-study-slide:focus-visible {
  border-color: rgba(8, 145, 178, 0.42);
  box-shadow: 0 22px 58px rgba(16, 24, 23, 0.12);
  transform: translateY(-3px);
}

.case-study-slide strong {
  display: block;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.12;
}

.case-study-slide > span:not(.case-study-media):not(.panel-label):not(.case-study-link) {
  color: var(--muted);
  font-size: 15px;
}

.case-study-media {
  display: grid;
  height: 150px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 74% 16%, rgba(34, 211, 238, 0.16), transparent 28%),
    linear-gradient(145deg, #101817, #17312d 58%, #f7fbfa 58%);
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 8px;
}

.case-study-media img {
  display: block;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.case-study-media-logo img {
  width: 72%;
  max-height: 86%;
}

.case-study-media-painting img {
  width: 92%;
  max-width: none;
  max-height: 92%;
}

.case-study-media-paddle img {
  max-width: 68%;
  max-height: 84%;
}

.case-study-media-bulk img {
  max-width: 72%;
  max-height: 82%;
}

.case-study-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 950;
}

.case-study-link::after {
  content: ">";
}

.timeline {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.step:first-child {
  padding-top: 0;
}

.step span {
  color: var(--coral);
  font-weight: 950;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.fit {
  padding: 86px 0;
  background: var(--panel);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 38px;
  align-items: stretch;
}

.fit-card {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.fit-list p {
  margin: 0;
  padding: 22px 24px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 19px;
  font-weight: 740;
}

.cta-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(11, 124, 112, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5faf8);
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner p {
  margin-top: 18px;
}

.workshop-countdown {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
  margin: 34px auto 0;
  padding: clamp(18px, 3vw, 24px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 124, 112, 0.18);
  border-radius: 8px;
  text-align: left;
}

.workshop-countdown-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.workshop-countdown-copy {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 850;
  line-height: 1.3;
}

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

.countdown-unit {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 14px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.countdown-unit strong {
  color: var(--green-dark);
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1;
}

.countdown-unit span,
.countdown-expired {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-expired {
  display: block;
  margin-top: 18px;
}

.footer {
  padding: 42px clamp(18px, 4vw, 56px) 30px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
  border-top: 1px solid rgba(34, 211, 238, 0.18);
}

.footer p {
  margin: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(130px, 0.7fr)) minmax(180px, 0.8fr);
  gap: clamp(20px, 3.5vw, 52px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-bottom: 32px;
}

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

.footer-logo {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: cover;
}

.footer-brand p {
  max-width: 320px;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

.footer a:hover {
  color: var(--green);
}

.libutton {
  display: flex;
  width: 200px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  color: #ffffff !important;
  background-color: var(--green-dark);
  border-radius: 16px;
  outline: none;
  text-align: center;
  text-decoration: none !important;
  font-family: "SF Pro Text", Helvetica, sans-serif;
  font-size: 14px;
}

.libutton:hover {
  color: #ffffff !important;
  background-color: #0e7490;
}

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

@media (max-width: 940px) {
  .site-header {
    position: absolute;
    left: 0;
    width: 100%;
    align-items: center;
    grid-template-columns: minmax(18px, 1fr) minmax(0, 1120px) minmax(18px, 1fr);
    padding: 10px 0;
    transform: none;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 10px;
    margin-left: auto;
  }

  .brand-logo {
    height: 44px;
  }

  .nav-menu {
    padding: 0;
  }

  .nav-dropdown {
    display: none;
  }

  .hero {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    grid-template-columns: 1fr;
    padding-top: 108px;
  }

  .service-hero,
  .post-header {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    padding-top: 108px;
  }

  .hero-card {
    max-width: 640px;
  }

  .service-summary {
    max-width: 640px;
  }

  .intro-grid,
  .approach-grid,
  .fit-grid,
  .service-hero-grid,
  .detail-grid,
  .value-grid,
  .contact-grid,
  .offer-hero-grid,
  .offer-pricing-layout,
  .ownership-details-grid,
  .seller-market-grid,
  .newsletter-grid,
  .post-header-grid,
  .case-study-heading,
  .author-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card,
  .service-card.wide {
    grid-column: span 3;
  }

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

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

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

  .offer-hero {
    padding-top: 108px;
  }

  .ownership-strip-grid,
  .included-grid,
  .seller-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .selector-card {
    min-height: 230px;
  }

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

  .pricing-card p:not(.pricing-price):not(.pricing-tag) {
    min-height: auto;
  }

  .pricing-card.featured,
  .pricing-card.featured:hover {
    transform: none;
  }

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

  .workshop-countdown {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .workshop-countdown-image {
    max-height: 220px;
  }

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

  .footer {
    padding-top: 34px;
  }

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

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

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

  .service-hero,
  .post-header {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(14px, 1fr) minmax(0, 1120px) minmax(14px, 1fr);
    padding: 8px 0;
  }

  .brand {
    gap: 0;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-text {
    display: none;
  }

  .nav {
    gap: 8px;
    font-size: 12px;
  }

  .nav-cta {
    padding: 8px 9px;
    font-size: 11px;
  }

  .hero {
    padding-top: 88px;
    padding-right: 24px;
    padding-bottom: 52px;
    padding-left: 24px;
  }

  .service-hero {
    padding-top: 104px;
  }

  .offer-hero {
    padding: 92px 0 58px;
  }

  .offer-hero-copy h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .ownership-strip-grid,
  .included-grid,
  .seller-path-grid,
  .budget-options {
    grid-template-columns: 1fr;
  }

  .services .role-grid {
    grid-template-columns: 1fr;
  }

  .services .workshop-grid {
    grid-template-columns: 1fr;
  }

  .calculator-group-heading,
  .summary-line,
  .summary-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-line.google-spend-row {
    grid-template-columns: 1fr;
  }

  .program-fee-line {
    grid-template-columns: 1fr;
  }

  .program-fee-line > strong {
    justify-self: start;
  }

  .summary-total strong {
    font-size: 42px;
  }

  .promo-credit-note {
    width: 100%;
    margin-left: 0;
  }

  .post-header {
    padding-top: 104px;
  }

  .hero-content,
  .hero-card,
  .service-summary {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .hero h1,
  .service-hero h1,
  .post-header h1 {
    font-size: 38px;
  }

  .button {
    width: 100%;
  }

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

  .service-card,
  .service-card.wide {
    grid-column: 1;
    min-height: auto;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .case-study-media {
    height: 180px;
  }

  .case-study-carousel {
    grid-template-columns: 1fr;
  }

  .calculator-fields,
  .calculator-results {
    grid-template-columns: 1fr;
  }

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