:root {
  --bg: #f4f2ee;
  --surface: #fbfaf7;
  --surface-soft: #eeebe6;
  --ink: #2e2b2b;
  --ink-soft: #504b49;
  --muted: #807a76;
  --line: #d8d2cc;
  --line-strong: #2e2b2b;
  --primary: #2e2b2b;
  --secondary: #6e6e6e;
  --cta: #8d6b59;
  --cta-soft: rgba(141, 107, 89, 0.16);
  --container: min(1440px, calc(100vw - 64px));
  --shadow-sm: 0 1px 2px rgba(46, 43, 43, 0.05);
  --shadow-md: 0 14px 36px rgba(46, 43, 43, 0.08);
  --shadow-xl: 0 30px 70px rgba(46, 43, 43, 0.14);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display-weight: 800;
  --title-weight: 760;
  --lead-weight: 400;
  --body-weight: 400;
  --support-weight: 500;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(46, 43, 43, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46, 43, 43, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(141, 107, 89, 0.12), transparent 28vw),
    var(--bg);
  background-size: 88px 88px, 88px 88px, auto, auto;
  color: var(--ink);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: var(--body-weight);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link:focus {
  top: 16px;
  left: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  width: var(--container);
  min-height: 78px;
  padding: 12px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(46, 43, 43, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 242, 238, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  animation: header-in 680ms var(--ease) both;
}

.home-page::before,
.services-page::before,
.design-step-page::before,
.legal-page::before,
.book-page::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 18;
  height: 150px;
  pointer-events: none;
  opacity: 0;
  border-bottom: 1px solid rgba(46, 43, 43, 0.08);
  background: rgba(247, 245, 240, 0.98);
  box-shadow: 0 18px 40px rgba(46, 43, 43, 0.06);
  transition: opacity 180ms var(--ease);
}

.home-page.home-header-veil::before {
  opacity: 1;
}

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

.brand img {
  width: 134px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 13px;
  align-items: center;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 0.82fr);
  gap: clamp(32px, 4.2vw, 72px);
  align-items: center;
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: 148px 0 72px;
  overflow: hidden;
}

.hero > *,
.about-grid > *,
.contact > *,
.contact-story > * {
  min-width: 0;
}

.hero-mark {
  position: absolute;
  right: 2vw;
  bottom: 8vh;
  z-index: -1;
  display: flex;
  gap: 18px;
  opacity: 0.06;
  transform: skewX(-12deg);
}

.hero-mark span {
  display: block;
  width: 90px;
  height: 430px;
  background: var(--primary);
}

.hero-copy {
  max-width: 820px;
}

.hero-copy .eyebrow {
  animation: reveal-up 640ms var(--ease) 120ms both;
}

.eyebrow,
.section-label {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-weight: var(--display-weight);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1;
}

.hero-copy h1 {
  animation: reveal-up 760ms var(--ease) 220ms both;
}

h1 span {
  display: block;
}

.hero-name {
  color: var(--cta);
}

.hero-title-desktop,
.hero-title-mobile {
  color: var(--ink);
}

.hero-title-mobile,
.copy-mobile,
.mobile-hero-actions,
.services-title-mobile,
.services-mobile-lead,
.book-title-mobile,
.book-mobile-signals,
.book-thought-points {
  display: none;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: var(--lead-weight);
  line-height: 1.62;
  text-wrap: pretty;
  animation: reveal-up 720ms var(--ease) 340ms both;
}

.mobile-signal-strip {
  display: none;
}

.hero-slider {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: center;
  animation: reveal-panel 820ms var(--ease) 420ms both;
}

.slider-frame {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.1), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow-xl);
}

.slider-item {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: clamp(28px, 4vw, 52px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}

.slider-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.slide-count {
  color: var(--cta);
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.slide-kicker {
  margin: 42px 0 14px;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-item h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(30px, 2.75vw, 40px);
  line-height: 1;
}

.slider-item p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: var(--body-weight);
  line-height: 1.62;
  text-wrap: pretty;
}

.slider-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.slider-button {
  position: relative;
  min-height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: border-color 180ms var(--ease), opacity 180ms var(--ease);
}

.slider-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 8px;
  border-radius: 999px;
  background: var(--cta);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}

.slider-button.is-active::before {
  border-color: var(--cta);
  opacity: 0.36;
}

.slider-button.is-active::after {
  animation: slider-progress 5200ms linear forwards;
}

.slider-button:focus-visible {
  outline: 3px solid var(--cta-soft);
}

.slider-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  background: var(--cta);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.slider-cta:hover,
.slider-cta:focus-visible {
  background: transparent;
  color: var(--cta);
  outline: none;
}

.award-ribbon {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 45;
  width: 122px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 112px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 128px;
}

.services {
  padding-top: 96px;
}

.services-head {
  max-width: 1180px;
  margin-bottom: 42px;
}

.section-title h2,
.services-head h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.98;
}

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

.service-grid article,
.service-card {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.84);
  box-shadow: var(--shadow-sm);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease), background 220ms var(--ease);
}

.service-grid article::after,
.service-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -42px;
  width: 32px;
  height: 134px;
  background: var(--cta);
  opacity: 0.1;
  transform: skewX(-12deg);
}

.service-grid article:hover,
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--cta);
  box-shadow: var(--shadow-md);
  outline: none;
}

.service-grid article:hover::after,
.service-card:hover::after,
.service-card:focus-visible::after,
.process-grid article:hover::after,
.contact-card:hover::after,
.social-links a:hover::after {
  opacity: 0.16;
}

.service-grid span,
.process-grid span,
.contact-card span,
.social-links span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid h3 {
  position: relative;
  z-index: 1;
  margin: 64px 0 14px;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1;
}

.service-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: var(--body-weight);
}

.service-card em {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 22px;
  color: var(--cta);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.section-title {
  position: sticky;
  top: 144px;
}

.section-title > span {
  display: block;
  height: 68px;
  color: var(--cta);
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 0.7;
}

.rich-text {
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: var(--body-weight);
  line-height: 1.72;
}

.rich-text p {
  margin-bottom: 26px;
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.authority-strip span {
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.72);
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.45;
}

.authority-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

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

.process-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 440px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(244, 240, 233, 0.94));
  box-shadow: var(--shadow-sm);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.process-card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.process-card-link:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: -6px;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 210, 31, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(46, 43, 43, 0.035) 1px, transparent 1px);
  background-size: auto, 72px 72px;
  opacity: 0.85;
}

.process-grid article::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -42px;
  width: 32px;
  height: 134px;
  background: var(--cta);
  opacity: 0.08;
  transform: skewX(-12deg);
  transition: opacity 220ms var(--ease);
}

.process-grid article:nth-child(2) {
  border-color: rgba(46, 43, 43, 0.78);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.34), transparent 46%),
    linear-gradient(160deg, #2e2b2b 0%, #342f2c 54%, #211f1f 100%);
  color: #fff;
}

.process-grid article:nth-child(2)::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 210, 31, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
  opacity: 1;
}

.process-grid article:nth-child(3) {
  border-color: rgba(191, 64, 60, 0.18);
  background:
    linear-gradient(135deg, rgba(191, 64, 60, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(239, 234, 228, 0.94));
}

.process-grid article:nth-child(3)::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(191, 64, 60, 0.13), transparent 25%),
    linear-gradient(135deg, rgba(141, 107, 89, 0.08), transparent 52%);
  opacity: 1;
}

.process-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--cta);
  box-shadow: var(--shadow-md);
}

.process-grid span {
  display: block;
  margin-bottom: 76px;
}

.process-grid h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
}

.process-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: var(--body-weight);
  line-height: 1.6;
}

.process-card-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.process-card-points li {
  display: inline-flex;
  min-height: 32px;
  padding: 8px 10px;
  align-items: center;
  border: 1px solid rgba(141, 107, 89, 0.24);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.72);
  color: #6f5142;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.process-grid em {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 4;
  color: var(--cta);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.process-grid article:nth-child(2) em {
  color: rgba(255, 255, 255, 0.86);
}

.process-grid span,
.process-grid h2 {
  position: relative;
  z-index: 1;
}

.process-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.74);
}

.process-grid article:nth-child(2) .process-card-points li {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff7ed;
}

.contact {
  position: relative;
  overflow: clip;
}

.contact::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 26px;
  z-index: -1;
  width: 260px;
  height: 360px;
  background: var(--cta);
  opacity: 0.09;
  transform: skewX(-12deg);
}

.contact-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.92fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
}

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

.contact-copy h2 span {
  display: block;
  color: var(--cta);
}

.contact-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: var(--lead-weight);
  line-height: 1.68;
  text-wrap: pretty;
}

.contact-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

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

.contact-card {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 26px;
  overflow: hidden;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -40px;
  width: 36px;
  height: 142px;
  background: currentColor;
  opacity: 0.1;
  transform: skewX(-12deg);
}

.contact-card.is-strong {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.contact-card.is-mail {
  grid-column: 1 / -1;
  min-height: 126px;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--cta);
  box-shadow: var(--shadow-md);
  outline: none;
}

.contact-card.is-whatsapp:hover,
.contact-card.is-whatsapp:focus-visible {
  background: var(--cta);
  color: #fff;
}

.contact-card.is-whatsapp:hover span,
.contact-card.is-whatsapp:focus-visible span,
.contact-card.is-whatsapp:hover strong,
.contact-card.is-whatsapp:focus-visible strong {
  color: #fff;
}

.contact-card.is-whatsapp:hover::after,
.contact-card.is-whatsapp:focus-visible::after {
  color: #fff;
  background: #fff;
  opacity: 0.28;
}

.contact-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
}

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

.social-links a {
  position: relative;
  --social-color: var(--cta);
  --social-bg: var(--social-color);
  overflow: hidden;
  display: grid;
  gap: 34px;
  min-height: 136px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.84);
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.social-links a::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: -42px;
  width: 26px;
  height: 126px;
  background: currentColor;
  opacity: 0.08;
  transform: skewX(-12deg);
  transition: opacity 180ms var(--ease);
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-4px);
  border-color: var(--social-color);
  background: var(--social-bg);
  color: #fff;
  box-shadow: var(--shadow-md);
  outline: none;
}

.social-links a:hover span,
.social-links a:focus-visible span {
  color: #fff;
}

.social-links a:nth-child(1) {
  --social-color: #1877f2;
}

.social-links a:nth-child(2) {
  --social-color: #1da1f2;
}

.social-links a:nth-child(3) {
  --social-color: #0a66c2;
}

.social-links a:nth-child(4) {
  --social-color: #e4405f;
  --social-bg: linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
}

.social-links strong {
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(19px, 1.8vw, 28px);
  line-height: 1.05;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 118px;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.footer-signoff {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.footer-heart {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--cta);
  opacity: 0.62;
  animation: footer-heart-pulse 1.9s ease-in-out infinite;
}

.footer-heart svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: center;
}

.footer-legal-links a {
  display: inline-flex;
  min-height: 28px;
  padding: 4px 0;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms var(--ease);
}

.footer-legal-links a + a::before {
  content: "/";
  margin: 0 12px;
  color: rgba(141, 107, 89, 0.56);
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-legal-links a[aria-current="page"] {
  color: var(--cta);
  outline: none;
}

.legal-page main {
  padding-top: 150px;
}

.legal-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 44px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95;
}

.legal-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: var(--lead-weight);
  line-height: 1.45;
}

.legal-document {
  position: relative;
  overflow: hidden;
  width: var(--container);
  margin: 42px auto 72px;
  padding: clamp(22px, 4vw, 56px);
  border: 1px solid rgba(46, 43, 43, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: var(--shadow-sm);
}

.legal-document::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 46px;
  width: 34px;
  height: 180px;
  background: var(--cta);
  opacity: 0.08;
  transform: skewX(-12deg);
}

.legal-document h2 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 34px;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 0.98;
}

.legal-document p,
.legal-document li,
.legal-document td {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: var(--body-weight);
  line-height: 1.72;
}

.legal-document p {
  position: relative;
  z-index: 1;
  max-width: min(100%, 1180px);
  margin: 0 0 22px;
}

.legal-document strong {
  color: var(--ink);
  font-weight: 800;
}

.legal-document a {
  color: var(--cta);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-document a:hover,
.legal-document a:focus-visible {
  color: var(--ink);
  outline: none;
}

.legal-document ol {
  display: grid;
  gap: 10px;
  max-width: min(100%, 1180px);
  margin: 0 0 22px;
  padding-left: 24px;
}

.legal-document .table-responsive {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 20px 0 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 242, 238, 0.7);
}

.legal-document table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.legal-document td {
  padding: 14px 16px;
  border: 1px solid rgba(46, 43, 43, 0.12);
  vertical-align: top;
}

.legal-document tr:first-child td {
  color: var(--cta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-page {
  background:
    linear-gradient(90deg, rgba(46, 43, 43, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46, 43, 43, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 12%, rgba(141, 107, 89, 0.14), transparent 30vw),
    var(--bg);
  background-size: 88px 88px, 88px 88px, auto, auto;
}

.book-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: 154px 0 82px;
  overflow: hidden;
}

.book-hero > *,
.book-thought-grid > *,
.book-section-head > *,
.market-card > * {
  min-width: 0;
}

.book-copy .eyebrow {
  animation: reveal-up 640ms var(--ease) 120ms both;
}

.book-copy h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.1vw, 96px);
  line-height: 0.96;
  white-space: nowrap;
  animation: reveal-up 760ms var(--ease) 220ms both;
}

.book-copy h1 span {
  display: inline;
  color: inherit;
}

.book-title-top {
  color: #2e2b2b !important;
  text-shadow: none;
}

.book-title-band {
  color: #ffd21f !important;
}

.book-title-mind {
  color: #e32726 !important;
}

.book-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: var(--lead-weight);
  line-height: 1.34;
  animation: reveal-up 720ms var(--ease) 320ms both;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: reveal-up 700ms var(--ease) 420ms both;
}

.book-primary-link,
.book-secondary-link {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.book-primary-link {
  background: var(--cta);
  color: #fff;
}

.book-secondary-link {
  background: rgba(251, 250, 247, 0.72);
  color: var(--cta);
}

.book-primary-link:hover,
.book-primary-link:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  outline: none;
}

.book-secondary-link:hover,
.book-secondary-link:focus-visible {
  background: var(--cta-soft);
  outline: none;
}

.book-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  animation: reveal-panel 820ms var(--ease) 380ms both;
}

.book-orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.book-orbit span {
  position: absolute;
  border: 1px solid rgba(111, 79, 60, 0.22);
  border-radius: 50%;
  animation: book-orbit 13s linear infinite;
}

.book-orbit span:nth-child(1) {
  width: min(460px, 82vw);
  height: min(460px, 82vw);
}

.book-orbit span:nth-child(2) {
  width: min(340px, 62vw);
  height: min(340px, 62vw);
  animation-duration: 18s;
  animation-direction: reverse;
}

.book-orbit span:nth-child(3) {
  width: 14px;
  height: 14px;
  border: 0;
  background: #6f4f3c;
  box-shadow: 0 0 0 14px rgba(111, 79, 60, 0.16);
  transform: translate(180px, -160px);
}

.book-cover-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(330px, 72vw);
  padding: 16px;
  border: 1px solid rgba(46, 43, 43, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 79, 60, 0.16), transparent 46%),
    rgba(251, 250, 247, 0.9);
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
}

.book-cover-frame::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -20px;
  z-index: -1;
  width: 120px;
  height: 260px;
  background: #6f4f3c;
  opacity: 0.12;
  transform: skewX(-12deg);
}

.book-cover-frame img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(46, 43, 43, 0.24);
}

.book-section {
  width: var(--container);
  margin: 0 auto;
  padding: 108px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 128px;
}

.book-thought-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.64fr) minmax(0, 0.9fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.book-thought h2,
.book-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.35vw, 64px);
  line-height: 0.98;
}

.book-thought p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: var(--lead-weight);
  line-height: 1.72;
  text-wrap: pretty;
}

.book-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.book-section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16.5px;
  font-weight: var(--lead-weight);
  line-height: 1.68;
  text-wrap: pretty;
}

.signed-buy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(24px, 3.2vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(141, 107, 89, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.12), transparent 44%),
    rgba(251, 250, 247, 0.9);
  box-shadow: 0 16px 34px rgba(141, 107, 89, 0.1);
}

.signed-buy-panel > div > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signed-buy-panel h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.55vw, 38px);
  line-height: 1.08;
}

.signed-buy-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: var(--lead-weight);
  line-height: 1.66;
  text-wrap: pretty;
}

.signed-buy-actions {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.signed-buy-actions a {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  background: var(--cta);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.signed-buy-actions a:hover,
.signed-buy-actions a:focus-visible {
  background: transparent;
  color: var(--cta);
  outline: none;
}

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

.market-card {
  position: relative;
  display: grid;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.88);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.market-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -42px;
  width: 30px;
  height: 142px;
  background: var(--cta);
  opacity: 0.07;
  transform: skewX(-12deg);
  transition: opacity 220ms var(--ease);
}

.market-card span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-card img {
  position: relative;
  z-index: 1;
  max-width: min(210px, 78%);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.market-card strong {
  position: relative;
  z-index: 1;
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.05;
}

.market-card:hover,
.market-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--cta);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 16px 36px rgba(141, 107, 89, 0.14);
  outline: none;
}

.market-card:hover::after,
.market-card:focus-visible::after {
  opacity: 0.16;
}

.services-page main {
  padding-top: 150px;
}

.services-page::before,
.design-step-page::before {
  height: 246px;
}

.services-page.service-nav-veil::before,
body.interior-header-veil::before {
  opacity: 1;
}

.detail-visual::after,
.service-final-cta::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -42px;
  width: 36px;
  height: 160px;
  background: var(--cta);
  opacity: 0.12;
  transform: skewX(-12deg);
}

.detail-number,
.detail-visual span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-visual span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(141, 107, 89, 0.2);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.86);
  color: #6f5142;
}

.service-jump-shell {
  position: sticky;
  top: 150px;
  z-index: 30;
  width: var(--container);
  margin: 0 auto 42px;
  overflow: hidden;
  border: 1px solid rgba(46, 43, 43, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 234, 228, 0.78)),
    rgba(244, 242, 238, 0.92);
  box-shadow: 0 18px 42px rgba(46, 43, 43, 0.1);
  backdrop-filter: blur(16px);
}

.service-jump-nav {
  counter-reset: service-nav;
  display: flex;
  gap: 6px;
  padding: 12px;
  overflow-x: auto;
}

.service-jump-nav a {
  counter-increment: service-nav;
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 44px;
  padding: 7px 12px 7px 8px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.service-jump-nav a::before {
  content: counter(service-nav, decimal-leading-zero);
  display: inline-grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(148, 117, 96, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.service-jump-nav a:hover,
.service-jump-nav a:focus-visible,
.service-jump-nav a.is-active {
  border-color: rgba(141, 107, 89, 0.24);
  background: rgba(46, 43, 43, 0.055);
  color: var(--ink);
  outline: none;
}

.service-jump-nav a.is-active {
  border-color: rgba(46, 43, 43, 0.16);
  background: rgba(46, 43, 43, 0.08);
}

.service-jump-nav a:hover::before,
.service-jump-nav a:focus-visible::before,
.service-jump-nav a.is-active::before {
  border-color: var(--cta);
  background: var(--ink);
  color: #fff;
}

.detail-service {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 270px;
}

.detail-service-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  column-gap: clamp(24px, 5vw, 84px);
  row-gap: 10px;
  align-items: end;
  max-width: none;
  margin-bottom: 36px;
}

.detail-service-head .eyebrow,
.detail-service-head .detail-number {
  grid-column: 1;
}

.detail-number {
  margin-bottom: 18px;
}

.detail-service h2 {
  grid-column: 1;
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(32px, 3.55vw, 56px);
  line-height: 1.02;
}

.detail-service-head > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 3;
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(15.5px, 1.08vw, 18px);
  font-weight: var(--lead-weight);
  line-height: 1.72;
  text-wrap: pretty;
}

.detail-service-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 3.2vw, 44px);
  align-items: stretch;
}

.detail-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 360px;
  padding: 26px;
  align-content: space-between;
  border: 1px solid rgba(46, 43, 43, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.14), transparent 42%),
    rgba(251, 250, 247, 0.9);
  box-shadow: var(--shadow-md);
}

.detail-visual strong {
  position: relative;
  z-index: 1;
  max-width: 320px;
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.detail-visual i {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  height: 14px;
  border: 1px solid rgba(46, 43, 43, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: left center;
}

.detail-visual i::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0;
  transform: translateX(-120%);
}

.detail-service.is-current-service .detail-visual i {
  animation: service-line-draw 820ms var(--ease) both;
}

.detail-service.is-current-service .detail-visual i::after {
  opacity: 1;
  animation: service-line-scan 1800ms var(--ease) 460ms both;
}

.detail-service.is-current-service .detail-visual i:nth-of-type(2) {
  animation-delay: 130ms;
}

.detail-service.is-current-service .detail-visual i:nth-of-type(3) {
  animation-delay: 260ms;
}

.detail-service.is-current-service .detail-visual i:nth-of-type(2)::after {
  animation-delay: 640ms;
}

.detail-service.is-current-service .detail-visual i:nth-of-type(3)::after {
  animation-delay: 820ms;
}

.detail-visual i:nth-of-type(1) {
  width: 72%;
}

.detail-visual i:nth-of-type(2) {
  width: 52%;
}

.detail-visual i:nth-of-type(3) {
  width: 86%;
}

.detail-service.is-current-service .detail-visual,
.detail-visual.is-dark {
  border-color: rgba(46, 43, 43, 0.78);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.34), transparent 46%),
    linear-gradient(160deg, #2e2b2b 0%, #342f2c 54%, #211f1f 100%);
  color: #fff;
}

.detail-service.is-current-service .detail-visual span,
.detail-visual.is-dark span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ed;
}

.detail-service.is-current-service .detail-visual::after,
.detail-visual.is-dark::after {
  opacity: 0.18;
}

.detail-service.is-current-service .detail-visual i,
.detail-visual.is-dark i {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
}

.detail-visual.is-warm {
  background: linear-gradient(135deg, rgba(141, 107, 89, 0.16), transparent 44%), rgba(251, 250, 247, 0.92);
}

.detail-visual.is-red {
  background: linear-gradient(135deg, rgba(191, 64, 60, 0.14), transparent 44%), rgba(251, 250, 247, 0.92);
}

.detail-visual.is-social {
  background: linear-gradient(135deg, rgba(29, 161, 242, 0.12), transparent 42%), rgba(251, 250, 247, 0.92);
}

.detail-visual.is-mail {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.12), transparent 44%), rgba(251, 250, 247, 0.92);
}

.detail-visual.is-it {
  background: linear-gradient(135deg, rgba(46, 43, 43, 0.11), transparent 44%), rgba(251, 250, 247, 0.92);
}

.detail-visual.is-consult {
  background: linear-gradient(135deg, rgba(141, 107, 89, 0.18), transparent 44%), rgba(251, 250, 247, 0.92);
}

.detail-content {
  display: grid;
  align-content: start;
  gap: 22px;
}

.detail-content h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
}

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

.benefit-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 172px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.86);
}

.topic-page .benefit-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(141, 107, 89, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.9) 0 9%, transparent 10%),
    linear-gradient(90deg, transparent 46%, rgba(255, 255, 255, 0.62) 47% 53%, transparent 54%),
    linear-gradient(135deg, var(--cta), rgba(141, 107, 89, 0.34));
  box-shadow: 0 10px 24px rgba(141, 107, 89, 0.14);
}

.topic-page .benefit-grid article:nth-child(2)::before {
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.88) 0 8%, transparent 9%),
    radial-gradient(circle at 66% 66%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%),
    linear-gradient(135deg, #2e2b2b, rgba(46, 43, 43, 0.42));
}

.topic-page .benefit-grid article:nth-child(3)::before {
  background:
    linear-gradient(45deg, transparent 43%, rgba(255, 255, 255, 0.74) 44% 56%, transparent 57%),
    linear-gradient(135deg, #1d7480, rgba(29, 116, 128, 0.32));
}

.mini-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(141, 107, 89, 0.34);
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(135deg, var(--cta), rgba(141, 107, 89, 0.36));
}

.mini-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid strong {
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.05;
}

.benefit-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: var(--body-weight);
}

.detail-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: detail-step;
}

.detail-steps-label {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-steps-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(141, 107, 89, 0.24);
}

.detail-steps li {
  counter-increment: detail-step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.72);
  color: var(--ink-soft);
  font-weight: var(--support-weight);
}

.detail-steps li::before {
  content: counter(detail-step, decimal-leading-zero);
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
}

.detail-cta {
  display: inline-flex;
  min-height: 48px;
  width: fit-content;
  padding: 13px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  background: var(--cta);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.detail-cta:hover,
.detail-cta:focus-visible {
  background: transparent;
  color: var(--cta);
  outline: none;
}

.service-seo-intro,
.service-faq {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.service-seo-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.58fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: center;
  padding-top: 0;
  border-top: 0;
}

.service-seo-intro h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 0.98;
}

.topic-hero {
  min-height: auto;
  padding-bottom: 70px;
}

.topic-hero-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.service-seo-copy {
  display: grid;
  gap: 18px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.72;
}

.service-seo-copy p {
  margin: 0;
}

.topic-hero-copy .service-seo-copy {
  margin-top: 24px;
}

.topic-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.topic-pill-row span {
  display: inline-flex;
  min-height: 36px;
  padding: 9px 12px;
  align-items: center;
  border: 1px solid rgba(141, 107, 89, 0.28);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.82);
  color: #6f5142;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.topic-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(46, 43, 43, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xl);
}

.topic-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(46, 43, 43, 0.34)),
    linear-gradient(135deg, rgba(141, 107, 89, 0.16), transparent 42%);
  pointer-events: none;
}

.topic-visual::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 42px;
  z-index: 2;
  width: 42px;
  height: 210px;
  background: var(--cta);
  opacity: 0.42;
  transform: skewX(-12deg);
}

.topic-visual img {
  width: 100%;
  height: min(540px, 42vw);
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.topic-visual figcaption,
.topic-visual-card {
  position: absolute;
  z-index: 3;
}

.topic-visual figcaption {
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 7px;
  background: rgba(46, 43, 43, 0.72);
  color: #fffaf5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.32;
  backdrop-filter: blur(14px);
}

.topic-visual-card {
  top: 18px;
  left: 18px;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(46, 43, 43, 0.14);
  border-radius: 7px;
  background: rgba(251, 250, 247, 0.9);
  box-shadow: 0 18px 42px rgba(46, 43, 43, 0.14);
  backdrop-filter: blur(14px);
}

.topic-visual-card span {
  color: var(--cta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.topic-visual-card strong {
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.02;
}

.topic-hero--seo .topic-visual-card,
.topic-hero--local .topic-visual-card {
  left: auto;
  right: 18px;
}

.topic-hero--brand .topic-visual::after {
  background: #1d7480;
}

.seo-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.seo-focus-list span,
.seo-focus-list a {
  display: inline-flex;
  min-height: 34px;
  padding: 8px 11px;
  align-items: center;
  border: 1px solid rgba(141, 107, 89, 0.26);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.74);
  color: var(--cta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.seo-focus-list a:hover,
.seo-focus-list a:focus-visible {
  border-color: var(--cta);
  background: var(--cta);
  color: #fff;
  outline: none;
}

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

.service-faq-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.86);
  box-shadow: var(--shadow-sm);
}

.service-faq-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(21px, 1.7vw, 30px);
  line-height: 1.05;
}

.service-faq-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.62;
}

.topic-sales-section,
.topic-process-section {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

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

.topic-sales-grid article {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 240px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(46, 43, 43, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.12), transparent 46%),
    rgba(251, 250, 247, 0.88);
  box-shadow: var(--shadow-sm);
}

.topic-sales-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -46px;
  width: 26px;
  height: 140px;
  background: var(--cta);
  opacity: 0.12;
  transform: skewX(-12deg);
}

.topic-sales-grid span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.topic-sales-grid h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.02;
}

.topic-sales-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

.topic-process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: topic-process;
}

.topic-process-list li {
  counter-increment: topic-process;
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(46, 43, 43, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.78);
}

.topic-process-list li::before {
  content: counter(topic-process, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(141, 107, 89, 0.32);
  border-radius: 50%;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
}

.topic-process-list strong {
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.06;
}

.topic-process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.56;
}

.guide-list {
  display: grid;
  gap: 14px;
  width: min(1120px, var(--container));
  margin: 0 auto 72px;
}

.guide-list article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: clamp(18px, 2.4vw, 34px);
  row-gap: 14px;
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.88);
  box-shadow: var(--shadow-sm);
}

.guide-list article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -54px;
  width: 32px;
  height: 150px;
  background: var(--cta);
  opacity: 0.08;
  transform: skewX(-12deg);
}

.guide-list span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guide-list h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(24px, 2.4vw, 42px);
  line-height: 1.04;
}

.guide-list p {
  grid-column: 2;
  max-width: 820px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.64;
}

.guide-list a {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  min-height: 44px;
  padding: 12px 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  color: var(--cta);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.guide-list a:hover,
.guide-list a:focus-visible {
  background: var(--cta);
  color: #fff;
  outline: none;
}

.service-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: var(--container);
  margin: 0 auto 72px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(46, 43, 43, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.14), transparent 46%),
    rgba(251, 250, 247, 0.92);
  box-shadow: var(--shadow-md);
}

.service-final-cta h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 0.98;
}

.design-step-page main {
  padding-top: 150px;
}

.design-step-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.44fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
  width: var(--container);
  min-height: min(540px, calc(100svh - 230px));
  margin: 0 auto;
  padding: 34px 0 46px;
  overflow: hidden;
}

.design-step-hero::after {
  content: "";
  position: absolute;
  right: 2vw;
  bottom: 28px;
  z-index: -1;
  width: 54px;
  height: 300px;
  background: var(--cta);
  opacity: 0.08;
  transform: skewX(-12deg);
}

.design-step-copy {
  display: grid;
  align-content: start;
  min-width: 0;
  padding-top: clamp(12px, 2vw, 28px);
}

.design-step-copy .detail-number {
  display: inline-flex;
  margin-bottom: 18px;
}

.design-step-copy h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.94;
  animation: reveal-up 760ms var(--ease) 160ms both;
}

.design-step-lead {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: var(--lead-weight);
  line-height: 1.45;
  animation: reveal-up 720ms var(--ease) 260ms both;
}

.step-outcome-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  animation: reveal-up 720ms var(--ease) 330ms both;
}

.step-outcome-strip span {
  display: inline-flex;
  min-height: 40px;
  padding: 9px 12px;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(141, 107, 89, 0.26);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.76);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.step-outcome-strip strong {
  color: var(--cta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.design-step-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 440px;
  padding: clamp(24px, 3vw, 34px);
  align-content: space-between;
  align-self: center;
  border: 1px solid rgba(46, 43, 43, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.14), transparent 42%),
    rgba(251, 250, 247, 0.94);
  box-shadow: var(--shadow-md);
  animation: reveal-up 760ms var(--ease) 320ms both;
}

.design-step-visual::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -46px;
  width: 34px;
  height: 166px;
  background: var(--cta);
  opacity: 0.12;
  transform: skewX(-12deg);
}

.design-step-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(141, 107, 89, 0.2);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.86);
  color: #6f5142;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.design-step-visual strong {
  position: relative;
  z-index: 1;
  max-width: 360px;
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1;
}

.design-step-visual i {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  height: 14px;
  border: 1px solid rgba(46, 43, 43, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: left center;
  animation: service-line-draw 820ms var(--ease) both;
}

.design-step-visual i::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 1;
  transform: translateX(-120%);
  animation: service-line-scan 1800ms var(--ease) 460ms both;
}

.design-step-visual i:nth-of-type(1) {
  width: 72%;
}

.design-step-visual i:nth-of-type(2) {
  width: 52%;
  animation-delay: 130ms;
}

.design-step-visual i:nth-of-type(2)::after {
  animation-delay: 640ms;
}

.design-step-visual i:nth-of-type(3) {
  width: 86%;
  animation-delay: 260ms;
}

.design-step-visual i:nth-of-type(3)::after {
  animation-delay: 820ms;
}

.design-step-visual.is-dark {
  border-color: rgba(46, 43, 43, 0.78);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.34), transparent 46%),
    linear-gradient(160deg, #2e2b2b 0%, #342f2c 54%, #211f1f 100%);
  color: #fff;
}

.design-step-visual.is-dark span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ed;
}

.design-step-visual.is-dark i {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
}

.design-step-visual.is-warm {
  background:
    linear-gradient(135deg, rgba(191, 64, 60, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(239, 234, 228, 0.94));
}

.design-step-nav {
  position: sticky;
  top: 150px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: var(--container);
  margin: 0 auto 30px;
  padding: 14px 18px;
  overflow: hidden;
  border: 1px solid rgba(46, 43, 43, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 234, 228, 0.78)),
    rgba(244, 242, 238, 0.92);
  box-shadow: 0 18px 42px rgba(46, 43, 43, 0.1);
  backdrop-filter: blur(16px);
}

.design-step-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 117, 96, 0.1), rgba(148, 117, 96, 0.38), rgba(148, 117, 96, 0.1));
  pointer-events: none;
  transform: translateY(-50%);
}

.design-step-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  flex-direction: row;
  gap: 10px;
  min-height: 50px;
  padding: 8px 15px 8px 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.42);
  color: transparent;
  font-size: 0;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.design-step-nav a::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(148, 117, 96, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(46, 43, 43, 0.08);
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.design-step-nav a:nth-child(1)::before {
  content: "01";
}

.design-step-nav a:nth-child(2)::before {
  content: "02";
}

.design-step-nav a:nth-child(3)::before {
  content: "03";
}

.design-step-nav a::after {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms var(--ease);
}

.design-step-nav a:nth-child(1)::after {
  content: "İhtiyaç ve Hedef";
}

.design-step-nav a:nth-child(2)::after {
  content: "Amaca Uygun Tasarım";
}

.design-step-nav a:nth-child(3)::after {
  content: "Optimizasyon";
}

.design-step-nav a:hover,
.design-step-nav a:focus-visible,
.design-step-nav a[aria-current="page"] {
  border-color: rgba(141, 107, 89, 0.2);
  background: rgba(251, 250, 247, 0.84);
  box-shadow: 0 14px 32px rgba(46, 43, 43, 0.1);
  outline: none;
}

.design-step-nav a:hover::before,
.design-step-nav a:focus-visible::before,
.design-step-nav a[aria-current="page"]::before {
  transform: translateY(-1px);
  border-color: var(--cta);
  background: var(--ink);
  color: #fff;
}

.design-step-nav a:hover::after,
.design-step-nav a:focus-visible::after,
.design-step-nav a[aria-current="page"]::after {
  color: var(--ink);
}

.design-step-section {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 72px;
}

.design-step-section .detail-content {
  max-width: none;
}

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

.step-summary-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(46, 43, 43, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.86);
  box-shadow: var(--shadow-sm);
}

.step-summary-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -46px;
  width: 26px;
  height: 140px;
  background: var(--cta);
  opacity: 0.1;
  transform: skewX(-12deg);
}

.step-summary-grid span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-summary-grid strong {
  font-family: "Archivo", "Space Grotesk", sans-serif;
  font-size: clamp(22px, 1.85vw, 31px);
  line-height: 1.04;
}

.step-summary-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.58;
}

.step-output-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: start;
  margin-top: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(46, 43, 43, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.12), transparent 42%),
    rgba(251, 250, 247, 0.9);
  box-shadow: var(--shadow-md);
}

.step-output-panel h3 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1;
}

.step-output-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-output-list li {
  position: relative;
  min-height: 46px;
  padding: 14px 16px 14px 24px;
  border: 1px solid rgba(46, 43, 43, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(141, 107, 89, 0.07), transparent 28%),
    rgba(255, 255, 255, 0.46);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.step-output-list li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 3px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(141, 107, 89, 0.72), rgba(141, 107, 89, 0.24));
  transform: translateY(-50%);
}

.step-output-list li::after {
  content: none;
}

.design-step-next {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: var(--container);
  margin: 0 auto 72px;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(46, 43, 43, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(141, 107, 89, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 62%),
    rgba(251, 250, 247, 0.92);
  box-shadow: var(--shadow-md);
}

.design-step-next > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.design-step-next::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -42px;
  width: 36px;
  height: 160px;
  background: var(--cta);
  opacity: 0.12;
  transform: skewX(-12deg);
}

.design-step-next h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.04;
}

.design-step-next p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 600;
  line-height: 1.5;
}

.design-step-next .book-primary-link {
  position: relative;
  z-index: 1;
  min-width: 190px;
  white-space: nowrap;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
}

body.reveal-ready [data-reveal].is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.service-grid article:nth-child(2),
.service-grid .service-card:nth-child(2),
.process-grid article:nth-child(2),
.contact-primary .contact-card:nth-child(2),
.social-links a:nth-child(2) {
  --reveal-delay: 70ms;
}

.service-grid article:nth-child(3),
.service-grid .service-card:nth-child(3),
.process-grid article:nth-child(3),
.contact-primary .contact-card:nth-child(3),
.social-links a:nth-child(3) {
  --reveal-delay: 140ms;
}

.service-grid article:nth-child(4),
.service-grid .service-card:nth-child(4),
.social-links a:nth-child(4),
.market-grid .market-card:nth-child(4) {
  --reveal-delay: 210ms;
}

.service-grid article:nth-child(5),
.service-grid .service-card:nth-child(5),
.market-grid .market-card:nth-child(5) {
  --reveal-delay: 80ms;
}

.service-grid article:nth-child(6),
.service-grid .service-card:nth-child(6),
.market-grid .market-card:nth-child(6) {
  --reveal-delay: 150ms;
}

.service-grid article:nth-child(7),
.service-grid .service-card:nth-child(7),
.market-grid .market-card:nth-child(7) {
  --reveal-delay: 220ms;
}

.service-grid article:nth-child(8),
.service-grid .service-card:nth-child(8),
.market-grid .market-card:nth-child(8) {
  --reveal-delay: 290ms;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-panel {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes footer-heart-pulse {
  0%,
  100% {
    opacity: 0.46;
  }

  50% {
    opacity: 0.92;
  }
}

@keyframes slider-progress {
  from {
    transform: translateY(-50%) scaleX(0);
  }

  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes book-orbit {
  from {
    transform: rotate(0deg) translateX(4px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(4px) rotate(-360deg);
  }
}

@keyframes service-line-draw {
  from {
    opacity: 0.58;
    transform: scaleX(0.18);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes service-line-scan {
  0% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(260%);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 980px;
  }

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

  .book-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

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

  .topic-visual img {
    height: min(520px, 58vw);
  }

  .topic-sales-grid {
    grid-template-columns: 1fr;
  }

  .topic-sales-grid article {
    min-height: 0;
  }

  .topic-process-list li {
    grid-template-columns: 54px minmax(170px, 0.34fr) minmax(0, 1fr);
  }

  .authority-strip {
    grid-template-columns: 1fr;
  }

  .guide-list article {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .guide-list article p,
  .guide-list article a {
    grid-column: 2;
  }

  .design-step-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .design-step-visual {
    min-height: 320px;
  }

  .step-summary-grid,
  .step-output-panel {
    grid-template-columns: 1fr;
  }

  .step-summary-grid article {
    min-height: 0;
  }

  .detail-service-head {
    grid-template-columns: 1fr;
    row-gap: 0;
    max-width: 920px;
  }

  .detail-service-head .eyebrow,
  .detail-service-head .detail-number,
  .detail-service h2,
  .detail-service-head > p:last-child {
    grid-column: 1;
  }

  .detail-service-head > p:last-child {
    grid-row: auto;
    max-width: 820px;
  }

  .book-visual {
    min-height: 520px;
  }

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

@media (max-width: 1020px) {
  :root {
    --container: min(100vw - 36px, 760px);
  }

  .services-page main {
    padding-top: 96px;
  }

  .design-step-page main {
    padding-top: 96px;
  }

  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
    grid-template-columns: auto auto;
    width: calc(100% - 16px);
    min-height: 68px;
    padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
    transform: none;
    border-width: 1px;
    border-radius: var(--radius);
    background: rgba(244, 242, 238, 0.96);
    box-shadow: 0 10px 28px rgba(46, 43, 43, 0.08);
    animation: none;
  }

  .nav-toggle {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: end;
    width: 54px;
    height: 54px;
    border-color: transparent;
    background: transparent;
    transition: background 180ms var(--ease), color 180ms var(--ease);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--cta);
    outline-offset: 2px;
  }

  .nav-toggle span:not(.sr-only) {
    position: absolute;
    display: block;
    width: 28px;
    height: 2px;
    margin: 0;
    background: currentColor;
    transition: top 180ms var(--ease), transform 180ms var(--ease), opacity 180ms var(--ease);
  }

  .nav-toggle span:nth-child(1) {
    top: 21px;
  }

  .nav-toggle span:nth-child(2) {
    display: none;
  }

  .nav-toggle span:nth-child(3) {
    top: 31px;
  }

  body.nav-open .nav-toggle {
    border-color: transparent;
    background: transparent;
    color: #fff;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    top: 26px;
    transform: rotate(45deg);
  }

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

  body.nav-open .nav-toggle span:nth-child(3) {
    top: 26px;
    transform: rotate(-45deg);
  }

  .site-nav {
    display: none;
  }

  body.nav-open .site-header {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0;
    align-items: start;
    width: 100%;
    min-height: 100svh;
    padding: calc(20px + env(safe-area-inset-top)) 22px calc(18px + env(safe-area-inset-bottom));
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      radial-gradient(circle at 82% 10%, rgba(141, 107, 89, 0.28), transparent 32vh),
      #2e2b2b;
    background-size: 54px 54px, 54px 54px, auto, auto;
    box-shadow: none;
    color: #fff;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background:
      radial-gradient(circle at 86% 12%, rgba(141, 107, 89, 0.2), transparent 34vw),
      rgba(46, 43, 43, 0.32);
    backdrop-filter: blur(14px) saturate(0.82);
  }

  body.nav-open .brand img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }

  body.nav-open .site-nav {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: clamp(24px, 6vh, 62px) 0;
    overflow: hidden auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    counter-reset: mobile-nav;
    animation: mobile-menu-in 360ms var(--ease) both;
  }

  body.nav-open .site-nav::before {
    content: "MENÜ";
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-bottom: clamp(18px, 4vh, 34px);
    color: rgba(255, 255, 255, 0.44);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.18em;
    white-space: normal;
    pointer-events: none;
  }

  body.nav-open .site-nav::after {
    content: "";
    position: absolute;
    right: clamp(8px, 6vw, 64px);
    bottom: clamp(10px, 6vh, 54px);
    width: clamp(34px, 8vw, 82px);
    height: clamp(170px, 28vh, 280px);
    transform: skewX(-12deg);
    background: rgba(141, 107, 89, 0.16);
    pointer-events: none;
  }

  body.nav-open .site-nav a {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    width: 100%;
    min-height: auto;
    gap: clamp(12px, 3vw, 24px);
    align-items: center;
    padding: clamp(17px, 2.7vh, 28px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-family: "Archivo", "Space Grotesk", sans-serif;
    font-size: clamp(34px, 8vw, 72px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
    box-shadow: none;
    transition: border-color 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease);
    counter-increment: mobile-nav;
  }

  body.nav-open .site-nav a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  body.nav-open .site-nav a::before {
    content: counter(mobile-nav, decimal-leading-zero);
    align-self: start;
    color: var(--cta);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
  }

  body.nav-open .site-nav a:hover,
  body.nav-open .site-nav a:focus-visible,
  body.nav-open .site-nav a[aria-current="page"] {
    border-color: rgba(141, 107, 89, 0.78);
    background: linear-gradient(90deg, rgba(141, 107, 89, 0.18), transparent 72%);
    color: #fff;
    outline: none;
  }

  body.nav-open .site-nav a::after {
    content: "/";
    color: rgba(255, 255, 255, 0.34);
    font-size: clamp(24px, 5vw, 46px);
    font-weight: 500;
    line-height: 1;
  }

  .hero {
    padding-top: 132px;
  }

  .about-grid,
  .contact-story {
    grid-template-columns: 1fr;
  }

  .section-title,
  .contact-copy {
    position: static;
  }

  .process-grid,
  .social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-hero {
    padding-top: 132px;
  }

  .book-thought-grid,
  .book-section-head,
  .signed-buy-panel,
  .service-final-cta {
    grid-template-columns: 1fr;
  }

  .design-step-next {
    grid-template-columns: 1fr;
  }

  .design-step-nav {
    top: 108px;
    margin-bottom: 26px;
  }

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

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

  .signed-buy-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-jump-shell {
    top: 108px;
    margin-bottom: 42px;
  }

  .services-page::before,
  .design-step-page::before {
    height: 198px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .services-page main {
    padding-top: 86px;
  }

  .home-page::before,
  .services-page::before,
  .design-step-page::before,
  .legal-page::before,
  .book-page::before {
    display: none;
  }

  .design-step-page main {
    padding-top: 86px;
  }

  body {
    background-size: 54px 54px, 54px 54px, auto, auto;
  }

  .book-page {
    background-size: 54px 54px, 54px 54px, auto, auto;
  }

  .site-header {
    min-height: 64px;
    padding: calc(8px + env(safe-area-inset-top)) 12px 8px;
  }

  .brand img {
    width: 104px;
  }

  body.nav-open .site-header {
    min-height: 100svh;
    padding: calc(18px + env(safe-area-inset-top)) 18px calc(16px + env(safe-area-inset-bottom));
  }

  body.nav-open .brand img {
    width: 112px;
  }

  body.nav-open .site-nav {
    justify-content: center;
    padding: clamp(20px, 5vh, 44px) 0;
  }

  body.nav-open .site-nav::before {
    margin-bottom: 18px;
  }

  body.nav-open .site-nav::after {
    right: 12px;
    bottom: 16px;
    width: 44px;
    height: 180px;
  }

  body.nav-open .site-nav a {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 10px;
    padding: clamp(16px, 2.2vh, 22px) 0;
    font-size: clamp(29px, 8.8vw, 43px);
  }

  .hero {
    gap: 24px;
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .hero-mark {
    display: none;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .hero-lead {
    max-width: 34ch;
    font-size: 15.5px;
    line-height: 1.54;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .slider-frame {
    min-height: 320px;
    box-shadow: var(--shadow-md);
  }

  .slider-item {
    padding: 24px;
  }

  .slide-kicker {
    margin-top: 34px;
  }

  .slider-item h2 {
    margin-bottom: 16px;
    font-size: clamp(26px, 7.6vw, 34px);
  }

  .slider-item p:last-child {
    font-size: 15px;
  }

  .slider-controls {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .slider-cta {
    grid-column: 1 / -1;
  }

  .award-ribbon {
    display: none;
  }

  .section {
    padding: 58px 0;
    scroll-margin-top: 86px;
  }

  .services {
    padding-top: 58px;
  }

  .book-hero {
    gap: 28px;
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .design-step-hero {
    gap: 22px;
    padding: 28px 0 34px;
  }

  .design-step-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(36px, 11.4vw, 52px);
    line-height: 0.98;
  }

  .design-step-lead {
    font-size: 15.5px;
    line-height: 1.56;
  }

  .step-outcome-strip {
    margin-top: 18px;
  }

  .design-step-visual {
    min-height: 240px;
    padding: 22px;
  }

  .design-step-visual strong {
    font-size: clamp(27px, 8vw, 38px);
  }

  .design-step-nav {
    top: 92px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: calc(100vw - 28px);
    margin-bottom: 20px;
    padding: 10px 8px 8px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 234, 228, 0.82)),
      rgba(244, 242, 238, 0.92);
    box-shadow: 0 18px 42px rgba(46, 43, 43, 0.12);
    overflow: hidden;
  }

  .design-step-nav::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 17%;
    right: 17%;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 117, 96, 0.12), rgba(148, 117, 96, 0.42), rgba(148, 117, 96, 0.12));
    pointer-events: none;
  }

  .design-step-nav a {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: none;
    justify-self: stretch;
    flex-direction: column;
    gap: 7px;
    min-height: 64px;
    padding: 7px 4px 5px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: transparent;
    font-size: 0;
    white-space: normal;
    box-shadow: none;
  }

  .design-step-nav a::before {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(148, 117, 96, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(46, 43, 43, 0.08);
    transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
  }

  .design-step-nav a:nth-child(1)::before {
    content: "01";
  }

  .design-step-nav a:nth-child(2)::before {
    content: "02";
  }

  .design-step-nav a:nth-child(3)::before {
    content: "03";
  }

  .design-step-nav a::after {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 180ms var(--ease);
  }

  .design-step-nav a:nth-child(1)::after {
    content: "Hedef";
  }

  .design-step-nav a:nth-child(2)::after {
    content: "Tasarım";
  }

  .design-step-nav a:nth-child(3)::after {
    content: "Kontrol";
  }

  .design-step-nav a:hover,
  .design-step-nav a:focus-visible,
  .design-step-nav a[aria-current="page"] {
    border-color: transparent;
    background: linear-gradient(180deg, rgba(46, 43, 43, 0.08), rgba(46, 43, 43, 0.02));
    box-shadow: none;
    outline: none;
  }

  .design-step-nav a:hover::before,
  .design-step-nav a:focus-visible::before,
  .design-step-nav a[aria-current="page"]::before {
    transform: translateY(-1px);
    border-color: var(--cta);
    background: var(--ink);
    color: #fff;
  }

  .design-step-nav a:hover::after,
  .design-step-nav a:focus-visible::after,
  .design-step-nav a[aria-current="page"]::after {
    color: var(--ink);
  }

  .design-step-section {
    padding-bottom: 52px;
  }

  .step-summary-grid {
    gap: 10px;
  }

  .step-summary-grid article {
    padding: 18px;
  }

  .step-output-panel {
    gap: 18px;
    margin-top: 12px;
    padding: 20px;
  }

  .step-output-panel h3 {
    font-size: clamp(25px, 7.5vw, 36px);
  }

  .service-jump-shell {
    top: 108px;
    width: calc(100vw - 28px);
    margin-bottom: 28px;
  }

  .service-jump-nav {
    padding: 8px 8px 7px;
  }

  .service-jump-nav a {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 11.5px;
  }

  .book-copy h1 {
    font-size: clamp(36px, 12.4vw, 52px);
  }

  .book-lead {
    font-size: 15.5px;
    line-height: 1.56;
  }

  .book-actions {
    display: grid;
  }

  .book-visual {
    min-height: 360px;
  }

  .book-cover-frame {
    width: min(238px, 72vw);
    padding: 12px;
  }

  .book-orbit span:nth-child(1) {
    width: 320px;
    height: 320px;
  }

  .book-orbit span:nth-child(2) {
    width: 236px;
    height: 236px;
  }

  .book-section {
    padding: 58px 0;
    scroll-margin-top: 86px;
  }

  .detail-service {
    padding: 56px 0;
    scroll-margin-top: 228px;
  }

  .service-seo-intro,
  .service-faq {
    padding: 52px 0;
  }

  .topic-sales-section,
  .topic-process-section {
    padding: 52px 0;
  }

  .service-seo-intro {
    padding-top: 0;
    gap: 20px;
  }

  .topic-pill-row {
    margin-top: 18px;
  }

  .topic-visual img {
    height: 420px;
    min-height: 0;
  }

  .service-seo-intro h1 {
    font-size: clamp(30px, 9.2vw, 42px);
    line-height: 1.02;
  }

  .guide-page .service-seo-intro h1 {
    max-width: 11.5ch;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.06;
  }

  .service-seo-copy {
    gap: 14px;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .authority-strip {
    gap: 8px;
    margin-bottom: 22px;
  }

  .authority-strip span {
    min-height: 0;
    padding: 16px;
    font-size: 14px;
  }

  .guide-list {
    gap: 10px;
    margin-bottom: 48px;
  }

  .guide-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .guide-list article p,
  .guide-list article a {
    grid-column: auto;
  }

  .guide-list h2 {
    font-size: clamp(24px, 7.6vw, 34px);
  }

  .guide-list p {
    font-size: 15px;
    line-height: 1.56;
  }

  .guide-list a {
    width: 100%;
  }

  .service-faq-grid article {
    min-height: 0;
    padding: 18px;
  }

  .topic-sales-grid article {
    padding: 18px;
  }

  .topic-process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
    min-height: 0;
    padding: 16px;
  }

  .topic-process-list p {
    grid-column: 2;
    font-size: 15px;
  }

  .topic-process-list li::before {
    width: 34px;
    height: 34px;
  }

  .service-faq-grid h3 {
    font-size: clamp(21px, 7vw, 28px);
  }

  .detail-service-head {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
    max-width: 100%;
    margin-bottom: 22px;
  }

  .detail-service-head .eyebrow,
  .detail-service-head .detail-number,
  .detail-service h2,
  .detail-service-head > p:last-child {
    grid-column: 1;
  }

  .detail-number {
    margin-bottom: 12px;
  }

  .detail-service h2 {
    margin-bottom: 16px;
    font-size: clamp(29px, 9vw, 40px);
    line-height: 1.03;
  }

  .detail-service-head > p:last-child {
    grid-row: auto;
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.56;
  }

  .detail-service-grid {
    gap: 16px;
  }

  .detail-visual {
    min-height: 230px;
    padding: 22px;
  }

  .detail-visual strong {
    font-size: clamp(26px, 8vw, 36px);
  }

  .benefit-grid article {
    min-height: 0;
    padding: 18px;
  }

  .topic-page .benefit-grid article::before {
    width: 36px;
    height: 36px;
  }

  .detail-steps li {
    grid-template-columns: 34px 1fr;
    align-items: start;
    font-size: 15px;
  }

  .detail-cta {
    width: 100%;
  }

  .service-final-cta {
    margin-bottom: 48px;
    padding: 22px;
  }

  .design-step-next {
    margin-bottom: 48px;
    padding: 22px;
  }

  .service-final-cta h2 {
    font-size: clamp(28px, 9.5vw, 42px);
  }

  .design-step-next h2 {
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.08;
  }

  .design-step-next p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 14.5px;
  }

  .section-title h2,
  .services-head h2,
  .contact-copy h2,
  .book-thought h2,
  .book-section-head h2 {
    font-size: clamp(29px, 9.6vw, 42px);
    line-height: 1.02;
  }

  .services-head {
    margin-bottom: 22px;
  }

  .service-grid,
  .process-grid,
  .contact-primary,
  .social-links,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 174px;
    padding: 20px;
  }

  .service-grid h3 {
    margin: 38px 0 10px;
    font-size: clamp(22px, 7vw, 28px);
  }

  .service-grid p,
  .process-grid p {
    font-size: 15px;
    line-height: 1.52;
  }

  .process-grid article {
    min-height: 0;
    padding: 22px;
  }

  .process-grid em {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-flex;
    margin-top: 22px;
  }

  .process-grid span {
    margin-bottom: 40px;
  }

  .process-grid h2 {
    margin-bottom: 16px;
    font-size: clamp(26px, 8vw, 36px);
  }

  .rich-text {
    font-size: 16px;
  }

  .rich-text p {
    overflow: hidden;
    max-height: 9.3em;
    margin-bottom: 18px;
    line-height: 1.55;
  }

  .contact-card {
    min-height: 136px;
    padding: 22px;
  }

  .contact-card strong {
    font-size: clamp(24px, 8vw, 32px);
  }

  .contact-card.is-mail,
  .social-links a {
    padding: 20px;
  }

  .contact-copy p {
    max-width: 34ch;
    font-size: 15.5px;
    line-height: 1.56;
  }

  .contact-primary,
  .social-links,
  .market-grid,
  .process-grid,
  .service-grid {
    gap: 10px;
  }

  .social-links a {
    min-height: 112px;
    gap: 24px;
  }

  .social-links strong {
    font-size: clamp(23px, 8vw, 30px);
  }

  .hero {
    gap: 14px;
    min-height: auto;
    align-content: start;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .hero-title-desktop,
  .copy-desktop,
  .services-title-desktop {
    display: none;
  }

  .hero-title-mobile,
  .copy-mobile,
  .services-title-mobile {
    display: block;
  }

  .hero-lead {
    max-width: 34ch;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .mobile-signal-strip {
    display: grid;
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid rgba(46, 43, 43, 0.2);
    border-bottom: 1px solid rgba(46, 43, 43, 0.2);
    animation: reveal-up 720ms var(--ease) 420ms both;
  }

  .mobile-signal-strip span {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(46, 43, 43, 0.08);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-signal-strip span:first-child {
    border-top: 0;
  }

  .mobile-signal-strip span::after {
    content: "/";
    color: var(--cta);
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .mobile-hero-actions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(141, 107, 89, 0.42);
    border-radius: 8px;
    color: var(--cta);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-hero-actions a:first-child {
    background: var(--cta);
    color: #fff;
  }

  .slider-frame {
    min-height: 204px;
    border-color: rgba(46, 43, 43, 0.82);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(145deg, #2e2b2b 0%, #342f2c 58%, #211f1f 100%);
    background-size: 54px 54px, 54px 54px, auto;
  }

  .slider-item {
    padding: 18px 18px 22px;
    visibility: hidden;
  }

  .slider-item.is-active {
    visibility: visible;
  }

  .slide-kicker {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.58);
  }

  .slider-item h2 {
    max-width: 324px;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(20px, 5.9vw, 25px);
    line-height: 1.08;
  }

  .slider-item p:last-child {
    display: none;
  }

  .slider-controls {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .services-head h2 {
    max-width: 10ch;
    margin-bottom: 10px;
    font-size: clamp(34px, 10.4vw, 46px);
  }

  .services-mobile-lead {
    display: block;
    max-width: 330px;
    color: var(--ink-soft);
    font-size: 14.5px;
    font-weight: var(--lead-weight);
    line-height: 1.52;
  }

  .rich-text p:nth-of-type(2),
  .rich-text p:nth-of-type(3),
  .rich-text p:nth-of-type(5) {
    display: none;
  }

  .service-grid {
    gap: 0;
    border-top: 1px solid rgba(46, 43, 43, 0.18);
  }

  .service-grid article,
  .service-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    min-height: 0;
    padding: 18px 0;
    align-content: center;
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-grid article::after,
  .service-card::after {
    position: static;
    content: "/";
    grid-column: 3;
    justify-self: end;
    width: auto;
    height: auto;
    background: transparent;
    color: rgba(141, 107, 89, 0.82);
    font-size: 24px;
    opacity: 1;
    transform: none;
  }

  .service-grid span {
    grid-column: 1;
    align-self: start;
    padding-top: 3px;
    font-size: 11px;
  }

  .service-grid h3 {
    grid-column: 2;
    margin: 0;
    font-size: clamp(25px, 8.4vw, 38px);
    line-height: 0.98;
  }

  .service-grid p,
  .service-card em {
    display: none;
  }

  .process-grid p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .contact-copy h2 {
    max-width: 8ch;
    font-size: clamp(34px, 11.2vw, 46px);
    line-height: 0.96;
  }

  .contact-copy p {
    display: -webkit-box;
    overflow: hidden;
    max-width: 34ch;
    font-size: 14.5px;
    line-height: 1.54;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .contact-panel {
    gap: 22px;
  }

  .contact-primary {
    gap: 0;
    border-top: 1px solid rgba(46, 43, 43, 0.18);
  }

  .contact-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 18px;
    min-height: 68px;
    align-items: center;
    padding: 15px 14px;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.18);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
  }

  .contact-card::after {
    content: "/";
    position: static;
    justify-self: end;
    width: auto;
    height: auto;
    background: transparent;
    color: rgba(141, 107, 89, 0.82);
    font-size: 24px;
    opacity: 1;
    transform: none;
  }

  .contact-card.is-whatsapp:hover::after,
  .contact-card.is-whatsapp:focus-visible::after {
    background: transparent;
    color: #fff;
    opacity: 1;
  }

  .contact-card span {
    color: var(--cta);
    font-size: 10.5px;
    line-height: 1.1;
  }

  .contact-card strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: clamp(18px, 5.4vw, 23px);
    line-height: 1;
  }

  .contact-card.is-strong {
    background: transparent;
    color: var(--ink);
  }

  .contact-card.is-strong span,
  .contact-card.is-strong strong {
    color: var(--ink);
  }

  .contact-card.is-strong span {
    color: var(--cta);
  }

  .contact-card.is-mail {
    grid-column: auto;
    min-height: 68px;
    padding: 15px 14px;
  }

  .contact-card.is-mail strong {
    font-size: clamp(16px, 5vw, 21px);
  }

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

  .social-links a {
    min-height: 54px;
    gap: 2px;
    padding: 12px;
    border-radius: 8px;
  }

  .social-links a::after {
    display: none;
  }

  .social-links span {
    color: var(--cta);
    font-size: 10px;
    line-height: 1;
  }

  .social-links strong {
    font-size: clamp(16px, 5.2vw, 20px);
  }

  .market-card {
    min-height: 166px;
    padding: 20px;
  }

  .signed-buy-panel {
    padding: 22px;
  }

  .signed-buy-panel h3 {
    font-size: clamp(25px, 8.4vw, 34px);
  }

  .signed-buy-panel p {
    font-size: 16px;
    line-height: 1.5;
  }

  .signed-buy-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .legal-page main {
    padding-top: 86px;
  }

  .legal-hero {
    padding: 58px 0 34px;
  }

  .legal-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .legal-document {
    margin: 28px auto 48px;
    padding: 20px;
  }

  .legal-document h2 {
    margin-bottom: 24px;
    font-size: clamp(28px, 9.4vw, 42px);
  }

  .legal-document p,
  .legal-document li,
  .legal-document td {
    font-size: 15px;
    line-height: 1.58;
  }

  .legal-document table {
    min-width: 560px;
  }
}

@media (max-width: 640px) {
  .services-page main {
    padding-top: 78px;
  }

  .service-jump-shell {
    position: relative;
    top: auto;
    margin-bottom: 18px;
    border-radius: 10px;
  }

  .service-jump-nav {
    gap: 6px;
    padding: 7px;
  }

  .service-jump-nav a {
    min-height: 36px;
    padding: 9px 11px;
    border-radius: 7px;
    font-size: 10.5px;
  }

  .detail-service {
    padding: 38px 0;
    scroll-margin-top: 92px;
  }

  .topic-sales-section,
  .topic-process-section {
    padding: 38px 0;
  }

  .service-seo-intro,
  .service-faq {
    padding: 38px 0;
  }

  .topic-page .service-seo-intro {
    padding-bottom: 42px;
  }

  .service-seo-copy {
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.46;
  }

  .topic-pill-row {
    gap: 6px;
    margin-top: 14px;
  }

  .topic-pill-row span {
    min-height: 31px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .detail-service-head {
    margin-bottom: 16px;
  }

  .detail-number {
    margin-bottom: 8px;
  }

  .detail-service h2 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(29px, 8.4vw, 36px);
    line-height: 1;
  }

  .detail-service-head > p:last-child {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .detail-service-grid {
    gap: 12px;
  }

  .step-outcome-strip {
    gap: 6px;
  }

  .step-outcome-strip span {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .step-summary-grid {
    gap: 0;
    border-top: 1px solid rgba(46, 43, 43, 0.16);
  }

  .step-summary-grid article {
    gap: 8px;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .step-summary-grid article::after {
    content: none;
  }

  .step-summary-grid strong {
    font-size: clamp(20px, 6.8vw, 27px);
  }

  .step-summary-grid p {
    font-size: 14.5px;
    line-height: 1.44;
  }

  .step-output-panel {
    margin-top: 14px;
    padding: 18px;
    border-radius: 10px;
  }

  .step-output-list {
    gap: 0;
  }

  .step-output-list li {
    min-height: 42px;
    padding: 12px 0 12px 16px;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.14);
    border-radius: 0;
    background: transparent;
    font-size: 14.5px;
  }

  .step-output-list li:last-child {
    border-bottom: 0;
  }

  .step-output-list li::before {
    left: 0;
    width: 3px;
    height: 22px;
  }

  .step-output-list li::after {
    content: none;
  }

  .topic-visual {
    border-radius: 10px;
  }

  .topic-visual img {
    height: 310px;
    object-position: center;
  }

  .topic-visual-card {
    top: 12px;
    left: 12px;
    width: min(230px, calc(100% - 24px));
    padding: 11px;
  }

  .topic-hero--seo .topic-visual-card,
  .topic-hero--local .topic-visual-card {
    right: 12px;
  }

  .topic-visual-card strong {
    font-size: 20px;
  }

  .topic-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .topic-sales-grid {
    gap: 8px;
  }

  .topic-sales-grid article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    min-height: 0;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .topic-sales-grid article:last-child {
    border-bottom: 0;
  }

  .topic-sales-grid article::after {
    content: none;
  }

  .topic-sales-grid span {
    grid-row: 1 / span 2;
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(141, 107, 89, 0.26);
    border-radius: 50%;
    background: rgba(251, 250, 247, 0.84);
    font-size: 10px;
  }

  .topic-sales-grid h3 {
    font-size: clamp(20px, 6.2vw, 25px);
    line-height: 1.02;
  }

  .topic-sales-grid p,
  .topic-process-list p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14.5px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .topic-process-list li {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
  }

  .service-faq-grid {
    gap: 0;
    border-top: 1px solid rgba(46, 43, 43, 0.16);
  }

  .service-faq-grid article {
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-faq-grid article:last-child {
    border-bottom: 0;
  }

  .service-faq-grid h3 {
    margin-bottom: 7px;
    font-size: clamp(20px, 6.4vw, 25px);
  }

  .service-faq-grid p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14.5px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .detail-visual {
    min-height: 138px;
    padding: 16px;
    border-radius: 10px;
  }

  .detail-visual span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .detail-visual strong {
    max-width: 280px;
    font-size: clamp(22px, 6.6vw, 28px);
    line-height: 1;
  }

  .detail-visual i {
    height: 8px;
  }

  .detail-content {
    gap: 12px;
  }

  .detail-content h3 {
    font-size: clamp(23px, 7.2vw, 30px);
  }

  .benefit-grid {
    gap: 0;
    border-top: 1px solid rgba(46, 43, 43, 0.16);
  }

  .benefit-grid article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 6px 12px;
    align-items: center;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
  }

  .topic-page .benefit-grid article::before {
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .mini-icon {
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
  }

  .mini-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
  }

  .benefit-grid strong {
    font-size: 18px;
  }

  .benefit-grid p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .detail-steps {
    gap: 0;
    border-top: 0;
  }

  .detail-steps-label {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(46, 43, 43, 0.16);
    font-size: 10.5px;
  }

  .detail-steps-label::after {
    background: rgba(141, 107, 89, 0.32);
  }

  .detail-steps li {
    min-height: 48px;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
    line-height: 1.35;
  }

  .detail-cta,
  .service-final-cta .book-primary-link {
    min-height: 46px;
    border-radius: 8px;
  }

  .service-final-cta {
    margin-bottom: 42px;
    padding: 20px;
    border-radius: 10px;
  }

  .book-hero {
    min-height: auto;
    gap: 18px;
    padding-top: 92px;
    padding-bottom: 38px;
  }

  .book-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(32px, 10.8vw, 44px);
    line-height: 0.98;
  }

  .book-lead {
    max-width: 34ch;
    font-size: 14.5px;
    line-height: 1.54;
  }

  .book-title-desktop {
    display: none;
  }

  .book-title-mobile {
    display: block;
  }

  .signed-buy-panel .book-title-desktop,
  .signed-buy-panel .copy-desktop {
    display: none;
  }

  .signed-buy-panel .book-title-mobile,
  .signed-buy-panel .copy-mobile {
    display: block;
  }

  .book-mobile-signals {
    display: grid;
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid rgba(46, 43, 43, 0.2);
    border-bottom: 1px solid rgba(46, 43, 43, 0.2);
  }

  .book-mobile-signals span {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(46, 43, 43, 0.08);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .book-mobile-signals span:first-child {
    border-top: 0;
  }

  .book-mobile-signals span::after {
    content: "/";
    color: var(--cta);
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
  }

  .book-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .book-primary-link,
  .book-secondary-link {
    min-height: 44px;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 11px;
  }

  .book-visual {
    min-height: 284px;
  }

  .book-cover-frame {
    width: min(190px, 58vw);
  }

  .book-orbit span:nth-child(1) {
    width: 248px;
    height: 248px;
  }

  .book-orbit span:nth-child(2) {
    width: 182px;
    height: 182px;
  }

  .book-section {
    padding: 42px 0;
  }

  .book-thought-grid,
  .book-section-head {
    gap: 12px;
  }

  .book-thought h2,
  .book-section-head h2 {
    max-width: 11ch;
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .book-thought p,
  .book-section-head p {
    font-size: 14.5px;
    line-height: 1.58;
  }

  .book-thought-points {
    display: grid;
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid rgba(46, 43, 43, 0.16);
  }

  .book-thought-points span {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: var(--support-weight);
  }

  .book-thought-points strong {
    color: var(--cta);
    font-size: 11px;
    font-weight: 900;
  }

  .signed-buy-panel {
    gap: 14px;
    margin-bottom: 14px;
    padding: 18px;
    border-radius: 10px;
  }

  .signed-buy-panel h3 {
    font-size: clamp(21px, 6.6vw, 28px);
  }

  .signed-buy-panel p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .signed-buy-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .market-grid {
    gap: 0;
    border-top: 1px solid rgba(46, 43, 43, 0.16);
  }

  .market-card {
    grid-template-columns: minmax(78px, 108px) minmax(0, 1fr) 18px;
    min-height: 72px;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .market-grid .market-card:last-child {
    border-bottom: 0;
  }

  .book-markets {
    padding-bottom: 10px;
  }

  .market-card::after {
    content: "/";
    position: static;
    justify-self: end;
    width: auto;
    height: auto;
    background: transparent;
    color: rgba(141, 107, 89, 0.86);
    font-size: 22px;
    opacity: 1;
    transform: none;
  }

  .market-card span {
    display: none;
  }

  .market-card img {
    max-width: 100%;
    max-height: 34px;
  }

  .market-card strong {
    font-size: clamp(20px, 6vw, 25px);
  }

  .market-card:hover,
  .market-card:focus-visible {
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .legal-page main {
    padding-top: 78px;
  }

  .legal-hero {
    padding: 44px 0 22px;
  }

  .legal-hero h1 {
    max-width: 11ch;
    margin-bottom: 12px;
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 0.98;
  }

  .legal-hero p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.45;
  }

  .legal-document {
    margin: 18px auto 42px;
    padding: 18px;
    border-radius: 10px;
  }

  .legal-document p,
  .legal-document li,
  .legal-document td {
    font-size: 14.5px;
    font-weight: var(--body-weight);
    line-height: 1.6;
  }
}

@media (max-width: 640px) {
  .guide-page .service-seo-intro {
    gap: 12px;
    padding-bottom: 28px;
  }

  .guide-page .service-seo-intro h1 {
    max-width: 8ch;
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.95;
  }

  .guide-page .service-seo-copy {
    max-width: 30ch;
  }

  .guide-page .service-seo-copy p {
    font-size: 15px;
    line-height: 1.44;
  }

  .guide-list {
    gap: 0;
    margin-bottom: 38px;
    border-top: 1px solid rgba(46, 43, 43, 0.16);
  }

  .guide-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 5px 12px;
    min-height: 0;
    padding: 17px 0;
    border: 0;
    border-bottom: 1px solid rgba(46, 43, 43, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .guide-list article::after {
    content: none;
  }

  .guide-list span {
    grid-row: 1 / span 3;
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(141, 107, 89, 0.28);
    border-radius: 50%;
    background: rgba(251, 250, 247, 0.82);
    font-size: 10px;
    letter-spacing: 0;
  }

  .guide-list h2 {
    font-size: clamp(22px, 7vw, 29px);
    line-height: 1.02;
  }

  .guide-list p {
    grid-column: 2;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .guide-list a {
    grid-column: 2;
    width: auto;
    min-height: 34px;
    margin-top: 5px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 10px;
  }

  .guide-page .service-final-cta h2 {
    font-size: clamp(25px, 8vw, 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .detail-service.is-current-service .detail-visual i,
  .detail-service.is-current-service .detail-visual i::after,
  .design-step-visual i,
  .design-step-visual i::after {
    animation: none !important;
  }

  .detail-service.is-current-service .detail-visual i::after,
  .design-step-visual i::after {
    opacity: 0;
  }
}
