*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #dfe8f2;
  --surface: #f8fbff;
  --surface-alt: #edf4fb;
  --text: #12263b;
  --text-muted: #55697f;
  --border: #c5d3e1;
  --brand: #5d8fc8;
  --brand-dark: #0d2238;
  --brand-soft: #dbe8f5;
  --accent-law: #4b74a8;
  --shadow: 0 24px 60px rgba(13, 34, 56, 0.12);
  --shadow-soft: 0 12px 28px rgba(13, 34, 56, 0.08);
  --radius: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #eef4fa;
  color: var(--text);
  overflow-x: hidden;
}

.showcase-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sample-hero-stage {
  position: relative;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: calc(100svh - 72px);
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  background: #dfe5ed;
}

.private-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.private-showcase-nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(205, 218, 232, 0.92);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(13, 34, 56, 0.06);
}

.private-showcase-nav__inner {
  width: min(1240px, 100% - 2rem);
  min-height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.private-showcase-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
  min-width: 0;
}

.private-showcase-nav__brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.private-showcase-nav__brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0.4rem;
  border: 1px solid rgba(205, 218, 232, 0.95);
  border-radius: 14px;
  background: #ffffff;
}

.private-showcase-nav__brand-logo {
  display: block;
  width: 100%;
  max-width: 42px;
  height: auto;
}

.private-showcase-nav__brand-copy {
  display: grid;
  gap: 0.06rem;
}

.private-showcase-nav__brand-name {
  color: var(--brand-dark);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.private-showcase-nav__brand-meta {
  color: rgba(85, 105, 127, 0.84);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.private-showcase-nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  flex: 1 1 auto;
}

.private-showcase-nav__links a {
  color: #56697d;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.private-showcase-nav__links a:hover,
.private-showcase-nav__links a[aria-current="page"] {
  color: var(--brand-dark);
  border-bottom-color: rgba(93, 143, 200, 0.4);
}

.private-showcase-nav__actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.private-showcase-nav__cta {
  padding: 0.56rem 0.86rem;
  border-radius: 9px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(47, 70, 96, 0.16);
}

.private-showcase-menu {
  position: relative;
}

.private-showcase-menu summary {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(197, 211, 225, 0.95);
  border-radius: 9px;
  background: #ffffff;
  cursor: pointer;
  list-style: none;
}

.private-showcase-menu summary::-webkit-details-marker {
  display: none;
}

.private-showcase-menu summary span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: #4b6175;
}

.private-showcase-menu nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem;
  border: 1px solid rgba(197, 211, 225, 0.95);
  border-radius: 14px;
  background: rgba(248, 251, 255, 0.98);
  box-shadow: 0 16px 34px rgba(17, 37, 58, 0.1);
}

.private-showcase-menu nav a {
  padding: 0.68rem 0.75rem;
  border-radius: 9px;
  color: #566575;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.private-showcase-menu nav a:hover,
.private-showcase-menu nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: rgba(93, 143, 200, 0.08);
}

@media (max-width: 520px) {
  .private-showcase-nav__brand-meta {
    display: none;
  }

  .private-showcase-nav__brand-logo {
    max-width: 32px;
  }

  .private-showcase-nav__cta {
    padding: 0.52rem 0.68rem;
    font-size: 0.84rem;
  }
}

.private-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c9c2b6;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6b6560;
  background: rgba(255, 255, 255, 0.65);
}

.sample-private-label {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(87, 83, 78, 0.72);
}

.email-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.email-link:hover {
  text-decoration: underline;
}

.sample-hero-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.2rem, 4vw, 2.8rem);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.sample-hero-bg {
  position: absolute;
  inset: 0;
  background: #dfe5ed;
}

.sample-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  width: min(1120px, 100% - 2rem);
  max-width: 1120px;
  margin: 0 auto;
}

.sample-hero-content {
  max-width: 560px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.sample-hero-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.8rem;
  color: #23384f;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sample-hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c59732;
}

.sample-hero-content h1 {
  max-width: 8.5ch;
  margin: 0 0 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 600;
  color: #12161c;
}

.sample-hero-subheading {
  margin: 0 0 0.3rem;
  max-width: 26ch;
  color: #18324c;
  line-height: 1.4;
  font-size: 0.96rem;
}

.sample-hero-support {
  margin: 0 0 0.9rem;
  max-width: 34ch;
  color: #64707d;
  line-height: 1.45;
  font-size: 0.84rem;
}

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

.sample-hero-actions .primary-btn {
  padding: 0.68rem 1.05rem;
  border-color: rgba(13, 34, 56, 0.92);
  box-shadow: 0 10px 24px rgba(13, 34, 56, 0.16);
}

.sample-hero-actions .primary-btn:hover {
  background: #14304e;
  box-shadow: 0 12px 28px rgba(13, 34, 56, 0.2);
}

.sample-hero-secondary {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  font-weight: 700;
}

.sample-hero-aside {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sample-hero-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: 260px;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sample-hero-logo-panel img {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.sample-hero-bar {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(185, 193, 204, 0.88);
  border-bottom: 1px solid rgba(185, 193, 204, 0.88);
  background: #ffffff;
}

.sample-hero-bar__inner {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.sample-hero-bar__item {
  position: relative;
  padding: 0.85rem 1rem 0.8rem;
  border: 1px solid rgba(198, 207, 218, 0.8);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  overflow: hidden;
}

.sample-hero-bar__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #5d8fc8 0%, #0d2238 100%);
}

.sample-hero-bar__item h2 {
  margin: 0 0 0.22rem;
  color: #11161d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-hero-bar__item p {
  margin: 0;
  color: #687585;
  line-height: 1.3;
  font-size: 0.76rem;
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.primary-btn {
  color: #faf8f5;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #18385a 100%);
  border: 1px solid #102740;
  padding: 0.65rem 1.1rem;
  box-shadow: 0 8px 18px rgba(13, 34, 56, 0.16);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #163250 0%, #0d2238 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(13, 34, 56, 0.2);
}

.secondary-btn {
  color: var(--text);
  border: 1px solid rgba(175, 197, 220, 0.88);
  background: rgba(248, 251, 255, 0.94);
  padding: 0.65rem 1.1rem;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
}

.secondary-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.sample-sites-section h2,
.sample-process-section h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.samples-section-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
}

.samples-section-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 52ch;
}

.section-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.3rem;
}

.section-kicker {
  margin: 0;
  color: #4f78a6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-sites-section--portfolio {
  padding: 0.25rem 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(197, 211, 225, 0.82);
}

.portfolio-samples {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  margin-top: 1.6rem;
}

.portfolio-sample-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(1.35rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(197, 211, 225, 0.9);
  border-radius: 26px;
  background: rgba(248, 251, 255, 0.82);
  box-shadow: 0 10px 26px rgba(13, 34, 56, 0.05);
}

.portfolio-sample-row--reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
}

.portfolio-sample-row--reverse .portfolio-sample-media {
  grid-column: 2;
}

.portfolio-sample-row--reverse .portfolio-sample-copy {
  grid-column: 1;
  grid-row: 1;
}

.portfolio-sample-media {
  position: relative;
  min-height: clamp(260px, 34vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(197, 211, 225, 0.9);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(145deg, #eff5fb 0%, #dce8f4 100%);
  box-shadow:
    0 2px 4px rgba(17, 37, 58, 0.03),
    0 18px 42px rgba(17, 37, 58, 0.08);
}

.portfolio-sample-media::before {
  content: attr(data-fallback);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: #7a7168;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.portfolio-sample-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
  background: #f6f0e8;
}

.portfolio-sample-copy {
  max-width: 35rem;
}

.portfolio-sample-copy h3 {
  margin: 0 0 0.7rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

.portfolio-sample-copy .perfect-for {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  line-height: 1.62;
  font-size: 0.98rem;
}

.portfolio-sample-copy .perfect-for strong {
  color: var(--text);
  font-weight: 700;
}

.portfolio-sample-points {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.portfolio-sample-points li {
  position: relative;
  padding-left: 1.05rem;
  color: #36506a;
  line-height: 1.45;
  font-size: 0.95rem;
}

.portfolio-sample-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.82;
}

.sample-focus-pill {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.24rem 0.62rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: rgba(237, 244, 251, 0.96);
  border: 1px solid rgba(197, 211, 225, 0.9);
  border-radius: 999px;
}

.portfolio-sample-copy .sample-focus-pill {
  margin-bottom: 0.65rem;
  background: rgba(255, 253, 250, 0.92);
}

.sample-showcase-desc {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1rem;
}

.portfolio-sample-copy .sample-showcase-desc {
  margin: 0;
  line-height: 1.65;
  font-size: 1rem;
}

.sample-showcase-btn {
  display: inline-block;
}

@media (max-width: 899px) {
  .portfolio-sample-row,
  .portfolio-sample-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .portfolio-sample-row--reverse .portfolio-sample-media,
  .portfolio-sample-row--reverse .portfolio-sample-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-sample-media {
    min-height: clamp(230px, 62vw, 360px);
    border-radius: 15px;
  }

  .portfolio-sample-copy {
    max-width: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Featured samples (editorial layout, mini page previews) --- */
.sample-sites-section--showcase {
  margin-top: 0.35rem;
}

.samples-section-lead--editorial {
  max-width: 52ch;
  margin-left: 0;
  margin-right: auto;
  padding-right: 1rem;
}

.featured-samples-shell {
  margin-top: 1.35rem;
  padding: 1.65rem 1.35rem 1.85rem;
  background:
    linear-gradient(168deg, #faf6ef 0%, #f5ede3 42%, #efe6da 100%);
  border: 1px solid #e0d4c6;
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 4px 32px rgba(58, 42, 34, 0.055);
}

.featured-samples {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 1.35rem 1.65rem;
  align-items: start;
}

.featured-samples__column {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.sample-showcase-card {
  position: relative;
  background: linear-gradient(180deg, #fefdfb 0%, #faf7f2 100%);
  border: 1px solid rgba(216, 206, 192, 0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(45, 38, 33, 0.03),
    0 14px 36px rgba(45, 38, 33, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

@media (prefers-reduced-motion: reduce) {
  .sample-showcase-card {
    transition: none;
  }
}

.sample-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(45, 38, 33, 0.04),
    0 22px 48px rgba(45, 38, 33, 0.1);
}

.sample-showcase-card--law {
  border-color: rgba(200, 184, 170, 0.85);
}

.sample-showcase-card--contractor {
  border-color: rgba(198, 186, 172, 0.9);
}

.sample-showcase-card--dental {
  border-color: rgba(190, 202, 190, 0.55);
}

.sample-showcase-card--restaurant {
  border-color: rgba(120, 100, 90, 0.35);
}

.sample-showcase-preview {
  position: relative;
  border-bottom: 1px solid rgba(45, 38, 33, 0.06);
}

.sample-showcase-shot {
  display: block;
  width: 100%;
  height: auto;
}

.sample-showcase-body {
  padding: 1.2rem 1.35rem 1.45rem;
  text-align: left;
}

.sample-showcase-card--compact .sample-showcase-body {
  padding: 1rem 1.15rem 1.2rem;
}

.sample-focus-pill {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.22rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #5c5650;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(190, 180, 168, 0.65);
  border-radius: 999px;
}

.sample-showcase-body h3 {
  margin: 0 0 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: #1c1917;
  line-height: 1.18;
}

.sample-showcase-card--compact .sample-showcase-body h3 {
  font-size: 1.12rem;
}

.sample-showcase-body .perfect-for {
  margin: 0 0 0.65rem;
  font-size: 0.93rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.sample-showcase-body .perfect-for strong {
  color: #292524;
  font-weight: 700;
}

.sample-showcase-desc {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.62;
  font-size: 0.96rem;
  max-width: 52ch;
}

.sample-showcase-btn {
  display: inline-block;
}

/* Mini previews — styled to echo each live sample page (not browser chrome) */
.preview-panel {
  font-size: 1rem;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

/* Law — navy / burgundy PI landing */
.preview-panel--law {
  background: radial-gradient(circle at 100% 0%, rgba(143, 40, 51, 0.08), transparent 45%), #ebe7df;
}

.pv-law-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding: 9px 12px 10px;
  background: linear-gradient(180deg, #1b2e44 0%, #152536 100%);
  color: #f2ebe2;
}

.pv-law-logo {
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
}

.pv-law-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 0.55rem;
  font-weight: 600;
  opacity: 0.82;
}

.pv-law-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  padding: 12px 12px 14px;
  align-items: start;
}

.pv-law-left {
  padding-top: 2px;
}

.pv-law-eyebrow {
  margin: 0 0 5px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8f2833;
}

.pv-law-h {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #1b2e44;
}

.pv-law-p {
  margin: 0;
  font-size: 0.6rem;
  line-height: 1.45;
  color: #46576a;
}

.pv-law-seal {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 8px;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8f2833;
  border: 1px solid rgba(143, 40, 51, 0.45);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.65);
}

.pv-law-aside {
  padding: 10px 10px 11px;
  background: #fdfcfa;
  border-radius: 10px;
  border: 1px solid #d8d4cd;
  box-shadow: 0 6px 18px rgba(27, 46, 68, 0.08);
}

.pv-law-form-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 0.62rem;
  color: #1b2e44;
}

.pv-law-field {
  display: block;
  margin-bottom: 7px;
}

.pv-law-label {
  display: block;
  margin-bottom: 3px;
  font-size: 0.52rem;
  font-weight: 600;
  color: #46576a;
}

.pv-law-input {
  display: block;
  height: 17px;
  border-radius: 5px;
  background: #f5f2ec;
  border: 1px solid #d0cbc3;
}

.pv-law-input--tall {
  height: 30px;
}

.pv-law-submit {
  display: block;
  margin-top: 8px;
  padding: 6px 10px;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #f9f7f3;
  background: linear-gradient(180deg, #9e2f3c 0%, #8f2833 100%);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(143, 40, 51, 0.25);
}

/* Contractor — roof photo strip, rust CTAs, project cards */
.preview-panel--contractor {
  background: #f4efe8;
}

.pv-co-strip {
  padding: 5px 10px;
  text-align: center;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #e8e2d8;
  background: #2e3538;
}

.pv-co-hero {
  position: relative;
  min-height: 76px;
  overflow: hidden;
}

.pv-co-hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46, 53, 56, 0.15) 0%, rgba(30, 28, 26, 0.55) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40'%3E%3Cpath fill='%235c5349' d='M0 28 L30 8 L55 22 L80 6 L120 26 V40 H0z'/%3E%3Cpath fill='%238b7355' d='M0 32 L40 14 L70 26 L120 18 V40 H0z'/%3E%3C/svg%3E")
      center/cover no-repeat,
    linear-gradient(105deg, #6b5d4f 0%, #9a8268 45%, #c9b196 100%);
}

.pv-co-hero-text {
  position: relative;
  z-index: 1;
  padding: 11px 12px 12px;
  max-width: 78%;
}

.pv-co-kicker {
  margin: 0 0 4px;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 250, 244, 0.92);
}

.pv-co-h {
  margin: 0 0 7px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fffaf4;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.pv-co-cta {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.54rem;
  font-weight: 700;
  color: #fffaf4;
  background: #ba6437;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pv-co-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 9px 10px 11px;
  background: #ebe4da;
}

.pv-co-card {
  padding: 6px 7px 7px;
  background: #fffaf4;
  border-radius: 8px;
  border: 1px solid rgba(33, 38, 40, 0.1);
}

.pv-co-thumb {
  height: 34px;
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    linear-gradient(95deg, #5a534c 0%, #8f7a63 40%, #c4a882 100%);
}

.pv-co-thumb--alt {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
    linear-gradient(85deg, #4a4540 0%, #7a6a58 50%, #a69078 100%);
}

.pv-co-card p {
  margin: 6px 0 0;
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 1.35;
  color: #596266;
}

/* Dental — sage / beige calm clinic */
.preview-panel--dental {
  background: linear-gradient(180deg, #fcfaf7 0%, #f3ece4 100%);
}

.pv-dent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(112, 129, 114, 0.18);
  background: rgba(251, 250, 248, 0.95);
}

.pv-dent-name {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 0.72rem;
  color: #313733;
}

.pv-dent-deco {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8ea18d, #dce5dc);
}

.pv-dent-center {
  text-align: center;
  padding: 16px 14px 18px;
}

.pv-dent-eyebrow {
  margin: 0 0 8px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #708172;
}

.pv-dent-h {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #2f3532;
  max-width: 16em;
  margin-left: auto;
  margin-right: auto;
}

.pv-dent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.pv-dent-pill {
  padding: 5px 11px;
  font-size: 0.55rem;
  font-weight: 600;
  color: #2f3532;
  background: #dce5dc;
  border-radius: 999px;
}

.pv-dent-pill--ghost {
  background: transparent;
  border: 1px solid rgba(112, 129, 114, 0.45);
  color: #5f6764;
}

/* Restaurant — dark hero + menu (Juniper-style) */
.preview-panel--restaurant {
  background: #1a1412;
}

.pv-rest-hero {
  position: relative;
  min-height: 84px;
  overflow: hidden;
}

.pv-rest-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 90% at 70% 20%, rgba(184, 121, 77, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(36, 25, 21, 0.2) 0%, rgba(26, 20, 18, 0.92) 100%),
    linear-gradient(115deg, #3a2a22 0%, #241915 50%, #1a1412 100%);
}

.pv-rest-hero-copy {
  position: relative;
  z-index: 1;
  padding: 12px 12px 14px;
}

.pv-rest-kicker {
  margin: 0 0 5px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e8d8c2;
  opacity: 0.95;
}

.pv-rest-h {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.05;
  color: #f7efe2;
}

.pv-rest-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pv-rest-btn {
  padding: 4px 9px;
  font-size: 0.52rem;
  font-weight: 700;
  color: #241915;
  background: #b8794d;
  border-radius: 4px;
}

.pv-rest-btn--outline {
  background: transparent;
  color: #f7efe2;
  border: 1px solid rgba(247, 239, 226, 0.45);
}

.pv-rest-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  padding: 10px 12px 12px;
  background: #241915;
  border-top: 1px solid rgba(93, 65, 49, 0.25);
}

.pv-rest-mh {
  margin: 0 0 5px;
  font-family: Georgia, serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: #b8794d;
}

.pv-rest-item {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 0 0 4px;
  padding-bottom: 3px;
  border-bottom: 1px dotted rgba(247, 239, 226, 0.12);
  font-size: 0.52rem;
  color: #e8d8c2;
}

.pv-rest-item span:last-child {
  font-weight: 600;
  color: #c4a990;
  flex-shrink: 0;
}

/* Featured vs compact scale */
.sample-showcase-card--featured .sample-showcase-preview {
  min-height: 200px;
}

.sample-showcase-card--featured .pv-law-h {
  font-size: 0.88rem;
}

.sample-showcase-card--featured .pv-law-main {
  padding: 14px 14px 16px;
}

.sample-showcase-card--featured .pv-co-hero {
  min-height: 92px;
}

.sample-showcase-card--featured .pv-rest-hero {
  min-height: 96px;
}

.sample-showcase-card--compact .pv-law-h {
  font-size: 0.68rem;
}

.sample-showcase-card--compact .pv-law-main {
  grid-template-columns: 1fr;
  padding: 10px;
}

.sample-showcase-card--compact .pv-law-aside {
  max-width: 100%;
}

.sample-showcase-card--compact .pv-co-hero {
  min-height: 64px;
}

.sample-showcase-card--compact .pv-co-h {
  font-size: 0.72rem;
}

.sample-showcase-card--compact .pv-dent-center {
  padding: 12px 10px 14px;
}

.sample-showcase-card--compact .pv-dent-h {
  font-size: 0.72rem;
}

.sample-showcase-card--compact .pv-rest-hero {
  min-height: 72px;
}

.sample-showcase-card--compact .pv-rest-h {
  font-size: 0.76rem;
}

.sample-showcase-card--compact .pv-rest-menu {
  padding: 8px 10px 10px;
}

@media (max-width: 899px) {
  .featured-samples {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .featured-samples__column {
    gap: 1.05rem;
  }

  .sample-showcase-card--featured .pv-law-main {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .sample-showcase-card--featured .sample-showcase-preview {
    min-height: 280px;
  }

  .featured-samples__column {
    padding-top: 0.55rem;
  }
}

.sample-sites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.sample-sites-grid--four {
  gap: 1.35rem;
}

.sample-site-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(214, 207, 196, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.sample-site-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.sample-card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
}

.sample-site-body {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.15rem 1.25rem;
  pointer-events: none;
}

.sample-site-body h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #1c1917;
}

.perfect-for {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.perfect-for strong {
  color: var(--text);
  font-weight: 700;
}

.sample-site-body p {
  margin: 0 0 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

.sample-site-body ul {
  margin: 0 0 14px;
  padding-left: 1.1rem;
}

.sample-site-body li {
  margin-bottom: 6px;
  color: #44403c;
}

.could-include-label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #78716c;
}

.could-include-list {
  margin: 0 0 1rem;
}

.card-cta {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
}

.sample-site-card--law {
  border-top: 3px solid var(--accent-law);
  background: linear-gradient(180deg, #fdfcfb 0%, #faf8f5 100%);
}

.sample-site-card--contractor {
  border-top: 3px solid #78716c;
  background: linear-gradient(180deg, #f7f5f2 0%, #f3f0eb 100%);
}

.sample-site-card--dental {
  border-top: 3px solid #5b8a8f;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8faf9 0%, #f2f7f6 100%);
}

.sample-site-card--restaurant {
  border-top: 3px solid #b45309;
  background: linear-gradient(180deg, #fdfaf7 0%, #faf6f0 100%);
}

.sample-preview {
  margin: 14px;
  border-radius: 10px;
  border: 1px solid rgba(180, 170, 156, 0.55);
  background: var(--preview-bg);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.preview-law-bar {
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #8f2d3a, #b84a52);
  margin-bottom: 8px;
  opacity: 0.85;
}

.preview-hero-cta--accent {
  background: rgba(143, 45, 58, 0.85) !important;
}

.preview-contractor-strip {
  height: 22px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, #a8a29e, #a8a29e 8px, #d6d3d1 8px, #d6d3d1 16px);
  margin-bottom: 8px;
  opacity: 0.55;
}

.preview-hero--soft {
  border-radius: 12px;
}

.preview-hero-cta--soft {
  background: rgba(91, 138, 143, 0.75) !important;
}

.preview-nav--short {
  width: 42%;
}

.preview-hero--warm {
  border-radius: 10px;
  padding-bottom: 10px;
}

.preview-restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 8px;
}

.preview-r-cell {
  height: 28px;
  border-radius: 4px;
  background: rgba(180, 83, 9, 0.2);
}

.preview-r-cell.wide {
  grid-column: 1 / -1;
  height: 36px;
}

.sample-preview--law .preview-toolbar {
  background: rgba(28, 25, 23, 0.06);
}

.sample-preview--contractor .preview-toolbar {
  background: rgba(87, 83, 78, 0.08);
}

.sample-preview--dental .preview-toolbar {
  background: rgba(91, 138, 143, 0.1);
}

.sample-preview--restaurant .preview-toolbar {
  background: rgba(180, 83, 9, 0.1);
}

.preview-toolbar {
  height: 24px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.5);
}

.preview-toolbar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.6);
}

.preview-screen {
  min-height: 170px;
  padding: 10px;
  position: relative;
}

.preview-nav,
.preview-hero-title,
.preview-hero-subtitle,
.preview-pill,
.preview-card {
  background: rgba(255, 255, 255, 0.8);
}

.preview-nav {
  width: 58%;
  height: 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.preview-hero {
  background: var(--preview-hero);
  border-radius: 9px;
  padding: 8px;
  margin-bottom: 8px;
}

.preview-hero-title {
  height: 7px;
  width: 70%;
  border-radius: 999px;
  margin-bottom: 4px;
}

.preview-hero-subtitle {
  height: 6px;
  width: 56%;
  border-radius: 999px;
  margin-bottom: 5px;
}

.preview-hero-cta {
  width: 34%;
  height: 11px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.75);
}

.preview-pill-row,
.preview-card-row {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.preview-pill {
  flex: 1;
  height: 14px;
  border-radius: 5px;
}

.preview-card {
  flex: 1;
  height: 30px;
  border-radius: 6px;
}

.preview-watermark {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.75);
}

.sample-preview-law-firm {
  --preview-bg: linear-gradient(135deg, #e6eefc 0%, #f3f7ff 100%);
  --preview-hero: linear-gradient(120deg, #c6d7fb 0%, #d8e4ff 100%);
}

.sample-preview-roofing {
  --preview-bg: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
  --preview-hero: linear-gradient(120deg, #ddd6fe 0%, #e9e4ff 100%);
}

.sample-preview-dental {
  --preview-bg: linear-gradient(135deg, #dff6f8 0%, #ecfeff 100%);
  --preview-hero: linear-gradient(120deg, #c8f1f4 0%, #dcf8fb 100%);
}

.sample-preview-restaurant {
  --preview-bg: linear-gradient(135deg, #fdf2f2 0%, #fff8f0 100%);
  --preview-hero: linear-gradient(120deg, #f5d0d0 0%, #fce8d8 100%);
}

.sample-preview-financial {
  --preview-bg: linear-gradient(135deg, #e2f9ec 0%, #f0fdf4 100%);
  --preview-hero: linear-gradient(120deg, #cef3dc 0%, #def8e8 100%);
}

.sample-preview-nonprofit {
  --preview-bg: linear-gradient(135deg, #fde7f3 0%, #fdf2f8 100%);
  --preview-hero: linear-gradient(120deg, #fbcfe8 0%, #fce2ef 100%);
}

.sample-preview-home-services {
  --preview-bg: linear-gradient(135deg, #ffedd5 0%, #fff7ed 100%);
  --preview-hero: linear-gradient(120deg, #fed7aa 0%, #fee7c8 100%);
}

.bottom-sections-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.15rem);
}

.sample-process-section {
  padding: clamp(1.25rem, 3.4vw, 2rem);
  border: 1px solid rgba(197, 211, 225, 0.94);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 95% at 0% 0%, rgba(93, 143, 200, 0.12), transparent 58%),
    linear-gradient(160deg, #f8fbff 0%, #edf4fb 60%, #e5eef8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 10px 26px rgba(13, 34, 56, 0.06);
}

.process-hero-intro,
.process-steps {
  position: relative;
  z-index: 1;
}

.process-hero-intro {
  max-width: 760px;
  margin-bottom: clamp(0.95rem, 2.5vw, 1.5rem);
}

.process-kicker {
  display: inline-flex;
  margin: 0 0 0.65rem;
  padding: 0.28rem 0.68rem;
  border: 1px solid rgba(197, 211, 225, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #4f78a6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sample-process-section h2 {
  margin-bottom: 0.65rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

.process-hero-intro p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.sample-pricing-section {
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.pricing-intro {
  max-width: 620px;
  margin-bottom: 1.35rem;
}

.pricing-intro h2 {
  margin: 0 0 0.65rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #1c1917;
}

.pricing-intro p,
.pricing-note,
.pricing-cta p {
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-intro p {
  margin: 0;
}

.pricing-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.05rem;
}

.pricing-option {
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(192, 181, 166, 0.72);
}

.pricing-label {
  margin: 0 0 0.45rem;
  color: rgba(87, 83, 78, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pricing-option h3 {
  margin: 0 0 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.2;
  color: #292524;
}

.pricing-option h3 span {
  color: var(--text-muted);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}

.pricing-option p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.58;
}

.pricing-price {
  margin-top: 0.8rem !important;
  color: #1c1917 !important;
  font-weight: 700;
}

.pricing-note {
  max-width: 720px;
  margin: 0.35rem 0 1.15rem;
  font-size: 0.94rem;
}

.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 0.4rem;
}

.pricing-cta p {
  margin: 0;
  font-size: 0.92rem;
}

.pricing-page {
  gap: clamp(1.35rem, 3vw, 2.4rem);
}

.pricing-page--clean {
  gap: clamp(2rem, 4vw, 3.2rem);
}

/* -------------------------------------------------------------------------
   Pricing page — minimal tier layout (ChatGPT-inspired)
   ------------------------------------------------------------------------- */
body.page-pricing {
  background: #ffffff;
}

.pricing-page--minimal {
  gap: clamp(3rem, 7vw, 5.5rem);
  max-width: 1160px;
}

.ss-pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(0.25rem, 1.5vw, 0.75rem) 0 0;
}

.ss-pricing-header h1 {
  margin: 0 0 0.65rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #0a0a0a;
}

.ss-pricing-header__sub {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #737373;
}

.ss-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.ss-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.ss-pricing-card--featured {
  border-color: #0a0a0a;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
}

.ss-pricing-card__badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.32rem 0.55rem;
  border-radius: 6px;
  background: #f5f5f5;
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.ss-pricing-card__title {
  margin: 0 0 0.45rem;
  padding-right: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: #0a0a0a;
}

.ss-pricing-card--featured .ss-pricing-card__title {
  padding-right: 6.75rem;
}

.ss-pricing-card__subtitle {
  margin: 0 0 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #6b6b6b;
}

.ss-pricing-card__price {
  margin: 0 0 1.35rem;
}

.ss-pricing-card__amount {
  display: block;
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0a0a0a;
}

.ss-pricing-card__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #737373;
}

.ss-pricing-card__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.35rem;
  box-sizing: border-box;
}

.ss-pricing-card__divider {
  width: 100%;
  margin: 0 0 1.2rem;
  border: 0;
  border-top: 1px solid #ececec;
}

.ss-pricing-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.ss-pricing-card__list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.9375rem;
  line-height: 1.52;
  color: #404040;
}

.ss-pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%235d8fc8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.8 8.2 6.6 11 12.2 4.5'/%3E%3C/svg%3E") no-repeat center / contain;
}

.ss-pricing-section h2 {
  margin: 0 0 1.1rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #0a0a0a;
}

.ss-pricing-addons {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.ss-pricing-addons__wrap {
  overflow-x: auto;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.page-pricing .ss-pricing-addons .pricing-services-table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.page-pricing .ss-pricing-addons .pricing-services-table th,
.page-pricing .ss-pricing-addons .pricing-services-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #efefef;
  vertical-align: middle;
}

.page-pricing .ss-pricing-addons .pricing-services-table th:first-child,
.page-pricing .ss-pricing-addons .pricing-services-table td:first-child {
  width: 72%;
}

.page-pricing .ss-pricing-addons .pricing-services-table th:last-child,
.page-pricing .ss-pricing-addons .pricing-services-table td:last-child {
  width: 28%;
}

.page-pricing .ss-pricing-addons .pricing-services-table th {
  background: #fafafa;
  color: #525252;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.page-pricing .ss-pricing-addons .pricing-services-table td {
  color: #404040;
  font-size: 0.96875rem;
  line-height: 1.45;
}

.page-pricing .ss-pricing-addons .pricing-services-table td:last-child {
  font-weight: 600;
  color: #0a0a0a;
  white-space: nowrap;
}

.page-pricing .ss-pricing-addons .pricing-services-table tbody tr:last-child td {
  border-bottom: 0;
}

.ss-pricing-terms {
  max-width: 960px;
  margin: 0 auto;
}

.ss-pricing-terms__box {
  padding: clamp(1.5rem, 3.2vw, 2.15rem) clamp(1.35rem, 3vw, 2rem);
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.ss-pricing-terms__box h2 {
  margin: 0 0 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #efefef;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #0a0a0a;
}

.ss-pricing-terms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.25rem;
}

.ss-pricing-terms__block h3 {
  margin: 0 0 0.6rem;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0a0a0a;
}

.ss-pricing-terms__block p {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: #525252;
}

.ss-pricing-terms__block p:last-child {
  margin-bottom: 0;
}

.ss-pricing-bottom {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 0.5rem 0 0;
}

.ss-pricing-bottom h2 {
  margin: 0 0 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0a0a0a;
}

.ss-pricing-bottom p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: #737373;
}

.ss-pricing-bottom .pricing-page-actions {
  margin-top: 1.1rem;
}

@media (max-width: 959px) {
  .ss-pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .ss-pricing-terms__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.pricing-page-hero--clean {
  padding: clamp(1rem, 3vw, 2.25rem) 0 clamp(0.75rem, 2vw, 1.25rem);
  max-width: 760px;
}

.pricing-page-hero--clean h1 {
  margin: 0 0 1rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #1c1917;
}

.pricing-page-hero--clean p:last-child {
  margin: 0;
  max-width: 58ch;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.pricing-page-section {
  padding: 0;
}

.pricing-page-subsection {
  padding: 0 0 1rem;
}

.pricing-page-subsection h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #1c1917;
}

.pricing-clean-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pricing-clean-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  border: 1px solid rgba(185, 205, 227, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 252, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 26px rgba(13, 34, 56, 0.05);
}

.pricing-clean-card--featured {
  border-color: rgba(93, 143, 200, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(13, 34, 56, 0.08);
}

.pricing-clean-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(93, 143, 200, 0.12);
  color: #14304e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-clean-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.12;
  color: #1c1917;
}

.pricing-clean-price {
  margin: 0 0 0.9rem;
  color: #10253c;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-clean-price span {
  display: block;
  margin-top: 0.25rem;
  color: #63778b;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-clean-description {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-clean-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.pricing-clean-list li {
  position: relative;
  padding-left: 1rem;
  color: #44403c;
  line-height: 1.5;
}

.pricing-clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.82;
}

.pricing-clean-fit {
  margin: auto 0 1.2rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-clean-fit strong {
  color: #1c1917;
}

.pricing-clean-cta {
  align-self: flex-start;
}

.pricing-compare-wrap {
  overflow-x: auto;
  border: 1px solid rgba(185, 205, 227, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(13, 34, 56, 0.04);
}

.pricing-compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 214, 228, 0.8);
}

.pricing-compare-table th {
  background: rgba(248, 251, 255, 0.92);
  color: #1c1917;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-compare-table td {
  color: #4d6177;
  line-height: 1.45;
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-page-cta--simple {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.45rem, 4vw, 2.2rem);
  border: 1px solid rgba(185, 205, 227, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 70% at 10% 8%, rgba(93, 143, 200, 0.1), transparent 58%),
    linear-gradient(145deg, #fbfdff 0%, #eef4fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 30px rgba(13, 34, 56, 0.05);
}

.pricing-page-cta--simple h2 {
  margin: 0 0 0.7rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.12;
  color: #1c1917;
  text-align: center;
}

.pricing-page-cta--simple p {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}

.pricing-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.pricing-page-subsection--tight {
  max-width: 760px;
  padding-bottom: 1.5rem;
}

.pricing-page-subsection--tight p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.pricing-progressive-section {
  display: grid;
  gap: 1.4rem;
}

.pricing-progressive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pricing-package-card {
  border: 1px solid rgba(185, 205, 227, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(13, 34, 56, 0.05);
  overflow: hidden;
}

.pricing-package-card[open] {
  box-shadow: 0 18px 34px rgba(13, 34, 56, 0.08);
}

.pricing-package-card--featured {
  border-color: rgba(93, 143, 200, 0.42);
}

.pricing-package-card__summary {
  list-style: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.45rem, 3vw, 1.9rem);
  cursor: pointer;
}

.pricing-package-card__summary::-webkit-details-marker {
  display: none;
}

.pricing-package-card__top {
  display: grid;
  gap: 0.45rem;
}

.pricing-package-card__top h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.08;
  color: var(--brand-dark);
}

.pricing-package-card__price {
  margin: 0.15rem 0 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #17314d;
  letter-spacing: -0.045em;
}

.pricing-package-card__price span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(76, 101, 126, 0.82);
}

.pricing-package-card__description {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-package-card__highlights {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.pricing-package-card__highlights li {
  position: relative;
  padding-left: 1rem;
  color: #36506a;
  line-height: 1.5;
}

.pricing-package-card__highlights li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(93, 143, 200, 0.9);
}

.pricing-package-card__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(185, 205, 227, 0.92);
  background: #ffffff;
  color: #17314d;
  font-size: 0.96rem;
  font-weight: 700;
}

.pricing-package-card__details {
  display: grid;
  gap: 0;
  padding: 0 1.45rem 1.45rem;
}

.pricing-package-card__detail-group {
  padding: 1rem 0;
  border-top: 1px solid rgba(201, 214, 228, 0.78);
}

.pricing-package-card__detail-group h4 {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #17314d;
}

.pricing-package-card__detail-group p {
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-package-card__detail-group ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #36506a;
  line-height: 1.65;
}

.pricing-package-card__subprice {
  font-weight: 700;
  color: #17314d;
}

.pricing-package-card__actions {
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 214, 228, 0.78);
}

.pricing-services-wrap {
  overflow-x: auto;
  border: 1px solid rgba(185, 205, 227, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(13, 34, 56, 0.04);
}

.pricing-services-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.pricing-services-table th,
.pricing-services-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 214, 228, 0.78);
}

.pricing-services-table th {
  background: rgba(248, 251, 255, 0.92);
  color: #17314d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-services-table td {
  color: #4d6177;
}

.pricing-services-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-terms-list {
  display: grid;
  gap: 0.85rem;
}

.pricing-term {
  border: 1px solid rgba(185, 205, 227, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(13, 34, 56, 0.04);
  overflow: hidden;
}

.pricing-term summary {
  list-style: none;
  position: relative;
  padding: 1.1rem 3.5rem 1.1rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #17314d;
}

.pricing-term summary::-webkit-details-marker {
  display: none;
}

.pricing-term summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #5d8fc8;
}

.pricing-term[open] summary::after {
  content: "−";
}

.pricing-term__content {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid rgba(201, 214, 228, 0.78);
}

.pricing-term__content p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.68;
}

.features-page {
  gap: clamp(1.35rem, 3vw, 2.4rem);
}

.features-page-hero {
  display: grid;
  gap: 1rem;
  padding: clamp(0.9rem, 3vw, 2rem) 0 clamp(0.6rem, 1.5vw, 1rem);
  max-width: 820px;
}

.features-page-hero h1 {
  margin: 0 0 1rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.35rem, 5.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #1c1917;
}

.features-page-hero p:not(.sample-private-label) {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.features-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.features-grid-section,
.features-timeline-section {
  display: grid;
  gap: 1.2rem;
}

.features-grid-heading {
  max-width: 760px;
}

.features-grid-heading h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #1c1917;
}

.features-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.features-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  border: 1px solid rgba(185, 205, 227, 0.92);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgba(93, 143, 200, 0.1), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 252, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 26px rgba(13, 34, 56, 0.05);
}

.features-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93, 143, 200, 0.18) 0%, rgba(13, 34, 56, 0.08) 100%);
  border: 1px solid rgba(185, 205, 227, 0.95);
}

.features-card h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.14;
  color: #1c1917;
}

.features-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
}

.features-card-grid--three .features-card {
  min-height: 0;
}

.features-card--compact {
  gap: 0.55rem;
}

.features-card--compact .features-card__icon {
  display: none;
}

.features-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.features-step {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1.05rem, 3vw, 1.3rem);
  border: 1px solid rgba(197, 211, 225, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(13, 34, 56, 0.04);
}

.features-step__number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, #89b1dd 100%);
  color: #f8fbff;
  font-size: 0.86rem;
  font-weight: 800;
}

.features-step h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #1c1917;
}

.features-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.58;
}

.features-page-cta {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border: 1px solid rgba(197, 211, 225, 0.88);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 28px rgba(13, 34, 56, 0.06);
}

.features-page-cta h2 {
  margin: 0 0 0.7rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.12;
  color: #1c1917;
  text-align: center;
}

.features-page-cta p {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}

.production-page {
  gap: clamp(1.35rem, 3vw, 2.4rem);
}

.production-page-hero {
  padding: clamp(0.9rem, 3vw, 2rem) 0 clamp(0.25rem, 1vw, 0.55rem);
  max-width: 840px;
}

.production-page-hero h1 {
  margin: 0 0 1rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.35rem, 5.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #1c1917;
}

.production-page-hero p:not(.sample-private-label) {
  margin: 0;
  max-width: 74ch;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.production-sites-section {
  display: grid;
  gap: 1rem;
}

.production-site-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(214, 204, 194, 0.88);
  border-radius: 18px;
  background: rgba(255, 251, 247, 0.72);
  box-shadow: 0 2px 16px rgba(17, 37, 58, 0.04);
}

.production-site-card.production-site-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.production-site-card.production-site-card--link:focus-visible {
  outline: 2px solid var(--brand, #3d6ea8);
  outline-offset: 3px;
}

.production-site-media {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.65rem;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 204, 194, 0.78);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(145deg, #f8f2ea 0%, #efe4d6 100%);
}

.production-site-media:not(:has(img)) {
  min-height: 168px;
}

.production-site-media::before {
  content: attr(data-fallback);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  color: #7a7168;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.production-site-media img {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(420px, 58vh);
  object-fit: contain;
  object-position: top center;
  background: #ffffff;
  border: 1px solid rgba(182, 199, 218, 0.95);
  border-radius: 0;
  box-shadow: 0 4px 14px rgba(13, 34, 56, 0.08);
  /* Prefer higher-quality downscaling when the browser supports it */
  image-rendering: high-quality;
}

.production-site-copy {
  padding: clamp(1.15rem, 3vw, 1.55rem);
}

.production-site-card h2 {
  margin: 0 0 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.15;
  color: #292524;
}

.production-site-card p:not(.pricing-label) {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
}

.production-site-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.production-site-card--link:hover .production-site-link {
  text-decoration: underline;
}

/* --- Features & Live Sites: centered layout, cleaner cards (content unchanged) --- */
.features-page--polish {
  gap: clamp(2rem, 5vw, 3.5rem);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.features-page--polish .features-page-hero {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.25rem, 3.5vw, 2.25rem) 0 0.35rem;
}

.features-page--polish .features-page-hero p:not(.sample-private-label) {
  margin-left: auto;
  margin-right: auto;
}

.features-page--polish .features-page-hero__actions {
  justify-content: center;
  margin-top: 0.35rem;
}

.features-page--polish .features-grid-heading {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.features-page--polish .features-grid-heading .summit-section-heading__eyebrow {
  margin: 0 auto 0.65rem;
}

.features-page--polish .features-card {
  background: #ffffff;
  border: 1px solid rgba(205, 218, 232, 0.95);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(13, 34, 56, 0.05);
}

.features-page--polish .features-card__icon {
  background: linear-gradient(135deg, rgba(93, 143, 200, 0.14) 0%, rgba(93, 143, 200, 0.05) 100%);
  border-color: rgba(197, 211, 225, 0.85);
}

.features-page--polish .features-step {
  background: #ffffff;
  border: 1px solid rgba(205, 218, 232, 0.9);
  box-shadow: 0 2px 10px rgba(13, 34, 56, 0.04);
}

.production-page--polish {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(2rem, 5vw, 3rem);
}

.production-page--polish .production-page-hero {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.25rem, 3.5vw, 2.25rem) 0 0.25rem;
}

.production-page--polish .production-page-hero p:not(.sample-private-label) {
  margin-left: auto;
  margin-right: auto;
}

.production-page--polish .features-page-small {
  font-size: 0.92rem;
  color: #5f7287;
  margin-top: 0.75rem;
}

.production-page--polish .production-site-card {
  border: 1px solid rgba(205, 218, 232, 0.92);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(13, 34, 56, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.production-page--polish .production-site-media {
  border-bottom-color: rgba(205, 218, 232, 0.88);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.9), transparent 40%),
    linear-gradient(165deg, #f0f5fa 0%, #e4edf6 100%);
}

.production-page--polish .production-site-card--link:hover {
  border-color: rgba(93, 143, 200, 0.55);
  box-shadow: 0 8px 28px rgba(13, 34, 56, 0.1);
}

.production-page--polish .production-site-media img {
  max-height: min(440px, 56vh);
}

.production-page--polish .production-site-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.production-page--polish .production-site-card p:not(.pricing-label) {
  flex: 1 1 auto;
}

.production-page--polish .production-site-link {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.production-page--polish .production-site-link::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-bottom: 0.12em;
  opacity: 0.85;
}

@media (max-width: 759px) {
  .features-page--polish .features-timeline {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) and (max-width: 1023px) {
  .features-page--polish .features-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-page--polish .production-sites-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .features-page--polish .features-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.about-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-band__left {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.9rem;
}

.about-band__left h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.05rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--brand-dark);
  max-width: 12ch;
}

.about-band__support {
  margin: 0;
  max-width: 34ch;
  color: #536b82;
  font-size: 1rem;
  line-height: 1.72;
}

.about-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.about-band__right {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-band__right p {
  margin: 0;
  max-width: 58ch;
  color: #36506a;
  line-height: 1.68;
}

.about-band__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #17314d;
}

.about-band__trust::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(93, 143, 200, 0.65);
}

.about-page {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.about-proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  padding-bottom: clamp(2rem, 5vw, 3.75rem);
}

.about-proof-card {
  border: 1px solid rgba(205, 218, 232, 0.92);
  border-radius: 18px;
  background: #ffffff;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  box-shadow: 0 2px 12px rgba(13, 34, 56, 0.05);
}

.about-proof-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.24rem;
  line-height: 1.2;
  color: #1f3145;
}

.about-proof-card p {
  margin: 0;
  color: #36506a;
  line-height: 1.6;
}

.about-page--redesign {
  max-width: 1120px;
  margin-top: clamp(1.4rem, 4vw, 2.6rem);
  margin-left: auto;
  margin-right: auto;
  gap: clamp(1.5rem, 4vw, 2.7rem);
  padding-top: 0;
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.about-hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border: 1px solid rgba(195, 211, 227, 0.96);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 120% 100% at 0% 0%, rgba(93, 143, 200, 0.16), transparent 45%),
    linear-gradient(145deg, #f9fcff 0%, #eff5fc 100%);
  box-shadow: 0 10px 28px rgba(13, 34, 56, 0.07);
}

.about-hero-card__profile {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.45rem;
  padding: 0.95rem;
  border: 1px solid rgba(188, 206, 224, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.about-hero-card__headshot {
  width: min(142px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 14px;
  border: 1px solid rgba(188, 206, 224, 0.95);
}

.about-hero-card__name {
  margin: 0.35rem 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f3145;
}

.about-hero-card__role {
  margin: 0;
  color: #4b627a;
  font-size: 0.94rem;
}

.about-hero-card__meta {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.about-hero-card__meta li {
  font-size: 0.88rem;
  color: #25405b;
  font-weight: 600;
}

.about-hero-card__copy h1 {
  margin: 0.4rem 0 0.8rem;
  max-width: 18ch;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #162f49;
}

.about-hero-card__lead {
  margin: 0;
  max-width: 66ch;
  color: #33506b;
  line-height: 1.72;
}

.about-hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-story-card {
  border: 1px solid rgba(205, 218, 232, 0.92);
  border-radius: 18px;
  background: #ffffff;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  box-shadow: 0 2px 12px rgba(13, 34, 56, 0.05);
}

.about-story-card h2 {
  margin: 0 0 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #20364f;
}

.about-story-card p {
  margin: 0;
  color: #36506a;
  line-height: 1.64;
}

.about-story-card p + p {
  margin-top: 0.75rem;
}

.about-skills-panel {
  border: 1px solid rgba(196, 213, 230, 0.94);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 90% 120% at 100% 0%, rgba(93, 143, 200, 0.09), transparent 48%),
    #ffffff;
  padding: clamp(1.05rem, 2.6vw, 1.5rem);
}

.about-skills-panel h2 {
  margin: 0 0 0.85rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  color: #1f3145;
}

.about-skill-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.about-skill-grid li {
  position: relative;
  padding: 0.66rem 0.78rem 0.66rem 1.55rem;
  border: 1px solid rgba(205, 218, 232, 0.85);
  border-radius: 12px;
  background: rgba(248, 252, 255, 0.92);
  color: #2a4662;
  line-height: 1.42;
}

.about-skill-grid li::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--brand);
}

.closing-credibility {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.closing-credibility li {
  position: relative;
  padding-left: 1rem;
  color: #36506a;
  line-height: 1.45;
  font-size: 0.95rem;
}

.closing-credibility li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.82;
}

.closing-headshot {
  display: block;
  width: min(108px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 12px;
  border: 1px solid rgba(197, 211, 225, 0.95);
  box-shadow:
    0 2px 6px rgba(13, 34, 56, 0.05),
    0 8px 16px rgba(13, 34, 56, 0.08);
}

.closing-headshot--brand {
  width: min(132px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(185, 205, 227, 0.96);
}

.mockup-form-card {
  padding: clamp(1.2rem, 3vw, 1.9rem);
  border: 1px solid rgba(197, 211, 225, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 70% at 10% 8%, rgba(93, 143, 200, 0.12), transparent 58%),
    linear-gradient(145deg, #f8fbff 0%, #ebf3fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 32px rgba(13, 34, 56, 0.065);
}

.mockup-form-header h2 {
  margin: 0 0 0.55rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.12;
  color: var(--brand-dark);
}

.mockup-request-form {
  display: grid;
  gap: 0.95rem;
}

.mockup-form-helper {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.mockup-form-helper--small {
  margin-bottom: 1.15rem;
  font-size: 0.9rem;
  color: rgba(85, 105, 127, 0.82);
}

.mockup-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.mockup-request-form label {
  display: grid;
  gap: 0.44rem;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.mockup-request-form input,
.mockup-request-form select,
.mockup-request-form textarea {
  width: 100%;
  border: 1px solid rgba(197, 211, 225, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.92rem 0.92rem;
  font: inherit;
  color: var(--text);
}

.mockup-request-form textarea {
  resize: vertical;
  min-height: 140px;
}

.mockup-request-form input:focus,
.mockup-request-form select:focus,
.mockup-request-form textarea:focus {
  outline: 2px solid rgba(61, 90, 122, 0.32);
  outline-offset: 1px;
  border-color: rgba(61, 90, 122, 0.48);
}

.mockup-notes-label {
  margin-top: 0.95rem;
}

.mockup-form-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.9rem;
  align-items: center;
}

.mockup-form-actions .primary-btn {
  padding: 0.72rem 1.18rem;
}

.mockup-form-status {
  margin: 0;
  font-size: 0.92rem;
  color: #57534e;
}

.mockup-form-status.is-success {
  color: #0f5132;
}

.mockup-form-status.is-error {
  color: #7f1d1d;
}

.mockup-next-steps {
  margin-top: 1.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(192, 181, 166, 0.64);
}

.mockup-next-steps__title {
  margin: 0 0 0.55rem;
  color: #292524;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mockup-next-steps__strip {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.mockup-next-steps__strip li {
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(192, 181, 166, 0.45);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--text-muted);
  line-height: 1.5;
}

.mockup-next-steps__strip li span {
  color: #292524;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.78rem;
}

.process-step {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(197, 211, 225, 0.9);
  border-radius: 18px;
  padding: 1rem 1.05rem 1.1rem;
  background: rgba(248, 251, 255, 0.82);
  box-shadow: 0 6px 18px rgba(13, 34, 56, 0.04);
}

.process-step-number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, #84addb 100%);
  color: #faf8f5;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
}

.private-footer {
  margin-top: 2rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(197, 211, 225, 0.72);
  color: #587aa0;
  font-size: 0.85rem;
}

.private-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.private-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.18s ease;
}

.private-footer__brand-link:hover,
.private-footer__brand-link:focus-visible {
  opacity: 0.88;
}

.private-footer__brand-link:focus-visible {
  outline: 2px solid rgba(93, 143, 200, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

.private-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0.35rem;
  border: 1px solid rgba(205, 218, 232, 0.95);
  border-radius: 12px;
  background: #ffffff;
}

.private-footer__logo {
  display: block;
  width: 100%;
  max-width: 34px;
  height: auto;
}

.private-footer__brand-copy {
  display: grid;
  gap: 0.05rem;
  text-align: left;
}

.private-footer__brand-name {
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.private-footer__brand-meta {
  color: rgba(85, 105, 127, 0.84);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.private-footer__note {
  margin: 0;
  color: #6a7f94;
  font-size: 0.8rem;
}

.private-footer__email {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

.private-footer__email:hover,
.private-footer__email:focus-visible {
  text-decoration: underline;
}

.private-footer__email:focus-visible {
  outline: 2px solid rgba(93, 143, 200, 0.45);
  outline-offset: 3px;
  border-radius: 4px;
}

.floating-demo-btn {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  max-width: 56px;
  padding: 0.48rem 0.62rem;
  overflow: hidden;
  color: #faf8f5;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #18385a 100%);
  border: 1px solid #102740;
  border-radius: 999px;
  box-shadow:
    0 10px 22px rgba(13, 34, 56, 0.22),
    0 18px 36px rgba(13, 34, 56, 0.16);
  transition: max-width 0.24s ease, background-color 0.18s ease, transform 0.18s ease;
}

.floating-demo-btn:hover,
.floating-demo-btn:focus-visible {
  max-width: 210px;
  background: linear-gradient(135deg, #163250 0%, #0d2238 100%);
  transform: translateY(-2px);
}

.floating-demo-btn:focus-visible {
  outline: 2px solid #faf8f5;
  outline-offset: 3px;
}

.floating-demo-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.floating-demo-text {
  opacity: 0;
  transform: translateX(4px);
  font-size: 0.92rem;
  font-weight: 700;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.floating-demo-btn:hover .floating-demo-text,
.floating-demo-btn:focus-visible .floating-demo-text {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .floating-demo-btn,
  .floating-demo-text {
    transition: none;
  }
}

@media (min-width: 760px) {
  .showcase-page {
    padding: 0 24px 64px;
    gap: 18px;
  }

  .sample-hero-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
    gap: clamp(1.4rem, 3.6vw, 3rem);
  }

  .sample-hero-aside {
    justify-content: flex-end;
  }

  .sample-hero-bar {
    padding: 0.65rem 0;
  }

  .sample-hero-bar__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .sample-hero-bar__item {
    padding: 1rem 1rem 0.95rem 1.15rem;
  }

  .private-showcase-nav__links {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
  }

  .private-showcase-menu {
    display: none;
  }

  .bottom-sections-wrap {
    gap: clamp(1.8rem, 3vw, 2.5rem);
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .about-band {
    grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(1.2rem, 3vw, 2rem);
  }

  .about-band__left {
    align-self: start;
  }

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

  .mockup-request-form > .mockup-notes-label,
  .mockup-request-form > .mockup-form-actions {
    grid-column: 1 / -1;
  }

  .pricing-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .pricing-clean-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

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

  .features-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .production-sites-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .mockup-next-steps__strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 1080px) {
  .pricing-clean-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-progressive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .about-band {
    grid-template-columns: minmax(300px, 0.46fr) minmax(0, 0.54fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .about-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .about-hero-card {
    grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
    align-items: start;
  }

  .about-story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .about-skill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .mockup-form-card {
    padding: 1.8rem;
  }

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

/* Homepage redesign */
.summit-home-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 96px;
  gap: 0;
  --ss-credential-height: 74px;
}

.ss-home-hero {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: #eef4fa;
}

.ss-home-hero__inner {
  width: calc(100% - 48px);
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: center;
  gap: 36px;
  min-height: calc(100svh - 60px - 60px);
  padding-bottom: 0;
}

.ss-home-hero__copy {
  min-width: 0;
  margin-left: 200px;
  transform: translateY(-34px);
}

.ss-home-hero__eyebrow {
  margin: 0 0 1.2rem;
  color: #3667b5;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ss-home-hero__copy h1 {
  margin: 0 0 1.4rem;
  max-width: 620px;
  color: #0c2140;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(4rem, 5.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.ss-home-hero__lead {
  max-width: 500px;
  margin: 0 0 2rem;
  color: #2f4157;
  font-size: 1.08rem;
  line-height: 1.72;
}

.ss-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ss-home-hero__actions .primary-btn,
.ss-home-hero__actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 196px;
  padding: 0.9rem 1.65rem;
  border-radius: 12px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  box-shadow: none;
}

.ss-home-hero__actions .secondary-btn {
  background: #ffffff;
  border-color: rgba(191, 204, 219, 0.88);
}

.ss-home-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  position: relative;
  transform: translateY(-28px);
}

.ss-home-hero__laptop {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: 100px;
  transform: none;
}

.ss-home-hero__laptop::before,
.ss-home-hero__laptop::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}

.ss-home-hero__laptop::before {
  width: 320px;
  height: 220px;
  right: 62px;
  top: 118px;
  background: rgba(93, 143, 200, 0.17);
}

.ss-home-hero__laptop::after {
  width: 250px;
  height: 170px;
  right: 8px;
  top: 52px;
  background: rgba(13, 34, 56, 0.09);
}

.ss-home-hero__laptop img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 14px 18px rgba(13, 34, 56, 0.07))
    drop-shadow(0 34px 34px rgba(13, 34, 56, 0.12));
}

.ss-home-credentials {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
}

.ss-home-credentials__inner {
  width: calc(100% - 48px);
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(205, 218, 232, 0.94);
  border-bottom: 1px solid rgba(205, 218, 232, 0.94);
}

.ss-home-credentials__item {
  min-height: var(--ss-credential-height);
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  color: #51657c;
}

.ss-home-credentials__item + .ss-home-credentials__item {
  border-left: 1px solid rgba(214, 224, 236, 0.92);
}

.ss-home-credentials__item strong {
  color: #13273d;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.summit-home-samples {
  padding-top: 104px;
  background: #eef4fa;
}

.summit-home-shell {
  background: #eef4fa;
}

.summit-section-heading {
  max-width: 720px;
  margin-bottom: 1.2rem;
}

.summit-section-heading__eyebrow {
  margin: 0 0 0.7rem;
  color: #567ba5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.summit-section-heading h2 {
  margin: 0 0 0.65rem;
  color: #102235;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.05;
}

.summit-section-heading p {
  margin: 0;
  color: #5f7287;
  line-height: 1.68;
}

.summit-samples-section,
.summit-form-section {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.summit-sample-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.summit-sample-card {
  overflow: hidden;
  border: 1px solid rgba(197, 211, 225, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(13, 34, 56, 0.06);
}

.summit-sample-card__preview {
  padding: 1rem;
  background: linear-gradient(160deg, #eef4fb 0%, #e2ecf7 100%);
}

.summit-sample-card__preview--law {
  background: linear-gradient(160deg, #eef2f7 0%, #e0e8f2 100%);
}

.summit-sample-card__preview--campaign {
  background: linear-gradient(160deg, #eef4ff 0%, #dce8f8 100%);
}

.summit-sample-card__preview--service {
  background: linear-gradient(160deg, #eef5f9 0%, #e1edf4 100%);
}

.summit-mini-browser {
  overflow: hidden;
  border: 1px solid rgba(191, 204, 219, 0.88);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(13, 34, 56, 0.1);
}

.summit-mini-browser__topbar {
  height: 30px;
  border-bottom: 1px solid rgba(205, 218, 232, 0.82);
  background:
    radial-gradient(circle at 18px 15px, rgba(93, 143, 200, 0.35) 0 4px, transparent 4px),
    radial-gradient(circle at 34px 15px, rgba(93, 143, 200, 0.24) 0 4px, transparent 4px),
    radial-gradient(circle at 50px 15px, rgba(93, 143, 200, 0.18) 0 4px, transparent 4px),
    #f9fbfe;
}

.summit-mini-browser__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(100px, 0.95fr);
  gap: 0.8rem;
  padding: 1rem;
  background: linear-gradient(145deg, #152b44 0%, #263f5e 100%);
}

.summit-mini-browser__hero-copy span,
.summit-mini-browser__campaign-copy span,
.summit-mini-browser__service-copy span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: rgba(220, 230, 241, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summit-mini-browser__hero-copy strong,
.summit-mini-browser__campaign-copy strong,
.summit-mini-browser__service-copy strong {
  display: block;
  color: #ffffff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.08;
}

.summit-mini-browser__hero-form {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0 24%, transparent 24% 34%, rgba(255, 255, 255, 0.86) 34% 45%, transparent 45% 55%, rgba(255, 255, 255, 0.82) 55% 66%, transparent 66% 76%, rgba(255, 255, 255, 0.78) 76% 86%, transparent 86%);
  border: 1px solid rgba(214, 226, 238, 0.3);
}

.summit-mini-browser__tiles,
.summit-mini-browser__service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.85rem 1rem 1rem;
}

.summit-mini-browser__tiles span,
.summit-mini-browser__service-cards span {
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5f9fe 0%, #e9f0f8 100%);
  border: 1px solid rgba(208, 220, 233, 0.8);
}

.summit-mini-browser__campaign-banner {
  height: 94px;
  background: linear-gradient(145deg, #19314c 0%, #365782 100%);
}

.summit-mini-browser__campaign-copy {
  padding: 1rem 1rem 0.65rem;
}

.summit-mini-browser__campaign-copy strong,
.summit-mini-browser__campaign-copy p {
  color: #10253c;
}

.summit-mini-browser__campaign-copy p {
  margin: 0.5rem 0 0;
  color: #64758a;
  font-size: 0.76rem;
  line-height: 1.45;
}

.summit-mini-browser__campaign-actions {
  display: flex;
  gap: 0.55rem;
  padding: 0 1rem 1rem;
}

.summit-mini-browser__campaign-actions span {
  display: inline-flex;
  width: 88px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #edf4fb 0%, #dde8f4 100%);
  border: 1px solid rgba(198, 211, 226, 0.84);
}

.summit-mini-browser__service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 0.8rem;
  padding: 1rem;
  background: linear-gradient(145deg, #f2f7fc 0%, #e6eef8 100%);
}

.summit-mini-browser__service-copy strong {
  color: #13273d;
}

.summit-mini-browser__service-image {
  border-radius: 14px;
  background: linear-gradient(145deg, #7d8f82 0%, #c4d1c5 100%);
}

.summit-sample-card__body {
  padding: 1rem 1rem 1.1rem;
}

.summit-sample-card__body h3 {
  margin: 0 0 0.45rem;
  color: #13273d;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.48rem;
  line-height: 1.1;
}

.summit-sample-card__body p {
  margin: 0;
  color: #64788d;
  line-height: 1.62;
}

.summit-sample-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.summit-sample-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0f6fc;
  border: 1px solid rgba(197, 211, 225, 0.88);
  color: #4d6680;
  font-size: 0.74rem;
  font-weight: 700;
}

.summit-process-section {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.summit-process-section--fullbleed {
  width: auto;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
}

.summit-process-section__contain {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(2.8rem, 6vw, 5rem) 24px;
}

.summit-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(197, 211, 225, 0.72);
}

.summit-process-card {
  padding: clamp(1.35rem, 3vw, 2rem) 0;
  border: 0;
  border-bottom: 1px solid rgba(197, 211, 225, 0.72);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.summit-process-card__step {
  display: block;
  margin-bottom: 1.25rem;
  color: rgba(93, 143, 200, 0.82);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
}

.summit-process-card h3 {
  margin: 0 0 0.65rem;
  color: #13273d;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.summit-process-card p {
  margin: 0;
  color: #63788d;
  line-height: 1.72;
}

.summit-form-section {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.6rem);
  align-items: start;
  padding: clamp(2.6rem, 6vw, 5rem) 0 0;
}

.summit-form-section__intro {
  max-width: 540px;
  display: grid;
  gap: 0.9rem;
}

.summit-form-section__intro h2 {
  margin: 0;
  color: #102235;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.summit-form-section__intro p:last-child {
  margin: 0;
  color: #63778b;
  line-height: 1.66;
}

.summit-form-section__trust {
  font-weight: 600;
  color: #17314d;
}

.summit-form-intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.summit-form-intro-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  white-space: nowrap;
}

.mockup-form-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(207, 219, 232, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 24px 50px rgba(13, 34, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.mockup-request-form {
  display: grid;
  gap: 1.35rem;
}

.mockup-notes-label__hint {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #63778b;
  line-height: 1.5;
  margin-top: -0.05rem;
}

.mockup-form-grid {
  display: grid;
  gap: 1rem;
}

.mockup-request-form label,
.mockup-notes-label {
  display: grid;
  gap: 0.45rem;
  color: #17314d;
  font-size: 0.92rem;
  font-weight: 700;
}

.mockup-request-form input,
.mockup-request-form select,
.mockup-request-form textarea {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(197, 211, 225, 0.9);
  border-radius: 14px;
  min-height: 54px;
  padding: 0.95rem 1rem;
  color: #17314d;
  font-size: 0.98rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.mockup-request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5d8fc8 50%),
    linear-gradient(135deg, #5d8fc8 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.mockup-request-form textarea {
  min-height: 160px;
  resize: vertical;
}

.mockup-request-form input:focus,
.mockup-request-form select:focus,
.mockup-request-form textarea:focus {
  outline: none;
  border-color: rgba(93, 143, 200, 0.92);
  box-shadow: 0 0 0 4px rgba(93, 143, 200, 0.14);
}

.mockup-form-actions {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.mockup-form-actions .primary-btn {
  min-height: 56px;
}

.mockup-form-status {
  min-height: 1.25rem;
}

@media (min-width: 760px) {
  .summit-sample-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summit-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .summit-process-card {
    padding: 0 clamp(1.25rem, 2.2vw, 2rem);
    border-bottom: 0;
    border-right: 1px solid rgba(197, 211, 225, 0.72);
  }

  .summit-process-card:last-child {
    border-right: 0;
  }

  .summit-form-section {
    grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .mockup-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
  }

  .mockup-notes-label,
  .mockup-form-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 759px) {
  .summit-home-shell {
    padding: 0 18px 56px;
    --ss-credential-height: 60px;
  }

  .ss-home-hero {
    padding: 0;
  }

  .summit-process-section__contain {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ss-home-hero__inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
    padding-bottom: 0;
  }

  .ss-home-hero__copy,
  .ss-home-hero__visual {
    transform: none;
  }

  .ss-home-hero__copy h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 10vw, 4rem);
  }

  .ss-home-hero__copy {
    margin-left: 0;
  }

  .ss-home-hero__lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .ss-home-hero__actions .primary-btn,
  .ss-home-hero__actions .secondary-btn {
    min-height: 52px;
    min-width: 0;
    padding: 0.85rem 1.2rem;
  }

  .ss-home-hero__visual {
    justify-content: center;
  }

  .ss-home-hero__laptop {
    max-width: 100%;
    margin-right: 0;
    transform: none;
  }

  .ss-home-hero__laptop::before {
    width: 210px;
    height: 150px;
    right: 50%;
    top: 84px;
    transform: translateX(36%);
  }

  .ss-home-hero__laptop::after {
    width: 160px;
    height: 115px;
    right: 50%;
    top: 42px;
    transform: translateX(50%);
  }

  .ss-home-credentials__inner {
    width: calc(100% - 36px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ss-home-credentials__item {
    min-height: 60px;
    padding: 0.85rem 0.9rem;
  }

  .ss-home-credentials__item:nth-child(odd) + .ss-home-credentials__item {
    border-left: 1px solid rgba(214, 224, 236, 0.92);
  }

  .ss-home-credentials__item:nth-child(3),
  .ss-home-credentials__item:nth-child(4) {
    border-top: 1px solid rgba(214, 224, 236, 0.92);
  }

  .summit-home-samples {
    padding-top: 72px;
  }

  .mockup-form-grid {
    grid-template-columns: 1fr;
  }
}
