:root {
  --page-bg: linear-gradient(135deg, #eee7fb 0%, #f9f4fb 48%, #f4efff 100%);
  --panel-white: rgba(255, 255, 255, 0.88);
  --text: #1f2940;
  --muted: rgba(31, 41, 64, 0.74);
  --shadow-soft: 0 26px 80px rgba(62, 36, 118, 0.12);
  --shadow-card: 0 14px 34px rgba(49, 26, 105, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--page-bg);
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  -webkit-user-select: none;
  user-select: none;
}

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

button {
  font: inherit;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

.page-shell {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  display: block;
}

.intro-frame {
  min-height: 100dvh;
  padding-top: 16px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
}

.topbar {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px 12px 14px;
  border-radius: 26px;
  background: var(--panel-white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 44px rgba(62, 36, 118, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.topbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(62, 36, 118, 0.08);
  cursor: pointer;
  flex: 0 0 auto;
}

.topbar-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 5px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 255, 0.92));
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.08);
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
  white-space: nowrap;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-copy span {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 41, 64, 0.62);
}

.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex: 1 1 auto;
}

.topbar-item {
  position: relative;
  display: flex;
  align-items: center;
}

.topbar-nav a {
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease;
}

.topbar-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.topbar-trigger[aria-expanded="true"]::after {
  transform: translateY(-1px) rotate(180deg);
}

.topbar-trigger::after {
  content: "▾";
  font-size: 11px;
  line-height: 1;
  transform: translateY(-1px);
}

.topbar-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: -36px;
  z-index: 20;
  min-width: 190px;
  padding: 12px 0;
  border-radius: 18px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(62, 36, 118, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.topbar-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.topbar-menu a {
  display: block;
  padding: 10px 18px 10px 36px;
  white-space: nowrap;
}

.topbar-menu a:hover,
.topbar-menu a:focus-visible {
  background: rgba(113, 87, 229, 0.08);
  outline: none;
}

.topbar-item:hover .topbar-menu,
.topbar-item:focus-within .topbar-menu,
.topbar-item.is-open .topbar-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.topbar-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.topbar-brand {
  flex: 0 0 auto;
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(62, 36, 118, 0.08);
  cursor: pointer;
  padding: 0;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(31, 41, 64, 0.72);
  box-shadow: 0 12px 28px rgba(62, 36, 118, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.hero-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background:
    radial-gradient(circle at 69% 30%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.07) 24%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 54% 86%, rgba(239, 192, 230, 0.1) 0%, rgba(239, 192, 230, 0.04) 20%, rgba(239, 192, 230, 0) 46%),
    linear-gradient(90deg, #7157e5 0%, #7258e6 8%, #745be6 16%, #7860e6 25%, #7d66e7 35%, #876fe7 46%, #9885e8 58%, #b3a7eb 70%, #d4cdf1 84%, #f4f2f7 100%);
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  flex: 1 1 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  min-height: 0;
  height: 100%;
  flex: 1 1 auto;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-copy,
.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  overflow: visible;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 36px 42px 52px;
  background: transparent;
  color: #fff;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 74, 164, 0.035) 0%, rgba(240, 74, 164, 0) 72%);
  pointer-events: none;
}

.hero-copy h1 {
  margin: 0;
  max-width: none;
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 5.6vw, 74px);
  line-height: 1.01;
  letter-spacing: -0.07em;
}

.hero-heading-line {
  display: block;
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 30ch;
  font-size: 18px;
  line-height: 1.34;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-primary {
  background: linear-gradient(135deg, #3113ff 0%, #4f1eff 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(49, 19, 255, 0.28);
}

.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 32px 0 0 24px;
  background: transparent;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 9%;
  width: 380px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 72%);
  pointer-events: none;
}

.visual-stage {
  position: relative;
  width: min(520px, 100%);
  margin: auto 0 -34px;
  z-index: 2;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.visual-glow--one {
  width: 340px;
  height: 340px;
  right: 24px;
  bottom: 48px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0) 72%);
}

.visual-glow--two {
  width: 280px;
  height: 280px;
  left: 40px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(240, 74, 164, 0.1) 0%, rgba(240, 74, 164, 0) 72%);
}

.hero-photo {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  object-fit: contain;
  object-position: bottom center;
}

.hero-scroll,
.section-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.hero-scroll {
  bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
}

.section-scroll {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-scroll span,
.section-scroll-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-scroll-button,
.section-scroll-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(208, 198, 255, 0.72);
  background: rgba(84, 66, 185, 0.34);
  color: inherit;
  box-shadow: 0 18px 34px rgba(49, 36, 123, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.hero-scroll-button::after,
.section-scroll-button::after {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: 1px;
  height: 28px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(208, 198, 255, 0.78) 0%, rgba(208, 198, 255, 0) 100%);
}

.hero-scroll-button:hover,
.hero-scroll-button:focus-visible,
.section-scroll-button:hover,
.section-scroll-button:focus-visible {
  transform: translateY(2px);
  background: rgba(98, 78, 210, 0.46);
  outline: none;
}

.service-sections {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.service-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 100svh;
  height: 100svh;
  background: #fff;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.service-section--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-copy {
  display: flex;
  align-items: center;
  min-height: 0;
  height: 100%;
  padding: clamp(48px, 7vw, 92px);
}

.service-copy-inner {
  max-width: 30rem;
}

.service-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  max-width: 12ch;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.service-copy h3 {
  margin: 14px 0 0;
  font-size: clamp(18px, 1.9vw, 28px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-copy p {
  max-width: 30ch;
  margin: 18px 0 0;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.45;
}

.service-media {
  position: relative;
  min-height: 0;
  height: 100%;
  background: #f0eef4;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(16, 18, 30, 0.08) 100%);
}

.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.service-learn-more:hover,
.service-learn-more:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.service-section--personal .service-copy {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #0f6173 0%, #1d7b8f 38%, #3f9fb3 72%, #82c9d4 100%);
  color: #fff;
}

.service-section--personal .service-copy h3 {
  color: rgba(255, 255, 255, 0.72);
}

.service-section--personal .service-copy p {
  color: rgba(255, 255, 255, 0.92);
}

.service-section--personal .service-copy .service-learn-more {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.service-section--personal .service-copy .service-learn-more:hover,
.service-section--personal .service-copy .service-learn-more:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.service-section--personal .service-media img {
  object-position: 52% center;
}

.service-section--developers .service-copy {
  background:
    radial-gradient(circle at 16% 22%, rgba(121, 184, 255, 0.16) 0%, rgba(121, 184, 255, 0) 36%),
    linear-gradient(145deg, #162347 0%, #24386d 42%, #35539a 100%);
  color: #f7f9ff;
}

.service-section--developers .service-copy h3 {
  color: rgba(215, 228, 255, 0.74);
}

.service-section--developers .service-copy p {
  color: rgba(241, 246, 255, 0.9);
}

.service-section--developers .service-copy .service-learn-more {
  color: #f7f9ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 228, 255, 0.3);
}

.service-section--developers .service-copy .service-learn-more:hover,
.service-section--developers .service-copy .service-learn-more:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.service-section--developers .service-media img {
  object-position: center 58%;
}

.service-section--management .service-copy {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #d8efe8 0%, #c5e5de 38%, #b3d9d3 100%);
  color: #213541;
}

.service-section--management .service-copy h3 {
  color: rgba(33, 53, 65, 0.62);
}

.service-section--management .service-copy p {
  color: rgba(33, 53, 65, 0.8);
}

.service-section--management .service-copy .service-learn-more {
  color: #213541;
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(33, 53, 65, 0.22);
}

.service-section--management .service-copy .service-learn-more:hover,
.service-section--management .service-copy .service-learn-more:focus-visible {
  background: rgba(255, 255, 255, 0.56);
}

.service-section--management .service-media img {
  object-position: center center;
}

.section-scroll--light {
  color: rgba(33, 53, 65, 0.88);
}

.section-scroll--light .section-scroll-button {
  border-color: rgba(33, 53, 65, 0.18);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 34px rgba(33, 53, 65, 0.12);
}

.section-scroll--light .section-scroll-button::after {
  background: linear-gradient(180deg, rgba(33, 53, 65, 0.24) 0%, rgba(33, 53, 65, 0) 100%);
}

.section-scroll--light .section-scroll-button:hover,
.section-scroll--light .section-scroll-button:focus-visible {
  background: rgba(255, 255, 255, 0.64);
}

.page-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 24px;
  padding: 0 4px;
  color: rgba(31, 41, 64, 0.62);
  font-size: 12px;
  overflow: hidden;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.page-note nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.page-note nav a {
  font-weight: 800;
}

.topbar-nav a:hover,
.cta-pill:hover,
.lang-chip:hover,
.hero-primary:hover {
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .intro-frame {
    min-height: 100dvh;
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-nav {
    order: 3;
    width: 100%;
    gap: 22px;
    flex-wrap: wrap;
  }

  .topbar-menu {
    left: 0;
  }

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

  .hero-copy {
    padding: 56px 28px 42px;
    justify-content: flex-start;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(48px, 10vw, 72px);
  }

  .hero-copy p {
    max-width: 30ch;
  }

  .hero-visual {
    min-height: 0;
    padding: 0 0 16px;
    align-items: flex-end;
  }

  .visual-stage {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: stretch;
    justify-content: flex-start;
    padding: 14px;
    gap: 12px;
  }

  .topbar-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .topbar-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-copy span {
    white-space: normal;
    max-width: 26ch;
  }

  .topbar-nav {
    display: none;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    order: 2;
    padding-top: 6px;
  }

  .topbar-item {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 16px;
    background: rgba(245, 239, 255, 0.72);
  }

  .topbar-item:hover .topbar-menu,
  .topbar-item:focus-within .topbar-menu {
    display: none;
  }

  .topbar-item.is-open .topbar-menu {
    display: block;
  }

  .topbar-nav > a,
  .topbar-trigger {
    min-height: 44px;
    width: 100%;
    justify-content: space-between;
    padding: 0 4px;
    font-size: 18px;
  }

  .topbar-actions {
    display: none;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    order: 3;
    padding-top: 4px;
  }

  .topbar.is-menu-open .topbar-nav,
  .topbar.is-menu-open .topbar-actions {
    display: flex;
  }

  .topbar.is-menu-open .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-chip,
  .cta-pill {
    width: 100%;
    min-height: 46px;
  }

  .lang-chip {
    justify-content: center;
    font-size: 18px;
  }

  .cta-pill {
    min-width: 0;
  }

  .hero-shell {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    border-radius: 28px;
    min-height: 0;
    height: auto;
    background: linear-gradient(140deg, #6e57e0 0%, #7a64e8 26%, #8874eb 48%, #9d8aec 68%, #b4a4ef 84%, #cdc4f2 100%);
    box-shadow: 0 18px 36px rgba(90, 67, 168, 0.12);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 28px 22px 8px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy::after {
    content: none;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(26px, 9.4vw, 40px);
    line-height: 0.95;
    letter-spacing: -0.07em;
  }

  .hero-copy p {
    max-width: 20ch;
    font-size: 14px;
    line-height: 1.3;
    margin-top: 14px;
  }

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

  .hero-primary {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    justify-content: flex-start;
  }

  .hero-visual {
    display: contents;
  }

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

  .visual-stage {
    width: min(520px, 100%);
    margin: 16px auto -4px;
    background: transparent;
  }

  .hero-photo {
    max-width: 100%;
    width: 68%;
    margin: 0 auto -4px;
  }

  .page-note {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .page-note nav {
    gap: 12px;
  }

  .hero-scroll {
    left: 50%;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-scroll-button,
  .section-scroll-button {
    width: 42px;
    height: 42px;
  }

  .service-sections {
    gap: 12px;
    padding: 12px;
  }

  .service-section,
  .service-section--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 0.52fr) minmax(0, 0.48fr);
    min-height: calc(100svh - 24px);
    height: calc(100svh - 24px);
    border-radius: 28px;
    overflow: hidden;
  }

  .section-scroll {
    bottom: 18px;
  }

  .section-scroll-label {
    font-size: 13px;
  }

  .service-copy {
    order: 2;
    align-items: flex-start;
    padding: 32px 24px 34px;
  }

  .service-media {
    order: 1;
    min-height: 0;
  }

  .service-copy h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
  }

  .service-copy h3 {
    font-size: 18px;
  }

  .service-copy p {
    max-width: none;
    font-size: 17px;
  }
}
