:root {
  --bg: #fff8fb;
  --surface: #ffffff;
  --surface-soft: #fff0f7;
  --ink: #171927;
  --muted: #667085;
  --line: #f2d7e4;
  --blue: #ff2d8d;
  --pink: #ff2d8d;
  --blue-dark: #d80b68;
  --teal: #ff6fb2;
  --violet: #b91ccf;
  --green: #18a058;
  --shadow: 0 18px 42px rgba(216, 11, 104, 0.12);
  --shadow-soft: 0 10px 26px rgba(23, 25, 39, 0.07);
  --radius: 8px;
  --max: 1180px;
  --page-gutter: 32px;
  --container-width: min(var(--max), calc(100% - var(--page-gutter)));
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 45, 141, 0.11), transparent 30rem),
    linear-gradient(180deg, #fff, var(--bg) 36rem);
  background-attachment: fixed;
  line-height: 1.5;
  font-weight: var(--font-regular);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-container {
  width: var(--container-width);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 6px max(24px, calc((100% - var(--max)) / 2 + 16px));
  border-bottom: 1px solid rgba(242, 215, 228, 0.86);
  background: rgba(251, 248, 250, 0.96);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-logo {
  display: block;
  width: 78px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: var(--font-medium);
}

.desktop-nav a:hover,
.desktop-nav .nav-link-button:hover {
  color: var(--blue-dark);
}

.nav-link-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: var(--font-semibold);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--blue-dark);
}

.button {
  padding: 0 20px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 28px rgba(216, 11, 104, 0.24);
}

.button-secondary {
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.button-light {
  color: var(--blue-dark);
  background: #fff;
}

.full-button {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--blue-dark);
}

.mobile-panel {
  position: fixed;
  inset: 78px 16px auto 16px;
  z-index: 29;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-panel.is-open {
  display: flex;
}

.mobile-panel a,
.mobile-panel button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-weight: var(--font-medium);
  text-align: left;
}

.mobile-panel a:hover,
.mobile-panel button:hover {
  background: var(--bg);
}

.section-shell {
  width: var(--container-width);
  margin: 0 auto;
}

.section-shell.page-container {
  width: var(--container-width);
}

.hero.section-shell.page-container {
  width: min(1440px, calc(100% - var(--page-gutter)));
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1440px, calc(100% - var(--page-gutter)));
  height: clamp(560px, 70vh, 720px);
  min-height: 560px;
  max-height: 720px;
  padding: 72px 0 78px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 42% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 251, 0.92) 58%, rgba(255, 248, 251, 0) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  z-index: 0;
  width: 34%;
  height: 54%;
  border-radius: 50%;
  background: rgba(255, 45, 141, 0.08);
  filter: blur(44px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 34px 0 34px 6px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(3rem, 4.45vw, 4.55rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: normal;
  font-weight: var(--font-bold);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.08;
  font-weight: var(--font-semibold);
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

html[lang="zh-CN"] .desktop-nav {
  font-weight: var(--font-medium);
}

html[lang="zh-CN"] .nav-cta,
html[lang="zh-CN"] .button {
  font-weight: var(--font-medium);
}

html[lang="zh-CN"] .hero-copy {
  max-width: 500px;
}

html[lang="zh-CN"] .hero-copy h1 {
  max-width: 500px;
  font-size: clamp(2.65rem, 3.75vw, 3.85rem);
  line-height: 1.12;
  font-weight: var(--font-bold);
  text-wrap: balance;
  white-space: normal;
}

html[lang="zh-CN"] .hero-subtitle {
  max-width: 520px;
  margin-top: 16px;
  font-size: clamp(1rem, 1.32vw, 1.13rem);
  line-height: 1.72;
}

html[lang="zh-CN"] .hero-lede {
  margin-top: 14px;
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
  line-height: 1.28;
  font-weight: var(--font-medium);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.included-grid span,
.mini-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(242, 215, 228, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: var(--font-medium);
}



.hero-visual {
  position: absolute;
  inset: 4px 0 8px 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual::before {
  right: 4%;
  top: 18%;
  width: 46%;
  height: 58%;
  border-radius: 44% 56% 50% 50% / 42% 40% 60% 58%;
  background: radial-gradient(circle at 50% 42%, rgba(255, 45, 141, 0.14), rgba(255, 240, 247, 0.68) 58%, rgba(255, 255, 255, 0) 78%);
  filter: blur(12px);
}

.hero-visual::after {
  right: 6%;
  bottom: 12%;
  width: 38%;
  height: 18%;
  border-radius: 999px;
  background: rgba(216, 11, 104, 0.09);
  filter: blur(28px);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  mix-blend-mode: normal;
  filter: saturate(1.02);
}

.hero-card,
.pricing-card,
.base-package,
.estimate-card,
.contact-form {
  border: 1px solid rgba(242, 215, 228, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}

.card-topline,
.package-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-topline span,
.plan-name {
  color: var(--muted);
  font-weight: var(--font-semibold);
}

.card-topline strong {
  color: var(--blue-dark);
  font-size: 0.98rem;
}



.price-lockup {
  display: grid;
  gap: 4px;
  margin: 28px 0;
}

.price-lockup span {
  color: var(--muted);
  font-weight: var(--font-bold);
}

.price-lockup strong {
  font-size: clamp(4rem, 10vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--blue-dark);
}

.price-lockup.compact {
  margin: 12px 0 22px;
}

.price-lockup.compact strong {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
}

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


.hero-card .check-list {
  margin-top: 24px;
}

.compact-list li {
  font-size: 0.96rem;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: var(--font-semibold);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-weight: var(--font-bold);
}

.section-block {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.left-heading {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.contact-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading h2 span {
  display: inline-block;
}

#why .section-heading {
  max-width: 980px;
}

#why .section-heading h2 {
  font-size: clamp(2rem, 3.15vw, 2.75rem);
  text-wrap: normal;
  white-space: nowrap;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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


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

.benefit-card,
.example-card,
.process-card,
.addon-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 22px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-weight: var(--font-bold);
}

.benefit-card h3,
.process-card h3,
.example-card h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
}

.benefit-card p,
.process-card p,
.example-card p,
.addon-copy {
  margin: 0;
  color: var(--muted);
}

.content-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.content-chip-list span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 45, 141, 0.08);
  font-size: 0.76rem;
  font-weight: var(--font-semibold);
}

.pricing-band {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff, var(--surface-soft));
  border-block: 1px solid var(--line);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 42px;
}

.pricing-layout .section-heading {
  margin: 0;
  text-align: left;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pricing-layout .button {
  margin-top: 0;
}

.details-link-button {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 14px;
  border: 0;
  border-bottom: 1px solid rgba(216, 11, 104, 0.35);
  padding: 0 0 3px;
  color: var(--blue-dark);
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: var(--font-semibold);
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.details-link-button:hover {
  color: var(--pink);
  border-color: var(--pink);
  transform: translateY(-1px);
}

.pricing-card-detail {
  margin-top: 4px;
}

.custom-quote-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.pricing-card {
  padding: 28px;
}

.two-col-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.soft-note,
.fine-print {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 26px;
}

.base-package {
  padding: 24px;
  margin-bottom: 18px;
}

.package-title strong {
  color: var(--blue-dark);
  font-size: 1.5rem;
}

.locked-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--font-semibold);
}

.locked-check input,
.addon-card input {
  accent-color: var(--blue);
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-grid span {
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.83rem;
}

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

.addon-card {
  display: flex;
  gap: 12px;
  min-height: 168px;
  padding: 18px;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.addon-card:hover,
.addon-card.is-selected {
  border-color: rgba(255, 45, 141, 0.48);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.addon-card.is-selected {
  background: linear-gradient(180deg, #fff, #fff0f7);
}

.addon-card input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.addon-content {
  display: grid;
  gap: 8px;
}

.addon-title {
  font-size: 1.05rem;
  font-weight: var(--font-semibold);
}

.addon-content strong {
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.small-tag {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 45, 141, 0.1);
  font-size: 0.78rem;
  font-weight: var(--font-semibold);
}

.estimate-card {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.estimate-card > strong {
  display: block;
  margin: 4px 0 14px;
  color: var(--blue-dark);
  font-size: 3.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.selected-summary {
  min-height: 76px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: var(--font-semibold);
}

.selected-summary span {
  display: block;
  margin-top: 4px;
}

.included-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.included-grid span {
  padding: 0 14px;
}


.examples-section {
  padding: 92px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.example-card {
  overflow: hidden;
}

.example-preview {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  position: relative;
}

.example-preview[href] {
  display: block;
  min-height: 220px;
  overflow: hidden;
  cursor: pointer;
}

.example-preview[href] img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease, filter 260ms ease;
}

.example-preview[href]::before,
.example-preview[href]::after {
  display: none;
}

.example-preview[href]::before {
  content: "";
}

.preview-open-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(10, 18, 48, 0.78);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: var(--font-medium);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.example-preview[href]:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.example-preview[href]:hover .preview-open-label {
  opacity: 1;
  transform: translateY(0);
  background: rgba(216, 11, 104, 0.86);
}

.example-preview::before,
.example-preview::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.example-preview::before {
  top: 30px;
  height: 46px;
}

.example-preview::after {
  top: 94px;
  height: 72px;
}

.coaching-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, #b91ccf, #ff6fb2);
}

.product-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, #ff8abf, #d80b68);
}

.example-card-real {
  border-color: rgba(255, 45, 141, 0.2);
}

.cornerstone-preview {
  background: #0b1648;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.example-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255, 45, 141, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--blue-dark);
  background: #fff4f9;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: var(--font-medium);
  text-transform: none;
}

.example-tags-single {
  margin-bottom: 14px;
}

.example-body {
  padding: 22px;
}

.example-body-real {
  padding-top: 20px;
}

.example-body-real h3 {
  margin-top: 0;
}

.example-body span {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
}

.example-body a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: var(--font-semibold);
}

.project-showcase-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.project-showcase-window {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  overflow: hidden;
  border: 1px solid rgba(242, 215, 228, 0.92);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(23, 25, 39, 0.1);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.project-showcase-window.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.project-preview-slot {
  min-height: 460px;
  background: #fff7fb;
}

.project-preview-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
}

.project-preview-link img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: top center;
  transition: transform 280ms ease, filter 280ms ease;
}

.project-preview-link:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.project-preview-link:hover .preview-open-label {
  opacity: 1;
  transform: translateY(0);
  background: rgba(216, 11, 104, 0.86);
}

.project-preview-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.project-preview-placeholder::before,
.project-preview-placeholder::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.project-preview-placeholder::before {
  top: 68px;
  height: 76px;
}

.project-preview-placeholder::after {
  top: 176px;
  height: 156px;
}

.project-preview-placeholder span {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  margin: 0 0 34px 38px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 0.78rem;
  font-weight: var(--font-medium);
}

.project-preview-coaching {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, #b91ccf, #ff6fb2);
}

.project-showcase-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(30px, 4.5vw, 56px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 45, 141, 0.1), transparent 15rem),
    #fff;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255, 45, 141, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--blue-dark);
  background: #fff4f9;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: var(--font-medium);
}

.project-showcase-copy h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  font-weight: var(--font-semibold);
}

.project-showcase-copy p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.6;
  font-weight: var(--font-regular);
}

.project-live-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: var(--font-medium);
}

.project-live-link.is-hidden {
  display: none;
}

.project-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.project-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(216, 11, 104, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.project-dots button.is-active {
  width: 24px;
  background: var(--blue-dark);
}

@media (max-width: 900px) {
  .project-showcase-carousel {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .project-showcase-window {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-preview-slot,
  .project-preview-link,
  .project-preview-link img,
  .project-preview-placeholder {
    min-height: 300px;
  }

  .project-showcase-copy {
    padding: 28px 24px 32px;
  }

  .project-arrow {
    width: 100%;
    height: 46px;
    font-size: 1.7rem;
  }

  .project-arrow-prev,
  .project-arrow-next {
    grid-row: 2;
  }

  .project-dots {
    grid-row: 3;
  }
}

@media (max-width: 520px) {
  .project-preview-slot,
  .project-preview-link,
  .project-preview-link img,
  .project-preview-placeholder {
    min-height: 230px;
  }

  .project-showcase-copy {
    padding: 24px 20px 28px;
  }

  .project-showcase-copy h3 {
    font-size: 1.55rem;
  }
}

.process-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  min-height: 168px;
}

.process-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  font-weight: var(--font-bold);
  font-size: 0.86rem;
}

.process-card h3 {
  margin: 2px 0 0;
  font-size: 1.06rem;
  line-height: 1.22;
}

.process-card p {
  line-height: 1.48;
}

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


.process-card-highlight {
  border-color: rgba(255, 45, 141, 0.28);
  background: linear-gradient(180deg, #fff, #fff8fb);
}

.quote-submit-note {
  margin: 0;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--blue-dark);
  background: #fff0f7;
  font-weight: var(--font-semibold);
}

.final-cta {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 11, 104, 0.96), rgba(185, 28, 207, 0.86)),
    var(--blue-dark);
}

.final-cta-inner {
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta p {
  max-width: 620px;
  margin: 16px auto 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  background: transparent;
}

.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.final-cta span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: var(--font-bold);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
  padding: 92px 0;
}

.contact-copy {
  position: sticky;
  top: 106px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: var(--font-bold);
}

.custom-contact-hint {
  border-left: 3px solid var(--pink);
  border-radius: 8px;
  padding: 10px 12px 10px 14px;
  color: var(--ink) !important;
  background: rgba(255, 45, 141, 0.06);
  font-weight: var(--font-bold);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.custom-contact-hint.is-highlighted {
  background: #fff0f7;
  box-shadow: 0 0 0 4px rgba(255, 45, 141, 0.12);
}

.contact-feature-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #fff8fb;
}

.contact-feature-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: var(--font-semibold);
}

.contact-feature-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--font-medium);
}

.contact-feature-options input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--pink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 45, 141, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 45, 141, 0.12);
}

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

.form-success {
  display: none;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  color: #166534;
  background: #dcfce7;
  font-weight: var(--font-semibold);
}

.form-error {
  display: none;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  color: #991b1b;
  background: #fee2e2;
  font-weight: var(--font-semibold);
}

.form-success.is-visible,
.form-error.is-visible {
  display: block;
}

.hidden-field {
  display: none !important;
}


body.modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 28px;
}

.quote-modal.is-open {
  display: grid;
  place-items: center;
}

.quote-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 25, 39, 0.52);
  backdrop-filter: blur(10px);
}

.quote-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border: 1px solid rgba(242, 215, 228, 0.95);
  border-radius: 12px;
  background: #fff8fb;
  box-shadow: 0 28px 80px rgba(23, 25, 39, 0.24);
}

.pricing-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: none;
  padding: 24px;
}

.pricing-detail-modal.is-open {
  display: grid;
  place-items: center;
}

.pricing-detail-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 25, 39, 0.42);
  backdrop-filter: blur(8px);
}

.pricing-detail-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  border: 1px solid rgba(242, 215, 228, 0.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 25, 39, 0.22);
  padding: 28px;
}

.pricing-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.pricing-detail-header {
  max-width: 600px;
  padding-right: 48px;
}

.pricing-detail-header h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.08;
}

.pricing-detail-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pricing-detail-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff7fb);
  padding: 18px;
}

.pricing-detail-card h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

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

.pricing-detail-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-detail-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pink);
}

.pricing-detail-note {
  margin-top: 16px;
  border-radius: 10px;
  background: rgba(255, 45, 141, 0.07);
  padding: 16px 18px;
}

.pricing-detail-note strong {
  color: var(--blue-dark);
}

.pricing-detail-note p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.custom-quote-modal__panel {
  width: min(820px, 100%);
}

.custom-quote-header {
  max-width: 680px;
}

.custom-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 22px;
}

.custom-quote-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: var(--font-medium);
}

.custom-quote-form label > span:first-child,
.custom-quote-form legend {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: var(--font-medium);
}

.custom-quote-form input,
.custom-quote-form select,
.custom-quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.custom-quote-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.custom-quote-form input:focus,
.custom-quote-form select:focus,
.custom-quote-form textarea:focus {
  border-color: rgba(255, 45, 141, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 45, 141, 0.12);
}

.custom-quote-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  margin: 1px 0 0;
  accent-color: var(--pink);
}

.custom-quote-note {
  margin: 0;
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--blue-dark);
  background: rgba(255, 45, 141, 0.08);
  font-weight: var(--font-medium);
  line-height: 1.5;
}

.custom-feature-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
}

.custom-quote-actions {
  display: flex;
  justify-content: flex-end;
}

.quote-modal__header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.quote-modal__header-copy {
  max-width: 680px;
}

.quote-header-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.desktop-language {
  flex: 0 0 auto;
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: #fff;
}

.language-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: var(--font-semibold);
  font-size: 0.84rem;
}

.language-toggle button.is-active {
  color: #fff;
  background: var(--pink);
}

.quote-modal__header h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.2vw, 2.7rem);
  line-height: 1.04;
}

.quote-modal__header p:not(.eyebrow) {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.modal-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.modal-close:hover {
  border-color: rgba(255, 45, 141, 0.38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 22px 30px 30px;
}

.quote-form-section,
.quote-submit-area {
  border: 1px solid rgba(242, 215, 228, 0.9);
  border-radius: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(23, 25, 39, 0.05);
}

.quote-form-section h3,
.quote-form-section h4,
.info-card h3 {
  margin: 0;
}

.quote-form-section h3,
.info-card h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.quote-form-section h4 {
  color: var(--blue-dark);
  font-size: 0.98rem;
}

.quote-section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.section-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote-form-grid,
.website-section-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label,
.quote-form-section > label,
.website-section-item label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: var(--font-medium);
}

.quote-form label > span:first-child,
.website-section-item label > span:first-child {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: var(--font-medium);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(255, 45, 141, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 45, 141, 0.12);
}

.logo-upload-layout,
.image-notes-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.logo-upload-layout .quote-section-heading {
  margin-bottom: 0;
  align-content: start;
}

.upload-box {
  display: grid !important;
  align-content: center;
  min-height: 118px;
  border: 1px dashed rgba(216, 11, 104, 0.42);
  border-radius: 10px;
  padding: 18px;
  background: #fff8fb;
}

.upload-box span,
.quote-addon-card small,
.base-feature small,
.free-feature-card small {
  color: var(--muted);
  font-weight: var(--font-semibold);
  line-height: 1.45;
}

.quote-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  margin: 1px 0 0;
  accent-color: var(--pink);
}

.social-media-field {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.social-media-field legend {
  margin: 0 0 2px;
  color: var(--ink);
  font-weight: var(--font-medium);
  font-size: 0.9rem;
}

.social-platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.social-platform-card {
  display: flex !important;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #fff;
  cursor: pointer;
  font-weight: var(--font-medium) !important;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-platform-card.is-selected,
.social-platform-card:hover {
  border-color: rgba(255, 45, 141, 0.44);
  background: #fff8fb;
}

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

.social-other-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.visually-hidden-file {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.upload-box {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.upload-control-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff !important;
  background: var(--pink);
  box-shadow: 0 10px 22px rgba(216, 11, 104, 0.18);
  cursor: pointer;
  font-weight: var(--font-semibold) !important;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.upload-button:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(216, 11, 104, 0.24);
  transform: translateY(-1px);
}

.upload-button:focus-visible {
  outline: 3px solid rgba(255, 45, 141, 0.24);
  outline-offset: 3px;
}

.upload-file-name {
  min-width: 0;
  max-width: 100%;
  color: var(--ink) !important;
  font-weight: var(--font-medium) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-box small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

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

.remove-section-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: var(--font-semibold);
  font-size: 0.82rem;
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-title-row .quote-section-heading {
  margin-bottom: 0;
}

.text-button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: #fff;
  background: var(--blue-dark);
  cursor: pointer;
  font-weight: var(--font-semibold);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.text-button:hover {
  background: #101d4f;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.text-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.website-sections {
  display: grid;
  gap: 14px;
}

.website-section-item {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(242, 215, 228, 0.95);
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}

.is-hidden {
  display: none !important;
}

.image-notes-section {
  background: linear-gradient(135deg, #fff, #fff8fb);
}

.info-card {
  border-radius: 10px;
  padding: 18px;
  background: #fff0f7;
}

.info-card p,
.info-card ul {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.info-card ul {
  padding-left: 18px;
}

.image-notes-field textarea {
  min-height: 176px;
}

.free-feature-grid,
.quote-addon-grid {
  display: grid;
  gap: 12px;
}

.essential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
}

.essential-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: var(--font-medium);
  line-height: 1.4;
}

.essential-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: var(--font-bold);
}

.scope-note,
.paid-update-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.scope-note {
  max-width: 760px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.paid-update-note {
  color: var(--blue-dark);
  font-weight: var(--font-medium);
}

.free-feature-count {
  flex: 0 0 auto;
  align-self: center;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: #fff0f7;
  font-size: 0.9rem;
}

.feature-limit-message {
  display: none;
  margin: 0 0 14px;
  border-radius: 8px;
  padding: 10px 12px;
  color: #9f1239;
  background: #ffe4ef;
  font-weight: var(--font-semibold);
}

.feature-limit-message.is-visible {
  display: block;
}

.free-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.free-feature-card,
.quote-addon-card,
.base-feature,
.confirm-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px;
}

.free-feature-card,
.quote-addon-card {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.free-feature-card span,
.quote-addon-card span,
.base-feature span {
  display: grid;
  gap: 5px;
}

.free-feature-card:hover,
.free-feature-card.is-selected,
.quote-addon-card:hover,
.quote-addon-card.is-selected {
  border-color: rgba(255, 45, 141, 0.48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.free-feature-card.is-selected,
.quote-addon-card.is-selected {
  background: #fff0f7;
}

.free-feature-card:has(input:disabled:not(:checked)) {
  cursor: not-allowed;
  opacity: 0.58;
}

.base-feature {
  margin-bottom: 14px;
  border: 1px solid rgba(255, 45, 141, 0.2);
  border-radius: 10px;
  padding: 14px;
  background: #fff8fb;
}

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

.compact-feature-grid .free-feature-card {
  align-items: center;
  min-height: 52px;
  padding: 11px 12px;
}

.compact-feature-grid .free-feature-card strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

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

.quote-addon-card {
  min-height: 104px;
}

.quote-submit-area {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: stretch;
  border-color: rgba(255, 45, 141, 0.24);
  background: linear-gradient(135deg, #fff, #fff0f7);
}

.quote-total-card {
  display: grid;
  align-content: center;
  gap: 6px;
  grid-row: span 2;
  border: 1px solid rgba(255, 45, 141, 0.24);
  border-radius: 10px;
  padding: 18px;
  background: #fff;
}

.quote-total-card span {
  color: var(--muted);
  font-weight: var(--font-medium);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quote-total-card strong {
  color: var(--blue-dark);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1;
}

.quote-total-card p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.advanced-booking-note {
  font-size: 0.9rem;
}

.quote-submit-body {
  display: grid;
  gap: 12px;
}

.confirm-section {
  display: grid;
  gap: 10px;
}

.confirm-check {
  border-radius: 8px;
  padding: 8px 0;
  color: var(--ink);
  font-weight: var(--font-medium) !important;
  line-height: 1.45;
}

.quote-submit-note {
  margin: 0;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  font-weight: var(--font-semibold);
  line-height: 1.45;
}

.quote-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.quote-modal__footer .button {
  min-width: 210px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}


.footer-logo img {
  display: block;
  width: 132px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .pricing-layout,
  .quote-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    display: block;
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 58px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: 720px;
    padding: 0;
  }

  .hero-card,
  .hero-visual,
  .estimate-card,
  .contact-copy {
    position: static;
  }

  .hero-visual {
    position: relative;
    pointer-events: auto;
    margin-top: 24px;
    aspect-ratio: 1.48 / 1;
  }

  .hero-visual img {
    object-fit: contain;
  }

  .benefit-grid,
  .example-grid,
  .process-grid,
  .process-grid-five,
  .quote-form-grid,
  .website-section-fields,
  .image-notes-layout,
  .logo-upload-layout,
  .quote-submit-area,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .free-feature-grid,
  .essential-list,
  .quote-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-modal {
    padding: 16px;
  }

  .quote-modal__panel {
    max-height: 94vh;
  }

  .quote-modal__header {
    padding: 22px;
  }

  .quote-header-actions {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .desktop-language {
    display: none;
  }

  .social-platform-grid,
  .social-link-fields,
  .social-other-fields,
  .compact-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form {
    padding: 18px;
  }

  .quote-form-section,
  .quote-submit-area {
    padding: 18px;
  }

  .quote-total-card {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    --page-gutter: 24px;
    min-height: 68px;
    padding: 6px 12px;
  }

  .section-shell {
    --page-gutter: 24px;
  }

  .hero,
  .hero.section-shell.page-container {
    gap: 30px;
    width: var(--container-width);
    padding: 42px 0 56px;
  }

  .hero-visual {
    max-width: 560px;
    margin-inline: auto;
    aspect-ratio: 1.48 / 1;
  }

  .hero-visual::before {
    inset: 12% 4% 4%;
  }

  .navbar-logo {
    width: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(2.42rem, 10vw, 3.45rem);
    white-space: normal;
    text-wrap: balance;
  }

  html[lang="zh-CN"] .hero-copy {
    max-width: 100%;
  }

  html[lang="zh-CN"] .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.2vw, 2.7rem);
    line-height: 1.16;
    font-weight: var(--font-semibold);
    white-space: normal;
    text-wrap: balance;
  }

  html[lang="zh-CN"] .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  html[lang="zh-CN"] .hero-lede {
    font-size: 1.05rem;
    line-height: 1.24;
  }

  .section-heading h2,
  .contact-copy h2,
  .final-cta h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1.12;
  }

  #why .section-heading {
    max-width: 100%;
  }

  #why .section-heading h2 {
    white-space: normal;
    text-wrap: balance;
  }

  .pricing-actions,
  .pricing-actions .button {
    width: 100%;
  }

  .contact-feature-options {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    font-size: 0.9rem;
  }

  .hero-lede {
    font-size: 1.16rem;
  }

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

  .included-grid span {
    justify-content: center;
    border-radius: 8px;
  }

  .section-block,
  .pricing-band,
  .examples-section,
  .contact-section {
    padding: 68px 0;
  }

  .quote-modal {
    padding: 0;
  }

  .quote-modal__panel {
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }

  .pricing-detail-modal {
    padding: 12px;
  }

  .pricing-detail-modal__panel {
    max-height: calc(100vh - 24px);
    padding: 22px 18px;
  }

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

  .pricing-detail-header {
    padding-right: 42px;
  }

  .quote-modal__header {
    padding: 16px;
    gap: 14px;
  }

  .quote-header-actions {
    gap: 8px;
  }

  .language-toggle button {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .mobile-language {
    justify-content: center;
    width: max-content;
  }

  .quote-modal__header h2 {
    font-size: 1.75rem;
  }

  .modal-close {
    width: 40px;
    height: 40px;
  }

  .quote-form {
    gap: 14px;
    padding: 14px;
  }

  .quote-form-section,
  .quote-submit-area {
    padding: 15px;
  }

  .section-title-row {
    flex-direction: column;
    align-items: stretch;
  }

  .text-button,
  .quote-modal__footer .button {
    width: 100%;
  }

  .free-feature-grid,
  .essential-list,
  .quote-addon-grid,
  .social-platform-grid,
  .social-link-fields,
  .social-other-fields,
  .compact-feature-grid {
    grid-template-columns: 1fr;
  }

  .free-feature-card,
  .quote-addon-card {
    min-height: auto;
  }

  .quote-modal__footer {
    justify-content: stretch;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 680px) {
  .final-cta-actions, .final-cta-actions .button, .custom-quote-actions, .custom-quote-actions .button { width: 100%; }
  .custom-quote-form, .custom-feature-options { grid-template-columns: 1fr; }
}

/* Final lighter typography pass. */
body {
  font-weight: var(--font-regular);
}

.hero-copy h1 {
  font-weight: var(--font-bold);
}

.section-heading h2,
.contact-copy h2,
.final-cta h2,
.quote-modal__header h2,
.pricing-detail-header h2 {
  font-weight: var(--font-semibold);
}

.quote-modal__header h2,
.pricing-detail-header h2 {
  letter-spacing: 0;
}

h3,
h4,
.quote-form-section h3,
.quote-form-section h4,
.info-card h3,
.pricing-detail-card h3,
.benefit-card h3,
.process-card h3,
.example-card h3,
.contact-feature-options legend,
.custom-quote-form legend {
  font-weight: var(--font-semibold);
}

.eyebrow,
.hero-lede,
.example-body span,
.example-body a,
.details-link-button,
.final-cta span,
.quote-total-card span,
.free-feature-count {
  font-weight: var(--font-medium);
}

p,
li,
.section-help,
.hero-subtitle,
.quote-modal__header p:not(.eyebrow),
.pricing-detail-header p:not(.eyebrow),
.custom-quote-note,
.quote-submit-note,
.scope-note,
.paid-update-note,
.feature-limit-message,
.info-card p,
.info-card li,
.quote-total-card p,
.benefit-card p,
.process-card p,
.example-card p {
  font-weight: var(--font-regular) !important;
}

.nav-cta,
.button,
.text-button,
.upload-button,
.remove-section-button,
.language-toggle button,
.mobile-panel a,
.mobile-panel button {
  font-weight: var(--font-semibold) !important;
}

.desktop-nav,
.desktop-nav a,
.desktop-nav .nav-link-button {
  font-weight: var(--font-medium);
}

.quote-form label,
.quote-form-section > label,
.website-section-item label,
.custom-quote-form label,
.contact-form label,
.social-media-field legend,
.contact-feature-options legend,
.custom-quote-form legend {
  font-weight: var(--font-medium) !important;
}

.quote-form label > span:first-child,
.website-section-item label > span:first-child,
.custom-quote-form label > span:first-child {
  font-weight: var(--font-medium) !important;
}

.contact-feature-options label,
.social-platform-card,
.free-feature-card,
.quote-addon-card,
.base-feature,
.confirm-check,
.essential-list li {
  font-weight: var(--font-regular) !important;
}

.free-feature-card strong,
.quote-addon-card strong,
.base-feature strong,
.compact-feature-grid .free-feature-card strong,
.upload-file-name {
  font-weight: var(--font-medium) !important;
}

.quote-addon-card small,
.base-feature small,
.free-feature-card small,
.upload-box small {
  font-weight: var(--font-regular) !important;
}

input:not([type="checkbox"]),
select,
textarea,
input::placeholder,
textarea::placeholder {
  font-weight: var(--font-regular) !important;
}

html[lang="zh-CN"] body,
html[lang="zh-CN"] p,
html[lang="zh-CN"] li,
html[lang="zh-CN"] .section-help,
html[lang="zh-CN"] .quote-form label,
html[lang="zh-CN"] .custom-quote-form label,
html[lang="zh-CN"] .contact-feature-options label,
html[lang="zh-CN"] .free-feature-card,
html[lang="zh-CN"] .quote-addon-card,
html[lang="zh-CN"] .base-feature,
html[lang="zh-CN"] .confirm-check {
  font-weight: var(--font-regular) !important;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] .hero-copy h1 {
  font-weight: var(--font-semibold) !important;
}

html[lang="zh-CN"] h2,
html[lang="zh-CN"] .section-heading h2,
html[lang="zh-CN"] .quote-modal__header h2,
html[lang="zh-CN"] .pricing-detail-header h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] h4 {
  font-weight: var(--font-semibold) !important;
}

html[lang="zh-CN"] .button,
html[lang="zh-CN"] .nav-cta,
html[lang="zh-CN"] .text-button,
html[lang="zh-CN"] .upload-button,
html[lang="zh-CN"] .language-toggle button {
  font-weight: var(--font-medium) !important;
}

/* Desktop/tablet heading wrap control: avoid forced line breaks when space is available. */
@media (min-width: 681px) {
  .section-heading {
    max-width: min(100%, 1040px);
  }

  .section-heading h2,
  .contact-copy h2,
  .final-cta h2 {
    text-wrap: normal;
  }

  #process .section-heading,
  #examples .section-heading {
    max-width: min(100%, 1080px);
  }

  #process .section-heading h2 {
    white-space: nowrap;
  }

  .final-cta h2 {
    max-width: min(100%, 980px);
  }
}

@media (min-width: 1400px) {
  .hero {
    height: min(68vh, 720px);
    min-height: 560px;
    max-height: 720px;
  }
}

@media (min-width: 921px) {
  .hero-copy h1 {
    text-wrap: normal;
  }
}

@media (max-width: 680px) {
  #process .section-heading h2,
  .section-heading h2,
  .final-cta h2 {
    white-space: normal;
    text-wrap: balance;
  }
}

.business-stories-section {
  padding: 92px 0;
  background: linear-gradient(180deg, #fff, #fff8fb);
  border-top: 1px solid var(--line);
}

.business-story-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.business-story-window {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 228, 0.92);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(23, 25, 39, 0.1);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.business-story-window.is-fading {
  opacity: 0.08;
  transform: translateY(4px);
}

.story-scene {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  isolation: isolate;
}

.story-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 251, 0.03) 0%, rgba(255, 248, 251, 0.1) 58%, rgba(255, 255, 255, 0.48) 100%),
    linear-gradient(180deg, rgba(10, 18, 48, 0.04), rgba(10, 18, 48, 0.12));
  pointer-events: none;
}

.business-story-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 64px);
  text-align: left;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 45, 141, 0.1), transparent 16rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), #fff 34%);
}

.story-kicker {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: var(--font-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-story-window h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.45vw, 2.05rem);
  line-height: 1.08;
  font-weight: var(--font-semibold);
}

.business-story-role {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.35;
  font-weight: var(--font-medium);
}

.business-story-text {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.55;
  font-weight: var(--font-regular);
}

.story-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.story-arrow:hover {
  border-color: rgba(255, 45, 141, 0.42);
  background: #fff8fb;
  transform: translateY(-1px);
}

.story-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.story-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(216, 11, 104, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.story-dots button.is-active {
  width: 24px;
  background: var(--blue-dark);
}

@media (max-width: 860px) {
  .business-story-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .business-story-window {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-scene {
    min-height: 290px;
    background-position: center;
  }

  .story-scene::after {
    background: linear-gradient(180deg, rgba(10, 18, 48, 0.02), rgba(10, 18, 48, 0.08));
  }

  .business-story-copy {
    padding: 28px 24px 32px;
    text-align: center;
    justify-items: center;
  }

  .business-story-text {
    max-width: 560px;
    margin-inline: auto;
  }

  .story-arrow {
    width: 100%;
    height: 46px;
    font-size: 1.7rem;
  }

  .story-arrow-prev,
  .story-arrow-next {
    grid-row: 2;
  }

  .story-dots {
    grid-row: 3;
  }
}

@media (max-width: 520px) {
  .business-stories-section {
    padding: 68px 0;
  }

  .story-scene {
    min-height: 240px;
  }

  .business-story-copy {
    padding: 24px 20px 28px;
  }
}


/* Keep checkbox controls aligned with their labels across quote forms. */
.custom-quote-form .contact-feature-options label,
.contact-feature-options label,
.social-platform-card,
.free-feature-card,
.quote-addon-card,
.base-feature,
.confirm-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: left;
}

.custom-quote-form .contact-feature-options label span,
.contact-feature-options label span,
.social-platform-card span,
.free-feature-card > span,
.quote-addon-card > span,
.base-feature > span,
.confirm-check span {
  min-width: 0;
}

.custom-quote-form .contact-feature-options input[type="checkbox"],
.contact-feature-options input[type="checkbox"],
.social-platform-card input[type="checkbox"],
.free-feature-card input[type="checkbox"],
.quote-addon-card input[type="checkbox"],
.base-feature input[type="checkbox"],
.confirm-check input[type="checkbox"] {
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  accent-color: var(--pink);
}

.custom-feature-options label {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  font-weight: var(--font-regular) !important;
}

/* Mobile Hero integration: keep copy and image as one visual area. */
@media (max-width: 768px) {
  .hero,
  .hero.section-shell.page-container {
    position: relative;
    display: block;
    width: var(--container-width);
    height: clamp(560px, 134vw, 620px);
    min-height: 560px;
    max-height: none;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
  }

  .hero::before {
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(255, 248, 251, 0.96) 0%,
      rgba(255, 248, 251, 0.86) 43%,
      rgba(255, 248, 251, 0.22) 74%,
      rgba(255, 248, 251, 0.02) 100%
    );
  }

  .hero::after {
    display: none;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: auto;
    pointer-events: none;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: min(64%, 270px);
    max-width: 270px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0 34px 4px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.4vw, 2.55rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.46;
  }

  .hero-lede {
    max-width: 100%;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.24;
  }

  .hero-actions {
    width: min(190px, 100%);
    margin-top: 18px;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  html[lang="zh-CN"] .hero-copy {
    width: min(62%, 260px);
    max-width: 260px;
  }

  html[lang="zh-CN"] .hero-copy h1 {
    font-size: clamp(1.78rem, 7.2vw, 2.2rem);
    line-height: 1.14;
    text-wrap: balance;
  }

  html[lang="zh-CN"] .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  html[lang="zh-CN"] .hero-lede {
    font-size: 0.94rem;
    line-height: 1.28;
  }
}

@media (max-width: 420px) {
  .hero,
  .hero.section-shell.page-container {
    height: 560px;
    min-height: 560px;
  }

  .hero-copy {
    width: min(66%, 250px);
    max-width: 250px;
    padding-left: 2px;
  }

  .hero-copy h1 {
    font-size: clamp(1.88rem, 8vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions {
    width: min(176px, 100%);
  }
}


/* Mobile content compression for benefit and process sections. */
.business-stories-heading {
  margin-bottom: 34px;
}

.business-stories-heading h2 {
  margin: 0;
}

@media (max-width: 768px) {

  #why .section-heading,
  #process .section-heading,
  #business-stories .section-heading {
    margin-bottom: 24px;
  }

  #why .section-heading h2,
  #process .section-heading h2 {
    font-size: clamp(2.15rem, 8.4vw, 2.7rem);
    line-height: 1.1;
  }

  #why .section-heading p:not(.eyebrow),
  #process .section-heading p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  #why .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  #why .benefit-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(242, 215, 228, 0.86);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  #why .benefit-card:first-child {
    padding-top: 0;
  }

  #why .benefit-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  #why .benefit-card .icon-badge {
    grid-column: 1;
    grid-row: 1;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 999px;
    color: transparent;
    background: rgba(255, 45, 141, 0.1);
    font-size: 0;
    box-shadow: none;
  }

  #why .benefit-card .icon-badge::before {
    content: "✓";
    color: var(--pink);
    font-size: 0.82rem;
    line-height: 1;
    font-weight: var(--font-semibold);
  }

  #why .benefit-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.28;
    font-weight: var(--font-semibold);
  }

  #why .benefit-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 1px 0 0;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  #process .process-grid-five {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  #process .process-card,
  #process .process-card-highlight {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 10px;
    min-height: 0;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(242, 215, 228, 0.86);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  #process .process-card:first-child {
    padding-top: 0;
  }

  #process .process-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  #process .process-card > span {
    grid-column: 1;
    grid-row: 1;
    display: inline;
    width: auto;
    height: auto;
    margin-top: 1px;
    border-radius: 0;
    color: var(--pink);
    background: transparent;
    font-size: 0;
    line-height: 1.35;
    font-weight: var(--font-semibold);
  }

  #process .process-card > span::before {
    color: var(--pink);
    font-size: 0.92rem;
    line-height: 1.35;
  }

  #process .process-card:nth-child(1) > span::before { content: "Step 1 —"; }
  #process .process-card:nth-child(2) > span::before { content: "Step 2 —"; }
  #process .process-card:nth-child(3) > span::before { content: "Step 3 —"; }
  #process .process-card:nth-child(4) > span::before { content: "Step 4 —"; }
  #process .process-card:nth-child(5) > span::before { content: "Step 5 —"; }

  html[lang="zh-CN"] #process .process-card:nth-child(1) > span::before { content: "步骤 1 —"; }
  html[lang="zh-CN"] #process .process-card:nth-child(2) > span::before { content: "步骤 2 —"; }
  html[lang="zh-CN"] #process .process-card:nth-child(3) > span::before { content: "步骤 3 —"; }
  html[lang="zh-CN"] #process .process-card:nth-child(4) > span::before { content: "步骤 4 —"; }
  html[lang="zh-CN"] #process .process-card:nth-child(5) > span::before { content: "步骤 5 —"; }

  #process .process-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: var(--font-semibold);
  }

  #process .process-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .business-stories-section {
    padding: 58px 0;
  }

  .business-stories-heading {
    margin-bottom: 22px;
  }

  .business-stories-heading h2 {
    font-size: clamp(2rem, 8vw, 2.65rem);
    line-height: 1.08;
  }

  .business-story-copy {
    padding: 22px 18px 24px;
  }

  .business-story-window h3 {
    font-size: 1.42rem;
    line-height: 1.12;
  }

  .business-story-role {
    margin-top: 5px;
    font-size: 0.92rem;
  }

  .business-story-text {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

/* Wide-screen Hero: let the visual fill the viewport while keeping copy controlled. */
@media (min-width: 769px) {
  .hero,
  .hero.section-shell.page-container {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(32px, calc((100vw - 1360px) / 2 + 32px));
    padding-right: max(32px, calc((100vw - 1360px) / 2 + 32px));
  }

  .hero-copy {
    flex: 0 0 min(520px, 42vw);
  }

  .hero::before {
    inset: 0 43% 0 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 248, 251, 0.92) 42%,
      rgba(255, 248, 251, 0.42) 62%,
      rgba(255, 248, 251, 0) 100%
    );
  }

  .hero-visual {
    inset: 0;
  }

  .hero-visual img {
    object-fit: cover;
    object-position: center right;
  }
}

@media (min-width: 1600px) {
  .hero,
  .hero.section-shell.page-container {
    height: min(66vh, 720px);
    min-height: 560px;
    max-height: 720px;
    padding-left: max(48px, calc((100vw - 1440px) / 2 + 48px));
    padding-right: max(48px, calc((100vw - 1440px) / 2 + 48px));
  }
}

@media (min-width: 1200px) {
  .hero-copy {
    max-width: 600px;
    flex-basis: min(600px, 44vw);
  }

  .hero-copy h1 {
    max-width: 600px;
  }

  html[lang="zh-CN"] .hero-copy,
  html[lang="zh-CN"] .hero-copy h1 {
    max-width: 580px;
  }
}
