:root {
  --primary: #55985e;
  --primary-dark: #3d7a46;
  --primary-light: #e8f2ea;
  --accent: #fcc54b;
  --bg: #ffffff;
  --bg-sub: #f7f8f8;
  --text: #222222;
  --text-sub: #666666;
  --border: #e5e5e5;
  --max: 1120px;
  --header-h: 72px;
  --fixed-cta-h: 68px;
  --radius: 4px;
  --reveal-distance: 22px;
  --reveal-duration: 1.15s;
  --intro-distance: 20px;
  --intro-duration: 1.4s;
}

/*
 * Responsive (TheTopClass)
 * PC     = default styles (pointer: fine → PC layout even when viewport is narrow)
 * Mobile = @media (pointer: coarse) and (max-width: 1024px)
 */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont,
    system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* ── Image slots (placeholder) ── */
.img-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(145deg, #edf4ef 0%, #dceade 100%);
  border: 1px dashed rgba(85, 152, 94, 0.45);
  color: var(--primary-dark);
  text-align: center;
  overflow: hidden;
}

.img-slot-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.img-slot-hint {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-sub);
}

.img-slot--hero {
  position: absolute;
  inset: 0;
}

.img-slot--portrait {
  aspect-ratio: 3 / 4;
  margin-bottom: -48px;
}

.img-slot--landscape {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
}

.img-slot--about {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  max-width: 420px;
}

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

.img-slot--filled {
  padding: 0;
  border: none;
  background: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.btn-light {
  color: var(--primary-dark);
  background: #fff;
}

/* ── Header ── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

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

.brand-logo {
  height: 52px;
  width: auto;
  max-width: min(180px, 40vw);
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.header-nav a:hover {
  color: var(--primary);
}

.header-phone {
  margin-left: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-sub);
}

/* 배경 시공사진 — 단일 이미지, 약한 투명도 */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.72;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.5) 34%,
    rgba(255, 255, 255, 0.2) 56%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 100%;
  background: var(--primary);
  z-index: 2;
}

/* 텍스트 콘텐츠 레이어 */
.hero-body {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: calc(var(--header-h) + 64px) 0 80px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: center;
}

.hero-content {
  grid-column: 3 / 8;
  max-width: none;
  margin-inline: 0;
}

.hero-eyebrow {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.hero-title {
  margin: 0 0 24px;
  font-size: clamp(28px, 5.5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin: 0 0 36px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text-sub);
}

/* ── Sections ── */
.section {
  padding: 88px 0;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-title--left {
  text-align: left;
}

.section-lead {
  margin: 0 0 48px;
  font-size: 16px;
  color: var(--text-sub);
  text-align: center;
}

.section-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-sub);
}

.section-intro {
  display: grid;
  gap: 20px;
  margin-bottom: 56px;
}

/* ── Services showcase ── */
.services {
  background: linear-gradient(180deg, #d4dbd9 0%, #e8ecec 40%, #f7f8f8 100%);
  border-top: 1px solid #c8cfcd;
  padding: 40px 0 44px;
}

.services > .container {
  width: min(100% - 96px, 960px);
}

.services .section-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: left;
}

.services .section-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 30px);
  text-align: left;
}

.services .section-desc {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-sub);
  text-align: left;
}

.service-showcase {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px 56px;
  max-width: 860px;
  margin-inline: auto;
}

.service-showcase-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-showcase-item--featured {
  gap: 10px;
}

.service-showcase-item--compact {
  gap: 8px;
}

.service-showcase-item--featured:nth-child(1) {
  grid-column: 1 / 4;
}

.service-showcase-item--featured:nth-child(2) {
  grid-column: 4 / 7;
}

.service-showcase-item--compact:nth-child(3) {
  grid-column: 1 / 3;
}

.service-showcase-item--compact:nth-child(4) {
  grid-column: 3 / 5;
}

.service-showcase-item--compact:nth-child(5) {
  grid-column: 5 / 7;
}

.service-showcase-media {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.service-showcase-item--featured .service-showcase-media {
  aspect-ratio: 16 / 9;
}

.service-showcase-item--compact .service-showcase-media {
  aspect-ratio: 4 / 3;
}

.service-showcase-copy {
  text-align: left;
}

.service-showcase-name {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.service-showcase-item--featured .service-showcase-name {
  font-size: 18px;
}

.service-showcase-item--compact .service-showcase-name {
  font-size: 14px;
}

.service-showcase-tag {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.service-showcase-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-sub);
}

.service-showcase-item--featured .service-showcase-desc {
  font-size: 13px;
  line-height: 1.55;
}

.service-showcase-item--compact .service-showcase-desc {
  font-size: 12px;
  line-height: 1.5;
}

/* ── Why ── */
.why {
  padding: 56px 0 0;
  background: #ffffff;
  border-top: 1px solid #e8ecec;
}

.why > .container {
  width: min(100% - 96px, 960px);
}

.why .section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 28px;
  text-align: center;
}

.why .section-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 30px);
  text-align: center;
  color: var(--text);
}

.why-title-brand {
  color: var(--primary);
}

.why .section-desc {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-sub);
  text-align: center;
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 32px;
  row-gap: 40px;
  max-width: 860px;
  margin-inline: auto;
}

.why-item {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.why-item:nth-child(1) {
  grid-column: 1 / 3;
}

.why-item:nth-child(2) {
  grid-column: 3 / 5;
}

.why-item:nth-child(3) {
  grid-column: 5 / 7;
}

.why-item:nth-child(4) {
  grid-column: 2 / 4;
}

.why-item:nth-child(5) {
  grid-column: 4 / 6;
}

.why-item:nth-child(4),
.why-item:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}

.why-item-num {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  opacity: 0.75;
}

.why-item-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
}

.why-item-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-sub);
}

.cta-band {
  position: relative;
  margin-top: 64px;
  padding: 56px 0;
  overflow: hidden;
  background: var(--primary-dark);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 122, 70, 0.65) 0%,
    rgba(85, 152, 94, 0.6) 50%,
    rgba(61, 122, 70, 0.65) 100%
  );
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta-band-text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

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

.cta-band .btn-primary {
  color: var(--primary-dark);
  background: #fff;
}

.cta-band .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

/* ── Scope ── */
.scope {
  background: var(--bg-sub);
}

.scope-list {
  display: grid;
  gap: 32px;
}

.scope-block {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.scope-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
}

.scope-tag small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}

.scope-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.scope-block--split .scope-block-inner {
  align-items: stretch;
}

.scope-block--split .scope-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-height: 100%;
}

.scope-block--split .check-list--compact {
  gap: 8px;
}

.scope-block--split .check-list--compact li {
  font-size: 14px;
}

.scope-block--split .scope-effect {
  margin-top: 36px;
}

.scope-effect {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scope-effect-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 4px;
}

.scope-effect-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--text);
}

.scope-effect-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-sub);
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text-sub);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

/* ── About ── */
.about {
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-sub);
}

/* ── Footer ── */
.footer-cta {
  padding: 48px 0;
  background: var(--primary);
}

.footer-cta-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-cta-phone {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.footer-cta-phone a {
  color: #fff;
}

.footer-info {
  padding: 40px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-info-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sub);
}

.footer-brand {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.footer-col a {
  color: var(--text-sub);
}

.footer-col a:hover {
  color: var(--primary-dark);
}

.footer-col--link a {
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
}

/* ── Fixed CTA (mobile only) ── */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.fixed-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal--fade-up {
  transform: translateY(var(--reveal-distance));
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal--fade-in {
  transform: none;
  transition: opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

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

.reveal--fade-in.is-visible {
  opacity: 1;
}

.service-showcase-item.reveal--fade-up,
.why-item.reveal--fade-up {
  --reveal-duration: 1.35s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .intro-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Page intro (first load) ── */
.intro-fade {
  opacity: 0;
  transform: translateY(var(--intro-distance));
  transition:
    opacity var(--intro-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--intro-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--intro-delay, 0ms);
  will-change: opacity, transform;
}

.site-header .brand.intro-fade {
  --intro-delay: 0ms;
}

.site-header .header-phone.intro-fade {
  --intro-delay: 220ms;
}

.hero-eyebrow.intro-fade {
  --intro-delay: 440ms;
}

.hero-title.intro-fade {
  --intro-delay: 660ms;
}

.hero-sub.intro-fade {
  --intro-delay: 880ms;
}

.hero-content .btn-primary.intro-fade {
  --intro-delay: 1100ms;
}

body.is-intro-play .intro-fade {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hover ── */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--primary-dark);
  }

  .cta-band .btn-primary:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
  }

  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .cta-band .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.85);
  }

  .btn-light:hover {
    background: var(--primary-light);
  }

  .header-nav a:hover {
    color: var(--primary);
  }

  .fixed-cta-btn:hover {
    background: var(--primary-dark);
  }

  .footer-col--link a:hover {
    color: var(--primary);
  }
}

/* ── Mobile (pointer: coarse, width < 1024px) ── */
@media (pointer: coarse) and (max-width: 1024px) {
  :root {
    --header-h: 64px;
    --fixed-cta-h: 72px;
    --reveal-distance: 16px;
    --reveal-duration: 1s;
    --intro-distance: 14px;
    --intro-duration: 1.25s;
  }

  .service-showcase-item.reveal--fade-up,
  .why-item.reveal--fade-up {
    --reveal-duration: 1.35s;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + 8px);
  }

  body {
    padding-bottom: var(--fixed-cta-h);
    overflow-x: clip;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .fixed-cta {
    display: block;
  }

  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    height: auto;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .header-inner {
    flex-wrap: nowrap;
    height: var(--header-h);
    padding: 0;
  }

  .brand-logo {
    height: 44px;
    max-width: min(160px, 46vw);
  }

  .header-nav {
    display: none;
  }

  .header-phone {
    margin-left: auto;
    font-size: 15px;
    padding: 8px 0;
  }

  /* Hero */
  .hero {
    min-height: min(78svh, 600px);
    align-items: center;
  }

  .hero-bg-image {
    object-position: center 28%;
    opacity: 0.56;
  }

  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.91) 0%,
      rgba(255, 255, 255, 0.75) 50%,
      rgba(255, 255, 255, 0.38) 100%
    );
  }

  .hero-body {
    display: block;
    padding: calc(var(--header-h) + 28px) 0 40px;
  }

  .hero-content {
    max-width: none;
    grid-column: auto;
    text-align: left;
  }

  .hero-accent {
    display: none;
  }

  .hero-eyebrow {
    margin-bottom: 11px;
    font-size: 16px;
  }

  .hero-title {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 1.44;
  }

  .hero-sub {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-content .btn-primary {
    width: 100%;
  }

  /* Sections */
  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-lead {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.75;
  }

  /* Services */
  .services {
    padding: 36px 0 40px;
  }

  .services > .container {
    width: min(100% - 32px, var(--max));
  }

  .services .section-intro {
    margin-bottom: 32px;
    max-width: none;
  }

  .services .section-title {
    font-size: 24px;
  }

  .services .section-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
  }

  .service-showcase .service-showcase-item:not(:last-child) {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 2px solid #d0d0d0;
  }

  .service-showcase-item--featured:nth-child(1),
  .service-showcase-item--featured:nth-child(2),
  .service-showcase-item--compact:nth-child(3),
  .service-showcase-item--compact:nth-child(4),
  .service-showcase-item--compact:nth-child(5) {
    grid-column: auto;
  }

  .service-showcase-item--featured .service-showcase-media,
  .service-showcase-item--compact .service-showcase-media {
    aspect-ratio: 16 / 10;
  }

  .service-showcase-item--featured .service-showcase-name,
  .service-showcase-item--compact .service-showcase-name {
    font-size: 17px;
  }

  .service-showcase-item--featured .service-showcase-desc,
  .service-showcase-item--compact .service-showcase-desc {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Why */
  .why {
    padding-top: 36px;
  }

  .why > .container {
    width: min(100% - 32px, var(--max));
  }

  .why .section-intro {
    margin-bottom: 28px;
    max-width: none;
  }

  .why .section-title {
    font-size: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
    max-width: none;
  }

  .why-item {
    grid-column: auto;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
  }

  .why-item:nth-child(1),
  .why-item:nth-child(2),
  .why-item:nth-child(3),
  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    grid-column: auto;
  }

  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 22px;
  }

  .why-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .why-item-title {
    font-size: 16px;
  }

  .why-item-desc {
    font-size: 14px;
  }

  /* CTA band */
  .cta-band {
    margin-top: 48px;
    padding: 40px 0;
  }

  .cta-band-text {
    font-size: 17px;
    line-height: 1.55;
  }

  .cta-band-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  /* Scope */
  .scope .section-lead-line {
    display: block;
  }

  .scope-block {
    padding: 24px 20px;
  }

  .scope-tag {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .scope-block-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scope-block--split .scope-copy {
    min-height: auto;
    justify-content: flex-start;
  }

  .scope-block--split .scope-effect {
    margin-top: 24px;
  }

  .scope-effect-lead {
    font-size: 14px;
  }

  .scope-effect-body {
    font-size: 13px;
    line-height: 1.8;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-copy {
    font-size: 16px;
    line-height: 1.85;
  }

  .img-slot--about {
    max-width: none;
  }

  /* Footer */
  .footer-cta {
    display: none;
  }

  .footer-info {
    padding: 32px 0 24px;
    background: rgba(85, 152, 94, 0.14);
    border-top: none;
  }

  .footer-info-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-sub);
  }

  .footer-col p {
    margin: 0;
    line-height: 1.4;
  }

  .footer-brand {
    margin-bottom: 4px;
    font-size: 15px;
    color: var(--text);
  }

  .footer-col a {
    color: var(--text-sub);
  }

  .footer-col--link {
    text-align: center;
  }

  .footer-col--link a {
    font-size: 15px;
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .footer-copy {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(85, 152, 94, 0.2);
    color: var(--text-sub);
    font-size: 11px;
    line-height: 1.4;
  }

  .fixed-cta-btn {
    padding: 16px 20px;
  }
}
