:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --surface-soft: #f6f3ee;
  --surface-warm: #f1e9de;
  --ink: #171717;
  --muted: #5f6773;
  --line: rgba(23, 23, 23, 0.08);
  --accent: #ff8a5b;
  --accent-deep: #d85b2b;
  --shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Be Vietnam Pro", "Segoe UI", sans-serif;
  background: #f89e7a1a;
}

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

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

.page {
  width: min(calc(100% - 40px), 1140px);
  margin: 18px auto 72px;
}

.shared-header-mount {
  min-height: 96px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: var(--header-left, 20px);
  z-index: 30;
  width: var(--header-width, min(calc(100% - 40px), 1140px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 249, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-shell {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(216, 91, 43, 0.16);
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 6px;
  font-size: 0.94rem;
  background: linear-gradient(135deg, rgba(248, 246, 241, 0.92), rgba(255, 241, 233, 0.76));
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(23, 23, 23, 0.03);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 240, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 91, 43, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 24px rgba(15, 23, 42, 0.08);
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav>a,
.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 16px;
  color: #3c434d;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav>a:hover,
.site-nav>a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.site-nav>a.is-active,
.nav-link.is-active,
.nav-dropdown-toggle.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #d86a44, #b65435);
  box-shadow: 0 12px 24px rgba(184, 84, 53, 0.26);
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 91, 43, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 240, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(15, 23, 42, 0.05);
}

.nav-lang-toggle__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 14px;
  color: #7a4b37;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-lang-toggle__item:hover,
.nav-lang-toggle__item:focus-visible {
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-lang-toggle__item.is-active {
  background: linear-gradient(135deg, #d86a44, #b65435);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(184, 84, 53, 0.2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding-right: 32px;
  background: rgba(255, 237, 228, 0.78);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: translateY(-30%) rotate(-135deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 18px;
  transform: translateX(-50%);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 15;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 241, 0.98));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.nav-dropdown-label {
  padding: 6px 12px 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-menu a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.1);
  transform: translateX(2px);
}

.nav-dropdown-menu a.is-active {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 36px;
  padding: 42px 0 34px;
  overflow: hidden;
}

.hero-copy,
.hero-visual,
.section-card,
.info-card,
.gallery-card,
.cta-card {
  background: var(--surface);
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  max-width: 620px;
}

.hero-copy-clean {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-visual {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  width: 100%;
}

.hero-visual-soft {
  padding: 0;
}

.website-hero-visual {
  overflow: hidden;
  border-radius: 30px;
  margin-left: 45px;
}

.website-hero-visual .hero-banner-image {
  width: 112%;
  max-width: none;
  transform: translateX(-19%);
  transform-origin: center center;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 2.8rem, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 2.1rem, 3.3rem);
}

.hero-copy p {
  max-width: 56ch;
  font-size: 1.05rem;
}

.hero-copy h1+p {
  margin-top: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-row span {
  padding: 10px 13px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: rgba(246, 243, 238, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.placeholder-frame {
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f1ece3 100%);
  text-align: center;
}

.placeholder-frame strong,
.gallery-placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.note-box,
.hero-inline-note {
  margin-top: 20px;
  max-width: 48ch;
  padding: 0 0 0 18px;
  border-left: 3px solid rgba(216, 91, 43, 0.28);
  background: transparent;
  color: var(--muted);
}

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

.hero-visual::before {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(216, 91, 43, 0.42), rgba(216, 91, 43, 0));
}

.meta-grid,
.two-col,
.results-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.meta-grid {
  max-width: 1040px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-col,
.results-grid {
  max-width: 1040px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

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

.info-card {
  padding: 24px 26px;
  border-left: 4px solid rgba(216, 91, 43, 0.18);
}

.info-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 1.18rem;
}

.info-card p {
  margin: 0;
  max-width: 54ch;
}

.narrative-card,
.story-card,
.section-card,
.cta-card {
  margin-inline: auto;
}

.narrative-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 28px;
  margin-top: 24px;
}

.narrative-main p {
  margin: 0;
  max-width: 58ch;
}

.narrative-main p+p {
  margin-top: 16px;
}

.narrative-aside {
  padding: 24px 26px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfaf7 0%, var(--surface-warm) 100%);
}

.narrative-aside strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.narrative-aside p {
  margin: 0;
}

.narrative-aside ul {
  margin: 0 0 18px;
  padding-left: 1.1rem;
}

.narrative-aside li+li {
  margin-top: 10px;
}

.story-grid {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.story-block {
  padding: 22px 0;
}

.story-block:first-child {
  padding-top: 0;
}

.story-block+.story-block {
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.story-block h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.story-block p {
  margin: 0;
  max-width: 60ch;
}

.section-card {
  padding: 42px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.section-card+.section-card {
  margin-top: 34px;
}

.section-card h2 {
  max-width: 20ch;
}

.section-card>p:last-child,
.cta-card>p:last-child {
  max-width: 60ch;
}

.section-card h2+p,
.section-card h2+ul,
.cta-card h2+p {
  margin-top: 16px;
}

.section-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.section-card .list-tight li+li {
  margin-top: 12px;
}

.content-split,
.compare-grid,
.proof-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.content-split {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

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

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

.proof-grid.workflow-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.workflow-proof-frame {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.workflow-proof-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.workflow-proof-lead {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
}

.workflow-proof-count {
  flex: 0 0 auto;
  color: rgba(216, 91, 43, 0.16);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.workflow-proof-summary strong {
  color: var(--ink);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.workflow-proof-summary p {
  margin: 10px 0 0;
  max-width: 56ch;
}

.workflow-proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 10px;
  max-width: 260px;
}

.workflow-proof-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.workflow-proof-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: 26px 118px 24px 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-top: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.045);
}

.workflow-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, rgba(216, 91, 43, 0.95), rgba(255, 138, 91, 0.45));
}

.workflow-proof-card::after {
  content: attr(data-proof);
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(216, 91, 43, 0.09);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.workflow-proof-tag {
  position: relative;
  z-index: 1;
  max-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 138, 91, 0.12), rgba(216, 91, 43, 0.06));
  color: var(--accent-deep);
  box-shadow: inset 0 0 0 1px rgba(216, 91, 43, 0.12);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-proof-card strong {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.26;
}

.workflow-proof-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 35ch;
}

.workflow-proof-image {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 105px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.side-panel,
.compare-card,
.testimonial-card {
  padding: 24px 26px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 24px;
  background: var(--surface-soft);
}

.proof-card {
  padding: 18px;
  border: 0;
  border-top: 1px solid rgba(216, 91, 43, 0.24);
  border-radius: 17px;
  background: transparent;
}

.benefit-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.benefit-card {
  padding: 22px 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
  grid-column: span 2;
}

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

.benefit-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.benefit-head-compact {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.benefit-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.benefit-icon {
  display: block;
  width: 55px;
  height: 50px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.benefit-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.benefit-card p {
  margin: 0;
}

.side-panel {
  background: linear-gradient(180deg, #fbfaf7 0%, var(--surface-warm) 100%);
}

.compare-card:first-child {
  background: linear-gradient(180deg, #f8f7f4 0%, #f1eee8 100%);
}

.compare-card:last-child {
  background: linear-gradient(180deg, #fff8f3 0%, #f6ede2 100%);
}

.side-panel strong,
.compare-card strong,
.proof-card strong,
.testimonial-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.proof-card strong {
  margin-bottom: 12px;
}

.content-main p,
.section-copy p {
  margin: 0;
  max-width: 60ch;
}

.content-main p+p,
.section-copy p+p {
  margin-top: 16px;
}

.issue-lead {
  max-width: 62ch;
  margin-top: 18px;
}

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

.issue-item {
  padding: 22px 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 22px;
  background: #ffffff;
}

.issue-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 16px;
  align-items: start;
  margin-bottom: 10px;
}

.issue-item strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.issue-icon {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
  justify-self: end;
  mix-blend-mode: multiply;
}

.issue-item p {
  margin: 0;
}

.before-after-lead {
  max-width: 62ch;
  margin-top: 18px;
}

.before-after-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.custom-before-after-showcase {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 24px;
}

.website-before-after-showcase {
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.website-before-after-panel {
  padding: 18px 18px 22px;
  background: #fbfbfc;
  border: 1px solid rgba(23, 23, 23, 0.05);
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.06);
}

.website-before-panel {
  background: linear-gradient(180deg, #fcfcfd 0%, #f7f7f8 100%);
}

.website-after-panel {
  background: linear-gradient(180deg, #fcfffe 0%, #f4fcf8 100%);
}

.website-before-after-showcase .before-after-tag {
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.website-before-after-image {
  max-height: none;
  margin-top: 8px;
  margin-bottom: 16px;
  border-radius: 18px;
}

.website-before-after-divider span {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #6c57f5 0%, #8f7eff 100%);
  box-shadow: 0 14px 28px rgba(108, 87, 245, 0.22);
}

.before-after-panel {
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 28px;
}

.before-panel {
  background: #fcecf1;
}

.after-panel {
  background: #f4fdf7;
}

.before-after-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 15px;

}

.website-after-panel .before-after-tag {
  background: #95e0a2f0;
}

.website-before-panel .before-after-tag {
  background: #d2d2d2;
}

.website-before-after-showcase .before-after-divider span {
  background: #7152f3;
}

/* Scoped hooks for the System Integration before/after section. */
.system-before-after-showcase {}

.system-before-after-panel {}

.system-before-panel {
  background: #fcf5f8;
}

.system-after-panel {
  background: #f2f6fd;
}

.system-before-after-image {
  object-fit: contain;
}

.system-before-after-divider {}

/* Scoped hooks for the Website Maintenance before/after section. */
.maintenance-before-after-showcase {}

.maintenance-before-after-panel {
  background: #ffffff;
}

.maintenance-before-panel {}

.maintenance-after-panel {}

.maintenance-before-after-image {
  object-fit: contain;
}

.maintenance-before-after-showcase .before-after-list {
  padding: 10px;
  border-radius: 10px;
}

.maintenance-before-after-showcase .before-list {
  background: rgba(192, 67, 82, 0.1);
}

.maintenance-before-after-showcase .after-list {
  background: rgba(29, 154, 103, 0.12);
}

.maintenance-before-after-divider {}

.before-panel .before-after-tag {
  color: #c04352;
  background: rgba(192, 67, 82, 0.1);
}

.after-panel .before-after-tag {
  color: #1d9a67;
  background: rgba(29, 154, 103, 0.12);
}

.before-after-image {
  display: block;
  width: 100%;
  max-height: 283px;
  margin-top: 18px;
  margin-bottom: 18px;
  border-radius: 24px;
}

.before-after-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.before-after-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
  min-width: 0;
}

.before-after-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.before-list li::before {
  background-image: url("../public/services/close.svg");
}

.after-list li::before {
  background-image: url("../public/services/check.svg");
}

.before-after-divider {
  display: grid;
  place-items: center;
}

.before-after-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #ffffff;
  background: #171717;
  box-shadow: 0 16px 32px rgba(23, 23, 23, 0.16);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after-visual {
  display: grid;
  place-items: center;
}

.before-after-visual-image {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.mini-list,
.process-list,
.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.mini-list {
  margin: 0;
  padding-left: 1.1rem;
}

.mini-list li+li {
  margin-top: 10px;
}

.deliverable-list,
.expand-list {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.deliverable-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.deliverable-item,
.expand-item {
  padding: 22px 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 22px;
  background: #ffffff;
}

.deliverable-item strong,
.expand-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 1.18rem;
}

.deliverable-item p,
.expand-item p,
.compare-card p,
.proof-card p,
.testimonial-card p {
  margin: 0;
}

.automation-deliverables {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  margin-top: 28px;
}

.deliverable-visual {
  position: sticky;
  top: 110px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 91, 0.12), transparent 32%),
    linear-gradient(180deg, #fffaf6 0%, #f8f7f4 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.deliverable-visual-image {
  display: block;
  width: 100%;
  height: auto;
}

.deliverable-stack {
  display: grid;
  gap: 0;
}

.deliverable-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.deliverable-row:last-child {
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.deliverable-index {
  color: rgba(216, 91, 43, 0.52);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.deliverable-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
}

.deliverable-row p {
  margin: 0;
  max-width: 54ch;
}

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

.maintenance-included-card {
  padding: 20px 18px 18px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 22px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maintenance-included-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 14px;
  mix-blend-mode: multiply;
  max-width: 50px;
}

.maintenance-included-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.01rem;
  text-align: center;
}

.maintenance-included-card p {
  margin: 0;
  text-align: center;
  font-size: 15px;
}

.automation-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
  margin-top: 28px;
}

.automation-process-visual {
  position: sticky;
  top: 110px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 30px;
  overflow: hidden;
  background:
    #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  padding: 30px 24px;
}

.automation-process-image {
  display: block;
  width: 50%;
  height: auto;
  margin: auto;
}

.automation-process-track {
  position: relative;
  display: grid;
  gap: 18px;
}

.automation-process-track::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(216, 91, 43, 0.2) 0%,
      rgba(23, 23, 23, 0.1) 100%);
}

.automation-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.automation-process-step:nth-child(even) .automation-process-card {
  transform: translateX(12px);
}

.automation-process-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 91, 43, 0.16);
  border-radius: 18px;
  color: var(--accent-deep);
  background: #fffdfb;
  box-shadow: 0 12px 26px rgba(216, 91, 43, 0.08);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.automation-process-card {
  padding: 22px 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
  transition: transform 180ms ease;
}

.automation-process-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
}

.automation-process-card p {
  margin: 0;
  max-width: 56ch;
}

.process-step {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 22px 0;
}

.process-step+.process-step {
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.process-step strong {
  display: block;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.process-step p {
  margin: 0;
  max-width: 58ch;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.service-case-card {
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 91, 43, 0.14);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
}

.service-case-link {
  display: block;
}

.service-case-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  background: #f7f4ef;
}

.service-case-copy {
  padding: 18px 18px 20px;
}

.service-case-copy strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}

.service-case-copy p {
  margin: 10px 0 0;
}

.service-case-copy span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f1ece3 100%);
  text-align: center;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: 20px;
  color: rgba(216, 91, 43, 0.24);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.faq-intro-card {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.faq-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
}

.faq-intro-visual img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
}

.faq-intro-copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.faq-intro-copy p {
  margin: 0;
  max-width: 34ch;
}

.faq-list {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}

.faq-item {
  min-height: 100%;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 91, 43, 0.18);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.faq-item[open] {
  border-color: rgba(216, 91, 43, 0.18);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 22px 60px 22px 22px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 138, 91, 0.16), rgba(216, 91, 43, 0.08));
  color: var(--accent-deep);
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 24px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.1);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 10px 22px 22px 22px;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.cta-card {
  margin-top: 28px;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-card.service-contact-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.contact-card.service-contact-card h2 {
  font-size: 1.5em;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.contact-list.service-contact-list {
  display: grid;
  gap: 14px;
}

.contact-illustration.service-contact-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.contact-illustration.service-contact-illustration img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
}

.contact-list.service-contact-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-list.service-contact-list a:hover {
  transform: translateX(4px);
  border-color: rgba(216, 91, 43, 0.24);
}

.contact-list.service-contact-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list.service-contact-list strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button-link.primary {
  color: #fff9f4;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 30px rgba(216, 91, 43, 0.2);
}

.button-link.primary:hover,
.button-link.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(216, 91, 43, 0.26);
}

.button-link.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.button-link.secondary:hover,
.button-link.secondary:focus-visible {
  transform: translateY(-2px);
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.18);
  background: rgba(255, 248, 243, 0.98);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(216, 91, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.back-to-top span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 246, 241, 0.96);
  color: var(--accent-deep);
  font-size: 1rem;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.22);
  background: rgba(255, 250, 246, 0.98);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .site-header {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 26px;
  }

  .site-header-bar {
    gap: 12px;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    border-radius: 26px;
    padding: 10px;
    margin-top: 10px;
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .site-nav > a,
  .nav-link,
  .nav-dropdown-toggle {
    min-height: 42px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-lang-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .nav-lang-toggle__item {
    flex: 1;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .hero,
  .meta-grid,
  .two-col,
  .results-grid,
  .gallery-grid,
  .narrative-layout,
  .content-split,
  .compare-grid,
  .proof-grid,
  .testimonial-grid,
  .issue-grid,
  .benefit-mosaic,
  .maintenance-included-grid,
  .automation-deliverables,
  .automation-process,
  .before-after-showcase {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card-wide {
    grid-column: auto;
  }

  .faq-layout,
  .contact-card.service-contact-card {
    grid-template-columns: 1fr;
  }

  .faq-intro-card {
    position: static;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .website-hero-visual .hero-banner-image {
    width: 108%;
    transform: translateX(-5%);
  }

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

  .before-after-divider {
    min-height: 24px;
  }

  .custom-before-after-showcase .before-after-visual {
    order: -1;
    margin-bottom: 6px;
  }

  .website-before-after-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .website-before-after-divider {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(calc(100% - 24px), 1140px);
    margin-bottom: 56px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .back-to-top span:first-child {
    width: 24px;
    height: 24px;
    font-size: 0.92rem;
  }

  .hero {
    gap: 20px;
    padding: 28px 0 22px;
  }

  .section-card {
    padding-top: 30px;
  }

  .section-card+.section-card {
    margin-top: 24px;
  }

  .section-card h2 {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button-link,
  .button-row .button-link {
    width: 100%;
    justify-content: center;
  }

  .workflow-proof-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-proof-frame {
    padding: 20px;
    border-radius: 24px;
  }

  .workflow-proof-lead {
    gap: 12px;
  }

  .workflow-proof-count {
    font-size: 2.8rem;
  }

  .workflow-proof-pills {
    justify-content: flex-start;
    max-width: none;
  }

  .proof-grid.workflow-proof-grid {
    grid-template-columns: 1fr;
  }

  .workflow-proof-card {
    padding-right: 104px;
  }

  .workflow-proof-image {
    width: 74px;
    height: 74px;
  }

  .info-card,
  .side-panel,
  .compare-card,
  .testimonial-card,
  .deliverable-item,
  .expand-item,
  .benefit-card {
    padding: 20px 22px;
  }

  .contact-card.service-contact-card {
    padding: 22px;
  }

  .faq-intro-card {
    padding: 20px 22px;
    border-radius: 24px;
  }

  .faq-intro-visual {
    min-height: 180px;
    padding: 16px;
    border-radius: 20px;
  }

  .faq-item {
    border-radius: 22px;
  }

  .faq-item summary {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 54px 18px 18px;
  }

  .faq-index {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 0.84rem;
  }

  .faq-item summary::after {
    right: 18px;
    top: 20px;
  }

  .faq-item p {
    padding: 10px 18px 18px 18px;
  }

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

  .deliverable-visual {
    position: static;
    border-radius: 24px;
  }

  .automation-process-visual {
    position: static;
    border-radius: 24px;
  }

  .automation-process-track::before {
    left: 22px;
  }

  .automation-process-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .automation-process-step:nth-child(even) .automation-process-card {
    transform: none;
  }

  .automation-process-marker {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 0.84rem;
  }

  .automation-process-card {
    padding: 20px 22px;
    border-radius: 22px;
  }

  .deliverable-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .deliverable-index {
    font-size: 1.08rem;
  }

  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .before-after-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .before-after-image {
    margin-top: 16px;
    border-radius: 20px;
  }

  .issue-top {
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 12px;
  }

  .issue-icon {
    width: 74px;
    height: 74px;
  }

  .hero-banner-image {
    border-radius: 24px;
  }

  .website-hero-visual {
    border-radius: 24px;
    margin-left: 0px;
  }

  .website-hero-visual .hero-banner-image {
    width: 106%;
    transform: translateX(-3%);
  }

  .hero-visual::before {
    width: 72px;
    margin-bottom: 14px;
  }
}

@media (max-width: 560px) {
  .hero-copy,
  .hero-visual,
  .section-card,
  .faq-intro-card,
  .contact-card.service-contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .workflow-proof-card {
    padding-right: 88px;
  }

  .workflow-proof-image {
    width: 64px;
    height: 64px;
  }
}
