@import url("https://cdn.jsdelivr.net/npm/xeicon@2.3.3/xeicon.min.css");

:root {
  --color-forest: #0f4a2b;
  --color-forest-dark: #07331f;
  --color-forest-deep: #06291b;
  --color-green: #6a9b32;
  --color-green-bright: #86b949;
  --color-green-soft: #f9f9f9;
  --color-mint: #d7ebe1;
  --color-text: #18231d;
  --color-muted: #66726b;
  --color-border: #dce5dd;
  --color-surface: #ffffff;
  --color-page: #ffffff;
  --shadow-soft: 0 18px 50px rgba(9, 49, 31, 0.12);
  --shadow-card: 0 18px 44px rgba(10, 54, 34, 0.09);
  --radius-small: 8px;
  --radius-round: 999px;
  --container: 1320px;
  --site-header-height: 76px;
  --home-hero-height: calc(100vh - var(--site-header-height));
}

@supports (height: 100dvh) {
  :root {
    --home-hero-height: calc(100dvh - var(--site-header-height));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-surface);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  word-break: keep-all;
}

body.no-scroll {
  overflow: hidden;
}

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

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

input,
textarea,
select {
  font: inherit;
}

button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--color-forest);
  border-radius: var(--radius-small);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-wrap {
  overflow: hidden;
}

[data-include],
#header:empty,
#footer:empty,
#quick:empty {
  display: contents;
}

.container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 36px);
  }
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-round);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.82;
}

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

.button:focus-visible,
.site-header__toggle:focus-visible,
.site-header__mobile-close:focus-visible,
.accordion__button:focus-visible {
  outline: 3px solid rgba(106, 155, 50, 0.4);
  outline-offset: 3px;
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-forest), var(--color-forest-dark));
  box-shadow: 0 14px 30px rgba(15, 74, 43, 0.24);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--color-forest-dark), var(--color-forest-deep));
}

.button--outline {
  color: var(--color-forest);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 74, 43, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.button--outline:hover {
  border-color: var(--color-forest);
}

.button--ghost {
  color: var(--color-forest);
  background: linear-gradient(135deg, var(--color-green-soft), #ffffff);
  border: 1px solid rgba(15, 74, 43, 0.12);
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  z-index: 100 !important;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(15, 74, 43, 0.08);
  backdrop-filter: blur(16px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

body:not(.page-home) .site-main {
  padding-top: var(--site-header-height);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px);
  max-width: 1480px;
  height: var(--site-header-height);
  margin: 0 auto;
  gap: 28px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(190px, 14vw, 260px);
}

.site-header__logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1 1 auto;
  height: var(--site-header-height);
}

.site-header__nav-item {
  position: static;
}

.site-header__nav > .site-header__nav-item > .site-header__nav-link {
  display: block;
  position: relative;
  padding: 26px 0;
  color: #23342a;
  font-size: 16px;
  font-weight: 700;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-header__nav > .site-header__nav-item > .site-header__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-header__nav > .site-header__nav-item:hover > .site-header__nav-link::after,
.site-header__nav > .site-header__nav-item > .site-header__nav-link:hover::after,
.site-header__nav > .site-header__nav-item > .site-header__nav-link.is-current::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.site-header__actions .button::after {
  display: none !important;
}

.page-home .site-header {
  position: fixed;
  right: 0;
  left: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-home .site-header:hover,
.page-home .site-header:focus-within,
.page-home .site-header.is-hovered,
.page-home .site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 1);
  background-image: none;
  border-bottom-color: rgba(15, 74, 43, 0.08);
  box-shadow: 0 12px 30px rgba(9, 49, 31, 0.08);
  backdrop-filter: blur(16px);
}

.page-home .site-header:not(:hover):not(:focus-within):not(.is-hovered):not(.is-scrolled) .site-header__logo-image {
  filter: brightness(0) invert(1);
}

.page-home .site-header:not(:hover):not(:focus-within):not(.is-hovered):not(.is-scrolled) .site-header__nav > .site-header__nav-item > .site-header__nav-link {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.page-home .site-header:not(:hover):not(:focus-within):not(.is-hovered):not(.is-scrolled) .site-header__nav > .site-header__nav-item > .site-header__nav-link::after {
  background: #ffffff;
}

.site-header__toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  z-index: 130;
  transition: background-color 300ms ease, box-shadow 300ms ease;
}

.site-header__toggle[aria-expanded="true"] {
  background: transparent;
  box-shadow: none;
}

.site-header__toggle span {
  display: block;
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-round);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease, background-color 300ms ease;
}

.site-header__toggle span:nth-child(1) {
  top: 17px;
}

.site-header__toggle span:nth-child(2) {
  top: 22px;
}

.site-header__toggle span:nth-child(3) {
  top: 27px;
}

.site-header__toggle[aria-expanded="true"] span {
  background: var(--color-text);
}

.page-home .site-header:not(:hover):not(:focus-within):not(.is-hovered):not(.is-scrolled) .site-header__toggle span {
  background: #ffffff;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-header__mobile {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  height: 100vh;
  height: 100dvh;
  background: rgba(3, 30, 18, 0.58);
  backdrop-filter: blur(4px);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.site-header__mobile.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-header__mobile-panel {
  width: 380px;
  max-width: 85%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin-left: auto;
  padding: 24px;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header__mobile.is-open .site-header__mobile-panel {
  transform: translateX(0);
}

.site-header__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.site-header__mobile-head span {
  color: var(--color-forest);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.site-header__mobile-close {
  display: none;
}

.site-header__mobile-contact {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 20px;
  color: #ffffff;
  background: var(--color-forest-dark);
  border-radius: var(--radius-small);
}

.site-header__mobile-contact strong {
  color: var(--color-green-soft);
  font-size: 14px;
}

.site-header__mobile-contact a {
  font-size: 22px;
  font-weight: 900;
}

.site-header__mobile-contact span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-header__inner {
    width: calc(100% - 36px);
  }

  .site-header__nav,
  .site-header__actions .button {
    display: none;
  }

  .site-header__toggle {
    display: block;
  }
}

@media (max-width: 540px) {
  :root {
    --site-header-height: 68px;
  }

  .site-header__inner {
    height: var(--site-header-height);
  }

  .site-header__logo {
    width: 174px;
  }
}

.accordion {
  display: grid;
  gap: 10px;
  padding-top: 20px;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  color: var(--color-text);
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
}

.accordion__button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-forest);
  border-bottom: 2px solid var(--color-forest);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.accordion__button[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.accordion__panel {
  display: grid;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 0 12px;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 200ms ease,
              padding 300ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 300ms ease;
}

.accordion__panel.is-open {
  max-height: 280px;
  opacity: 1;
  visibility: visible;
  padding: 8px 12px 16px 12px;
}

.accordion__panel a {
  display: block;
  padding: 8px 12px;
  color: var(--color-muted);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 180ms ease, color 180ms ease;
}

.accordion__panel a:hover {
  background-color: var(--color-page);
  color: var(--color-forest);
}

.hero {
  position: relative;
  height: var(--home-hero-height);
  overflow: hidden;
  color: #ffffff;
  background: var(--color-forest-deep);
}

.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slider .swiper-wrapper,
.hero__slider .swiper-slide {
  height: 100%;
}

.hero__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: var(--home-hero-height);
  padding: 0;
}

.hero__content {
  width: min(100%, 720px);
  padding: 78px 0 88px;
}

.hero__title {
  display: grid;
  gap: 4px;
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.hero__title span,
.hero__text span,
.cta-section h2 span {
  display: inline-block;
}

.hero__text {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero .button--primary {
  min-width: 148px;
  color: #ffffff;
  background: rgba(4, 63, 38, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.hero .button--primary:hover {
  background: rgba(4, 48, 32, 0.96);
}

.hero__pagination {
  position: absolute !important;
  bottom: 40px !important;
  left: 0 !important;
  transform: none !important;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 9px;
  width: auto;
  margin-top: 0;
}

.hero__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto !important;
  left: 0 !important;
  bottom: 40px !important;
  transform: none !important;
}

.hero__pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  margin: 0;
  background: rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-round);
  opacity: 1;
  transition: width 180ms ease, background 180ms ease;
}

.hero__pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: #ffffff;
}

.company-proof-strip {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(134, 202, 183, 0.22), rgba(134, 202, 183, 0) 34%),
    linear-gradient(90deg, #042c24 0%, var(--color-forest-dark) 42%, #005b53 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.company-proof-strip__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 18px;
}

.reservation-status__header {
  display: contents;
}

.reservation-status__label {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0;
}

.reservation-status__label::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #f9df18;
  border-radius: var(--radius-round);
  box-shadow: 0 0 0 7px rgba(249, 223, 24, 0.12);
}

.reservation-status__track {
  order: 2;
  --reservation-row-height: 64px;
  position: relative;
  height: var(--reservation-row-height);
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
  margin-left: 20px;
}

.reservation-status__roller {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: calc(var(--reservation-row-height) + var(--reservation-row-height));
  flex-direction: column;
  transform: translateY(0);
  transition: none;
}

.reservation-status__roller.is-rolling {
  transition: transform 640ms cubic-bezier(0.2, 0.84, 0.28, 1);
}

.reservation-status__roller.is-swapping .reservation-status__item[data-reservation-row="current"] {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
}

.reservation-status__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  height: var(--reservation-row-height);
  flex: 0 0 var(--reservation-row-height);
  padding: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.reservation-status__chip {
  position: relative;
  display: grid;
  grid-template-columns: 15px auto;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  overflow: visible;
  padding: 8px 8px;
  background: transparent;
  border: none;
  font-size: 15.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.reservation-status__chip::after,
.reservation-status__part::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.22);
}

.reservation-status__chip--area {
  background: transparent;
  border: none;
  color: #b9e8dc;
}

.reservation-status__chip--service {
  background: transparent;
  border: none;
  color: #ffffff;
}

.reservation-status__chip--service::after {
  display: none !important;
}

.reservation-status__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.reservation-status__part {
  position: relative;
  display: grid;
  grid-template-columns: 15px auto;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  overflow: visible;
  padding: 8px 8px;
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.reservation-status__state-wrap {
  order: 3;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 12px;
  background: rgba(249, 223, 24, 0.13);
  border: 1px solid rgba(249, 223, 24, 0.30);
  border-radius: 12px;
}

.reservation-status__chip span,
.reservation-status__part span,
.reservation-status__state {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-status__pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #f9df18;
  border-radius: 50%;
  position: relative;
}

.reservation-status__pulse::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(249, 223, 24, 0.4);
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  80%, 100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.reservation-status__state {
  color: #f9df18;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0;
}

.reservation-status__cta {
  order: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  color: var(--color-forest-dark);
  background: #ffffff;
  border-radius: var(--radius-round);
  box-shadow: 0 16px 34px rgba(4, 37, 30, 0.22);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.reservation-status__cta:hover,
.reservation-status__cta:focus-visible {
  background: var(--color-green-soft);
  transform: translateY(-1px);
}

.audience-section {
  padding: 106px 0 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, var(--color-page) 100%);
}

.audience-section__header {
  max-width: 920px;
  margin: 0 auto 58px;
  text-align: center;
}

.audience-section__eyebrow {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.audience-section__title {
  margin: 0;
  color: var(--color-text);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
}

.audience-section__title span {
  color: var(--color-forest);
  font-weight: 900;
}

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

.audience-feature-card {
  display: flex;
  min-height: 324px;
  padding: 40px 28px 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(220, 229, 221, 0.75);
  border-radius: 36px 0 36px 0;

  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.audience-feature-card:hover {
  border-color: rgba(0, 98, 90, 0.26);
  transform: translateY(-4px);
}

.audience-feature-card__icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  color: #ffffff;
  background: var(--color-forest);
  border-radius: 50%;
}

.audience-feature-card__icon svg {
  width: 34px;
  height: 34px;
}

.audience-feature-card h3 {
  margin: 0 0 22px;
  color: var(--color-forest);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.25;
}

.audience-feature-card p {
  max-width: 230px;
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.service-lineup-section {
  padding: 104px 0 112px;
  background: #ffffff;
}

.service-lineup-section__header {
  margin-bottom: 32px;
}

.service-lineup-section__header h2 {
  margin: 0;
  color: #cfd7d3;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-lineup-section__header h2 span {
  color: var(--color-forest);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.service-lineup-card {
  position: relative;
  display: block;
  min-height: 438px;
  overflow: hidden;
  color: #ffffff;
  background: var(--color-forest-deep);
  border-radius: 8px;
  isolation: isolate;
}

.service-lineup-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.service-lineup-card::before,
.service-lineup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.service-lineup-card::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(3, 16, 14, 0.16) 50%, rgba(3, 16, 14, 0.82) 100%);
}

.service-lineup-card::after {
  background: linear-gradient(90deg, rgba(0, 98, 90, 0.36), rgba(0, 0, 0, 0) 58%);
  opacity: 0.46;
  transition: opacity 220ms ease;
}

.service-lineup-card:hover img,
.service-lineup-card:focus-visible img {
  transform: scale(1.06);
}

.service-lineup-card:hover::after,
.service-lineup-card:focus-visible::after {
  opacity: 0.64;
}

.service-lineup-card:focus-visible {
  outline: 3px solid rgba(0, 98, 90, 0.36);
  outline-offset: 4px;
}

.service-lineup-card__content {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  z-index: 2;
}

.service-lineup-card__label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.service-lineup-card__content h3 {
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.18;
}

.service-lineup-card__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.service-lineup-card__more svg {
  width: 34px;
  height: 34px;
  padding: 9px;
  color: var(--color-text);
  background: #ffffff;
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

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

.audience-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 28px 30px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.audience-card:hover {
  border-color: rgba(106, 155, 50, 0.55);
  box-shadow: 0 16px 34px rgba(10, 54, 34, 0.07);
  transform: translateY(-2px);
}

.audience-card strong {
  color: var(--color-text);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.audience-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.62;
}

.audience-card .check-list {
  display: none;
}

.check-list,
.service-card__checks {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.service-card__checks li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.check-list li::before,
.service-card__checks li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-forest);
  font-size: 15px;
  font-weight: 900;
}

.card-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .hero__inner {
    height: var(--home-hero-height);
  }

  .hero__title {
    font-size: 36px;
  }

  .company-proof-strip__inner {
    grid-template-columns: 1fr auto;
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 14px 18px;
  }

  .reservation-status__header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    grid-column: 1 / -1;
    order: 1;
  }

  .reservation-status__label {
    order: initial;
  }

  .reservation-status__state-wrap {
    order: initial;
    margin-right: 0;
  }

  .reservation-status__track {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 2;
    margin-left: 0;
  }

  .reservation-status__cta {
    grid-row: 3;
    order: 3;
    justify-self: end;
  }

  .audience-section {
    padding: 92px 0 104px;
  }

  .audience-section__title {
    font-size: 40px;
  }

  .audience-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto;
  }

  .service-lineup-section {
    padding: 90px 0 98px;
  }

  .service-lineup-section__header h2 {
    font-size: 36px;
  }

  .service-lineup-section__header h2 span {
    font-size: 46px;
  }

  .service-lineup-grid {
    gap: 18px;
  }

  .service-lineup-card {
    min-height: 380px;
  }

  .service-lineup-card__content {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }
}

@media (max-width: 900px) {
  .service-lineup-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .service-lineup-card {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero {
    height: var(--home-hero-height);
  }

  .hero__slider .swiper-slide img {
    object-position: 62% center;
  }

  .hero__scrim {
    background: rgba(0, 0, 0, 0.45);
  }

  .hero__inner {
    align-items: center;
    height: var(--home-hero-height);
  }

  .hero__title {
    font-size: 46px;
    line-height: 1.18;
  }

  .hero__text {
    font-size: 17px;
    line-height: 1.68;
  }

  .hero__actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 28px;
  }

  .hero__actions .button--primary {
    min-width: 156px !important;
    width: fit-content !important;
    padding: 13px 26px !important;
    font-size: 15.5px !important;
  }

  .hero__content {
    padding: 54px 0 74px;
  }

  .hero__pagination {
    margin-top: 24px;
  }

  .company-proof-strip__inner {
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 6px;
    text-align: left;
  }

  .reservation-status__header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    order: 1;
  }

  .reservation-status__label {
    order: initial;
    justify-self: stretch;
  }

  .reservation-status__track {
    grid-row: auto;
    border-radius: 16px;
    order: 2;
    margin-left: 0;
  }

  .reservation-status__item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 !important;
    font-size: 16.5px;
    white-space: nowrap;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .reservation-status__chip,
  .reservation-status__part {
    padding: 4px 0 !important;
    font-size: 14px !important;
    gap: 4px !important;
  }

  .reservation-status__chip::after,
  .reservation-status__part::after {
    right: -4px !important;
    height: 8px !important;
  }

  .reservation-status__chip--service::after {
    display: none !important;
  }

  .reservation-status__icon {
    width: 11px !important;
    height: 11px !important;
  }

  .reservation-status__state-wrap {
    order: initial;
    margin-right: 0;
    padding: 4px 8px;
  }

  .reservation-status__state {
    font-size: 11px;
  }

  .reservation-status__cta {
    order: 3;
    justify-self: stretch;
  }

  .audience-section {
    padding: 74px 0 82px;
  }

  .audience-section__header {
    margin-bottom: 36px;
  }

  .audience-section__eyebrow {
    font-size: 16px;
  }

  .audience-section__title {
    font-size: 31px;
    line-height: 1.24;
  }

  .audience-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .audience-feature-card {
    min-height: 250px;
    padding: 34px 24px 32px;
    border-radius: 28px 0 28px 0;
  }

  .audience-feature-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .audience-feature-card__icon svg {
    width: 29px;
    height: 29px;
  }

  .audience-feature-card h3 {
    margin-bottom: 14px;
    font-size: 23px;
  }

  .audience-feature-card p {
    max-width: 280px;
    font-size: 15px;
  }

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

  .audience-card {
    padding: 26px 22px;
  }

  .audience-card strong {
    font-size: 22px;
  }

  .service-lineup-section {
    padding: 72px 0 80px;
  }

  .service-lineup-section__header {
    margin-bottom: 24px;
  }

  .service-lineup-section__header h2 {
    font-size: 28px;
  }

  .service-lineup-section__header h2 span {
    font-size: 35px;
  }

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

  .service-lineup-card {
    min-height: 336px;
    border-radius: 7px;
  }

  .service-lineup-card__content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .service-lineup-card__content h3 {
    font-size: 25px;
  }

  .service-lineup-card__more {
    margin-top: 18px;
  }

}

.feature-list--summary {
  position: relative;
  z-index: 3;
  padding: 0 0 80px;
  margin-top: 0;
  background: #ffffff;
  border-bottom: 0;
}

.feature-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: none;
}

.feature-list--summary .feature-list__grid {
  border-radius: 0;
  border-right: 0;
  border-left: 0;
}

.feature-card {
  position: relative;
  padding: 30px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 249, 0.98)),
    #ffffff;
}

.feature-list--summary .feature-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 18px 22px;
  text-align: center;
}

.feature-list--summary .feature-card::before,
.feature-list--summary .feature-card__icon,
.feature-list--summary .feature-card__text {
  display: none;
}

.feature-list--summary .feature-card__title {
  font-size: 16px;
  line-height: 1.35;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 42px;
  height: 3px;
  background: var(--color-green-bright);
  border-radius: var(--radius-round);
  opacity: 0.88;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--color-forest);
  background:
    radial-gradient(circle at 68% 28%, rgba(134, 185, 73, 0.28), transparent 34%),
    var(--color-green-soft);
  border-radius: var(--radius-small);
  box-shadow: inset 0 0 0 1px rgba(15, 74, 43, 0.08);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.feature-card__text {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 15px;
}

.feature-card__text a {
  color: var(--color-forest);
  font-weight: 900;
}

@media (max-width: 1024px) {
  .feature-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .feature-list--summary {
    margin-top: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
  }
}

@media (max-width: 620px) {
  .feature-list__grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px 22px;
  }
}

.content-section {
  padding: 96px 0;
  background: #ffffff;
}

.greeting-section {
  padding: 98px 0 108px;
  background: #ffffff;
}

.greeting-section__title {
  margin: 0 0 44px;
  color: #2c332f;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
}

.greeting-section__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  max-width: var(--container);
  margin: 0 auto;
}

.greeting-visual {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 0 34px 38px 0;
}

.greeting-visual__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 52%;
  background: linear-gradient(135deg, #0f4a2b 0%, #6a9b32 100%);
}

.greeting-visual__image {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-page);
}

.greeting-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greeting-visual__line {
  position: absolute;
  inset: -8% -7% -9% -10%;
  width: 118%;
  height: 118%;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.22));
  pointer-events: none;
}

.greeting-copy {
  max-width: 610px;
}

.greeting-copy__lead {
  margin: 0 0 24px;
  color: #2f3833;
  font-size: clamp(24px, 3.1vw, 32px);
  font-weight: 300;
  line-height: 1.38;
}

.greeting-copy__lead strong {
  display: inline;
  color: #151b18;
  font-weight: 900;
}

.greeting-copy__body {
  display: grid;
  gap: 16px;
  color: #68746d;
  font-size: 16px;
  line-height: 1.86;
}

.greeting-copy__body p {
  margin: 0;
}

.greeting-copy__signature {
  margin: 28px 0 0;
  color: #26302b;
  font-size: 16px;
  font-weight: 800;
}

.greeting-copy__signature strong {
  font-weight: 900;
}

.vision-mission-section {
  padding: 94px 0 104px;
  background: #ffffff;
}

.vision-mission-section__title {
  margin: 0 0 48px;
  color: #2c332f;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
}

.vision-banner {
  position: relative;
  display: grid;
  align-items: center;
  max-width: var(--container);
  min-height: 230px;
  margin: 0 auto 74px;
  overflow: hidden;
}

.vision-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 51, 31, 0.76), rgba(7, 51, 31, 0.26));
}

.vision-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vision-banner__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 42px 28px;
  color: #ffffff;
  text-align: center;
}

.vision-banner__content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.vision-banner__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.mission-block {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.mission-block h3 {
  margin: 0 0 14px;
  color: #111714;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.16;
}

.mission-block p {
  margin: 0;
  color: #5f6b64;
  font-size: 16px;
  line-height: 1.72;
}

.mission-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 88px);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.mission-principle {
  display: grid;
  justify-items: center;
}

.mission-principle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 164px;
  margin-bottom: 22px;
  color: #ffffff;
  background: #083721;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(8, 55, 33, 0.38), 0 18px 38px rgba(8, 55, 33, 0.16);
}

.mission-principle--strong .mission-principle__icon {
  color: #ffffff;
  background: #378a73;
  box-shadow: 0 0 0 2px rgba(55, 138, 115, 0.38), 0 18px 38px rgba(55, 138, 115, 0.16);
}

.mission-principle--dark .mission-principle__icon {
  background: linear-gradient(135deg, var(--color-forest-deep), var(--color-forest-dark));
  box-shadow: 0 0 0 2px rgba(6, 41, 27, 0.44), 0 18px 38px rgba(6, 41, 27, 0.2);
}

.mission-principle__icon svg {
  width: 58px;
  height: 58px;
}

.mission-principle h4 {
  margin: 0;
  color: #2c332f;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.mission-principle span {
  margin-top: 2px;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.mission-principle p {
  max-width: 260px;
  margin: 16px 0 0;
  color: #5f6b64;
  font-size: 15px;
  line-height: 1.72;
}

.certificate-section {
  padding: 94px 0 104px;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.certificate-section__header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.certificate-section__header h2 {
  margin: 0;
  color: #2c332f;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.22;
}

.certificate-section__header p {
  margin: 14px 0 0;
  color: #66726b;
  font-size: 17px;
  line-height: 1.72;
}

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

.certificate-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: 0 16px 38px rgba(10, 54, 34, 0.06);
}

.certificate-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  margin: 18px 18px 0;
  color: #8d9791;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    #d8ddda;
  border: 1px solid #cbd2ce;
}

.certificate-card__image span {
  color: #7a8580;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-card__content {
  padding: 24px 24px 28px;
  text-align: center;
}

.certificate-card__label {
  display: block;
  margin-bottom: 9px;
  color: var(--color-forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.34;
}

.certificate-card p {
  margin: 12px 0 0;
  color: #66726b;
  font-size: 15px;
  line-height: 1.68;
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-header__title {
  margin: 0;
  color: var(--color-text);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.22;
}

.section-header__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 18px;
}

.section-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .content-section {
    padding: 70px 0;
  }

  .greeting-section {
    padding: 72px 0 78px;
  }

  .greeting-section__title {
    margin-bottom: 34px;
    font-size: 29px;
  }

  .greeting-section__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .greeting-visual {
    width: min(100%, 390px);
    padding: 0 24px 28px 0;
  }

  .greeting-visual__line {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.96);
    transform-origin: center;
  }

  .greeting-copy {
    max-width: none;
  }

  .greeting-copy__lead {
    font-size: 26px;
  }

  .greeting-copy__body {
    font-size: 15.5px;
    line-height: 1.78;
  }

  .vision-mission-section {
    padding: 70px 0 78px;
  }

  .vision-mission-section__title {
    margin-bottom: 34px;
    font-size: 29px;
  }

  .vision-banner {
    min-height: 210px;
    margin-bottom: 54px;
  }

  .vision-banner__content strong {
    font-size: 29px;
  }

  .mission-block {
    margin-bottom: 34px;
  }

  .mission-block h3 {
    font-size: 32px;
  }

  .mission-principles {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mission-principle__icon {
    width: 142px;
    height: 142px;
  }

  .mission-principle__icon svg {
    width: 50px;
    height: 50px;
  }

  .certificate-section {
    padding: 70px 0 78px;
  }

  .certificate-section__header {
    margin-bottom: 34px;
  }

  .certificate-section__header h2 {
    font-size: 30px;
  }

  .certificate-section__header p {
    font-size: 16px;
  }

  .certificate-gallery {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 430px;
    margin: 0 auto;
  }

  .section-header__title {
    font-size: 30px;
  }

  .section-header__text {
    font-size: 16px;
  }
}

.service-page-section {
  padding: 96px 0;
  background: #ffffff;
}

.service-section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.service-section-head--left p {
  margin-left: 0;
  margin-right: 0;
}



.service-section-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-section-head h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.22;
}

.service-section-head p {
  max-width: 680px;
  margin: 15px auto 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.72;
}

.service-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.service-overview-copy p {
  margin: 0;
  color: #3d4842;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
}

.service-overview-media {
  overflow: hidden;
  border-radius: var(--radius-small);

}

.service-overview-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.service-diagnosis-section {
  background: var(--color-page);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.service-diagnosis-card {
  min-height: 236px;
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: 0 14px 34px rgba(10, 54, 34, 0.05);
}

.service-diagnosis-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(15, 74, 43, 0.26);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.service-diagnosis-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.34;
}

.service-diagnosis-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.66;
}

.service-scope-stack {
  display: grid;
  gap: 38px;
}

.service-scope-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);

}

.service-scope-panel--reverse .service-scope-panel__media {
  order: 2;
}

.service-scope-panel__media {
  min-height: 420px;
  background: var(--color-page);
}

.service-scope-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-scope-panel__body {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 58px);
}

.service-scope-panel__body h3 {
  margin: 0 0 26px;
  color: var(--color-text);
  font-size: 31px;
  font-weight: 900;
  line-height: 1.24;
}

.service-scope-panel__points {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-scope-panel__points li {
  position: relative;
  padding-left: 28px;
}

.service-scope-panel__points li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--color-green-soft);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-scope-panel__points li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: 4px;
  height: 7px;
  border: solid var(--color-forest);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.service-scope-panel__points strong {
  display: block;
  color: var(--color-text);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.45;
}

.service-scope-panel__points p {
  margin: 5px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.68;
}

.service-scope-section .service-section-head,
.service-target-section .service-section-head {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-scope-section .service-section-head p,
.service-target-section .service-section-head p {
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-target-section {
  background: var(--color-page);
  border-top: 1px solid var(--color-border);
}

.service-target-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.service-target-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-small);
  box-shadow: 0 14px 34px rgba(10, 54, 34, 0.08);
}

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

@media (max-width: 1024px) {
  .service-target-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
}

@media (max-width: 640px) {
  .service-target-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-target-card {
  position: relative;
  padding: 24px 24px 24px 56px;
  background: #ffffff;
  border: 1px solid rgba(15, 74, 43, 0.07);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10, 54, 34, 0.03);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.service-target-card span {
  display: none !important;
}

.service-target-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 20px;
  width: 22px;
  height: 22px;
  background-color: var(--color-green-soft);
  border-radius: 50%;
  transition: background-color 180ms ease;
}

.service-target-card::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 27px;
  width: 5px;
  height: 8px;
  border: solid var(--color-forest);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: border-color 180ms ease;
}

.service-target-card:hover {
  border-color: rgba(15, 74, 43, 0.16);
  box-shadow: 0 12px 30px rgba(10, 54, 34, 0.06);
  transform: translateY(-2px);
}

.service-target-card:hover::before {
  background-color: var(--color-forest);
}

.service-target-card:hover::after {
  border-color: #ffffff;
}

.service-target-card h3 {
  margin: 0 0 8px 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.service-target-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .service-overview-layout,
  .service-scope-panel {
    grid-template-columns: 1fr;
  }

  .service-scope-panel--reverse .service-scope-panel__media {
    order: 0;
  }

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

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

@media (max-width: 768px) {
  .service-page-section {
    padding: 70px 0;
  }

  .service-section-head {
    margin-bottom: 30px;
  }

  .service-section-head h2 {
    font-size: 30px;
  }

  .service-section-head p {
    font-size: 16px;
  }

  .service-overview-layout {
    gap: 30px;
  }

  .service-overview-copy p {
    font-size: 17px;
    line-height: 1.78;
  }

  .service-diagnosis-grid,
  .service-target-grid,
  .service-target-visual {
    grid-template-columns: 1fr;
  }

  .service-scope-stack {
    gap: 24px;
  }

  .service-scope-panel__media {
    min-height: 260px;
  }

  .service-scope-panel__body {
    padding: 30px 24px;
  }

  .service-scope-panel__body h3 {
    font-size: 25px;
  }
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(106, 155, 50, 0.55);
  box-shadow: 0 16px 34px rgba(10, 54, 34, 0.07);
  transform: translateY(-2px);
}

.service-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(15, 74, 43, 0.08), rgba(106, 155, 50, 0.14)),
    linear-gradient(90deg, transparent 0 13%, rgba(15, 74, 43, 0.16) 13% 14%, transparent 14% 100%);
  position: relative;
  overflow: hidden;
}

.service-card__media::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(15, 74, 43, 0.1);
  border-radius: 7px;
}

.service-card__media::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 241, 223, 0.78));
  border: 1px solid rgba(15, 74, 43, 0.12);
  border-radius: 50%;
}

.service-card__media--office::before {
  background:
    linear-gradient(90deg, rgba(15, 74, 43, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(15, 74, 43, 0.12) 1px, transparent 1px);
  background-size: 56px 42px;
}

.service-card__media--facility {
  background:
    linear-gradient(135deg, rgba(15, 74, 43, 0.1), rgba(220, 229, 221, 0.58)),
    repeating-linear-gradient(0deg, rgba(15, 74, 43, 0.12) 0 1px, transparent 1px 34px);
}

.service-card__media--facility::before {
  background:
    repeating-linear-gradient(90deg, rgba(15, 74, 43, 0.12) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
}

.service-card__media--move {
  background:
    linear-gradient(135deg, rgba(106, 155, 50, 0.18), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(90deg, rgba(15, 74, 43, 0.1) 0 1px, transparent 1px 42px);
}

.service-card__media--move::before {
  background:
    linear-gradient(90deg, rgba(15, 74, 43, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(134, 185, 73, 0.22), transparent 28%);
  background-size: 48px 100%, auto;
}

.service-card__body {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.service-card__label {
  justify-self: start;
  padding: 5px 9px;
  color: var(--color-forest);
  background: var(--color-green-soft);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card__title {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.38;
}

.service-card__text {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 680px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__media {
    display: none;
  }

  .service-card__body {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.content-section--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(106, 155, 50, 0.28), transparent 28%),
    linear-gradient(135deg, var(--color-forest-deep), var(--color-forest));
}

.content-section__split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 58px;
}

.section-header--dark .section-header__title {
  color: #ffffff;
}

.section-header--dark .section-header__text {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list--standard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#standards .content-section__split {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

#standards .section-header {
  max-width: none;
  margin-bottom: 0;
  padding-top: 12px;
}

#standards .feature-list--standard {
  grid-template-columns: 1fr;
  gap: 14px;
}

#standards .feature-card--dark {
  padding: 28px 30px 26px;
}

.feature-card--dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-small);
}

.feature-card--dark .feature-card__title {
  color: #ffffff;
}

.feature-card--dark .feature-card__text {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 980px) {
  .content-section__split {
    grid-template-columns: 1fr;
  }

  #standards .content-section__split {
    grid-template-columns: 1fr;
  }

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.process-list__item {
  position: relative;
  z-index: 1;
  padding: 30px 24px;
  background: var(--color-page);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: 0 12px 30px rgba(10, 54, 34, 0.05);
  overflow: hidden;
}

@media (width >= 1025px) {
  #process .process-list::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 42px;
    left: 42px;
    height: 2px;
    background: linear-gradient(90deg, rgba(15, 74, 43, 0.14), rgba(106, 155, 50, 0.34));
  }
}

.process-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-forest), var(--color-green-bright));
}

.process-list__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-forest), var(--color-green));
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.process-list__item strong {
  display: block;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 900;
}

.process-list__item p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

@media (max-width: 1024px) {
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .process-list {
    grid-template-columns: 1fr;
  }
}

.content-section--brand {
  background: var(--color-page);
}

.content-section--brand .content-section__split {
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.content-section--brand .section-header {
  order: -1;
  align-content: center;
  max-width: none;
  margin-bottom: 0;
  padding: 48px;
  background:
    radial-gradient(circle at 12% 18%, rgba(134, 185, 73, 0.18), transparent 26%),
    linear-gradient(135deg, #ffffff, #f7faf5);
}

.content-section--brand .section-header::before {
  content: "";
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-forest), var(--color-green-bright));
  border-radius: var(--radius-round);
}

.media-card {
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.content-section--brand .media-card {
  display: flex;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.media-card__media {
  overflow: hidden;
  border-radius: 5px;
}

.content-section--brand .media-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(15, 74, 43, 0.08), rgba(106, 155, 50, 0.15)),
    repeating-linear-gradient(90deg, rgba(15, 74, 43, 0.08) 0 1px, transparent 1px 42px);
  border-radius: 0;
}

.content-section--brand .media-card__media img {
  width: 100%;
  max-width: 560px;
  border-radius: 6px;
  box-shadow: 0 24px 48px rgba(5, 36, 23, 0.18);
}

@media (max-width: 980px) {
  .content-section--brand .section-header {
    padding: 38px 34px;
  }

  .content-section--brand .media-card__media {
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .content-section--brand .section-header {
    padding: 30px 24px;
  }

  .content-section--brand .media-card__media {
    padding: 18px;
  }
}

.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #ffffff;
  background: url("../images/home-cta-estimate-20260613.jpg") center center / cover no-repeat;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(134, 202, 183, 0.12) 0%, rgba(15, 74, 43, 0.04) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.cta-section__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(134, 202, 183, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(22, 63, 58, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, rgba(3, 19, 15, 0.96) 0%, rgba(8, 18, 14, 0.92) 100%);
  z-index: 1;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-section__card {
  width: 100%;
  max-width: 820px;
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.cta-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(134, 202, 183, 0.12);
  border: 1px solid rgba(134, 202, 183, 0.28);
  color: #86cab7;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cta-section__tag-dot {
  width: 6px;
  height: 6px;
  background-color: #86cab7;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 8px #86cab7;
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(134, 202, 183, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(134, 202, 183, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(134, 202, 183, 0);
  }
}

.cta-section__title {
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.cta-section__title strong {
  display: block;
  margin-top: 10px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff 0%, #86cab7 50%, #d7ebe1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-section__desc {
  margin: 0 auto 24px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14.5px, 1.6vw, 16px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cta-section__phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 28px auto 36px;
}

.cta-section__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #86cab7;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1), color 250ms ease, text-shadow 250ms ease;
  text-decoration: none;
}

.cta-section__phone-link:hover {
  color: #ffffff;
  transform: scale(1.03);
  text-shadow: 0 0 15px rgba(134, 202, 183, 0.4);
}

.cta-section__phone-icon {
  width: clamp(26px, 4vw, 36px);
  height: clamp(26px, 4vw, 36px);
  flex-shrink: 0;
}

.cta-section__phone-label {
  font-size: clamp(12.5px, 1.3vw, 14px);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 36px;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 800;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.cta-section__btn--primary {
  color: #04251e;
  background: linear-gradient(135deg, #ffffff 0%, #d8f3ec 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-section__btn--primary:hover {
  background: linear-gradient(135deg, #d8f3ec 0%, #a4e5d3 100%);
  border-color: #a4e5d3;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(134, 202, 183, 0.3);
}

.cta-section__btn--primary .cta-arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section__btn--primary:hover .cta-arrow-icon {
  transform: translateX(4px);
}

.cta-section__btn--secondary {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.cta-section__btn--secondary:hover {
  background-color: rgba(134, 202, 183, 0.08);
  border-color: rgba(134, 202, 183, 0.6);
  transform: translateY(-2px);
}

.cta-section__btn--secondary .cta-phone-icon {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-section__card {
    padding: 0;
    border-radius: 0;
  }

  .cta-section__actions {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    gap: 12px;
  }

  .cta-section__btn {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.78);
  background:#040404;
}

.site-footer__inner {
  display: grid;
  gap: 22px;
}

.site-footer__brand {
  display: grid;
  gap: 3px;
  color: #ffffff;
}

.site-footer__brand-logo {
  display: block;
  width: clamp(160px, 14vw, 220px);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__brand strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.site-footer__brand span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.site-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.quick-menu {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 95;
  display: flex;
  flex-direction: column;
  width: 92px;
  transform: translateY(-50%);
  box-shadow: -10px 18px 34px rgba(5, 32, 20, 0.18);
}

.quick-menu__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 92px;
  height: 78px;
  padding: 9px 10px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.quick-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.quick-menu__icon svg,
.sticky-bottom-cta__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-menu__icon [class^="xi-"],
.sticky-bottom-cta__icon [class^="xi-"] {
  font-size: 24px;
  line-height: 1;
  display: block;
}

.quick-menu__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-menu__item:hover,
.quick-menu__item:focus-visible {
  filter: brightness(1.08);
}

.quick-menu__item:focus-visible {
  z-index: 1;
  outline: 3px solid rgba(134, 185, 73, 0.42);
  outline-offset: -3px;
}

.quick-menu__item--phone {
  background: var(--color-forest-dark);
}

.quick-menu__item--online {
  background: #378a73;
}

.quick-menu__item--kakao {
  color: #2b2200;
  background: #f9df18;
}

.quick-menu__item--blog {
  color: #ffffff;
  background: #03c75a;
}

.quick-menu__phone-popover {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  background: rgba(6, 41, 27, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-small);
  box-shadow: 0 16px 34px rgba(5, 32, 20, 0.22);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.quick-menu__item--phone:hover .quick-menu__phone-popover,
.quick-menu__item--phone:focus-visible .quick-menu__phone-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

@media (max-width: 768px) {
  .quick-menu {
    display: none;
    width: 50px;
  }

  .quick-menu__item {
    width: 50px;
    height: 50px;
    gap: 0;
    padding: 0;
  }

  .quick-menu__text {
    display: none;
  }

  .quick-menu__phone-popover {
    display: none !important;
  }
}

.page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-default-20260615.png");
  --page-hero-position: center;
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #ffffff;
  background: var(--color-forest-deep);
}

.page-about .page-hero {
  --page-hero-image: url("../images/page-heroes/about_hero_chatgpt.png");
  --page-hero-position: center;
}

.page-service .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-services-20260615.png");
  --page-hero-position: center;
}

.page-office .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-office.jpg");
}

.page-store .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-store.png");
}

.page-government .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-government-20260615.png");
}

.page-school .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-school-20260615.png");
}

.page-building .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-building-20260615.jpeg");
}

.page-factory .page-hero {
  --page-hero-image: url("../images/service-pages/factory_hero.png");
}

.page-hospital .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-hospital-20260615.jpeg");
}

.page-carpet .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-carpet-20260615.png");
}

.page-bug .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-bug-20260615.jpeg");
}

.page-aircon .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-aircon.jpg");
}

.page-contact .page-hero {
  --page-hero-image: url("../images/page-heroes/page-hero-contact-20260615.png");
  --page-hero-position: center;
}

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

.page-hero::before {
  z-index: -2;
  background-image: var(--page-hero-image);
  background-position: var(--page-hero-position);
  background-size: cover;
  transform: scale(1.01);
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 22, 34, 0.78) 0%, rgba(5, 33, 34, 0.52) 38%, rgba(5, 33, 34, 0.2) 70%, rgba(5, 33, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.page-hero__inner {
  display: flex;
  min-height: 350px;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 68px;
}

.page-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.page-hero__text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}

.section-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  min-height: 74px;
  align-items: center;
  gap: 28px;
  color: #ffffff;
}

.section-tabs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.section-tabs__home {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.section-tabs__home svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.section-tabs__divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.section-tabs__current {
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.section-tabs__chevron {
  width: 9px;
  height: 9px;
  margin-left: -10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  opacity: 0.82;
  transform: rotate(45deg) translateY(-2px);
}

.section-tabs__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-left: 12px;
}

.section-tabs__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease;
}

.section-tabs__links a:hover {
  color: #ffffff;
}

.section-tabs__links a.is-active {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 4px;
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 390px;
  }

  .page-hero__inner {
    min-height: 282px;
    padding: 62px 0 38px;
  }

  .page-hero__title {
    font-size: 32px;
  }

  .page-hero__text {
    margin-top: 16px;
    font-size: 16px;
  }

  .section-tabs {
    min-height: auto;
    align-items: flex-start;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section-tabs__links {
    width: 100%;
    margin-left: 0;
  }
}

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

.info-list__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.info-list__item strong {
  color: var(--color-forest);
}

.info-list__item span,
.info-list__item a {
  color: var(--color-text);
  font-weight: 700;
}

.content-section--directions {
  background: var(--color-page);
}

.content-section--directions .section-header {
  max-width: 720px;
}

.directions-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.directions-panel,
.directions-map {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);

}

.directions-panel {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: #ffffff;
}

.directions-panel__eyebrow {
  color: var(--color-green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.directions-panel__title {
  margin: 10px 0 22px;
  color: var(--color-forest-deep);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
}

.directions-info {
  margin-bottom: 28px;
}

.directions-info .info-list__item {
  grid-template-columns: 92px 1fr;
}

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.directions-actions .button {
  min-height: 48px;
}

.directions-map {
  min-height: 430px;
  background: var(--color-green-soft);
}

.directions-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

@media (max-width: 620px) {
  .info-list__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 940px) {
  .directions-grid {
    grid-template-columns: 1fr;
  }

  .directions-map,
  .directions-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .directions-panel {
    padding: 26px 22px;
  }

  .directions-panel__title {
    font-size: 24px;
  }

  .directions-info .info-list__item {
    grid-template-columns: 1fr;
  }

  .directions-actions {
    display: grid;
  }

  .directions-actions .button {
    width: 100%;
  }

  .directions-map,
  .directions-map iframe {
    min-height: 320px;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-section__panel {
  padding: 30px;
  background: var(--color-page);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

.contact-section__panel h2,
.contact-section__panel h3 {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
}

.contact-section__panel p {
  margin: 0 0 18px;
  color: var(--color-muted);
}

.contact-section .process-list {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .contact-section .process-list {
    grid-template-columns: 1fr;
  }
}

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

/* PRIMECARE Modernized Components */

/* 2. Image-led Trust Section */
.trust-section {
  padding: 112px 0;
  background: var(--color-page);
}

.trust-section__inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.trust-section__intro {
  padding-top: 8px;
}

.trust-section__eyebrow {
  margin: 0 0 10px;
  color: var(--color-forest);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.trust-section__title {
  margin: 0;
  color: var(--color-text);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.38;
}

.trust-section__text {
  margin: 16px 0 30px;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.trust-section__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: #ffffff;
  background: var(--color-forest);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

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

.pc-trust-card {
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
}

.pc-trust-card__image {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  margin-bottom: 28px;
  background: var(--color-border);
}

.pc-trust-card__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 8px;
  color: var(--color-text);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.28;
}

.pc-trust-card__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

/* 3. Premium Process Showcase */
.process-showcase {
  position: relative;
  padding: 112px 0 124px;
  overflow: hidden;
  background: var(--color-page);
}

.process-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 52%;
  background:
    linear-gradient(90deg, rgba(0, 89, 83, 0.92), rgba(0, 104, 94, 0.84)),
    url("../images/home-process-inspection-20260613.jpg") center / cover no-repeat;
}

.process-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0 50%, rgba(245, 248, 244, 0.82) 78%, var(--color-page) 100%);
  pointer-events: none;
}

.process-showcase__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: center;
  min-height: 430px;
}

.process-showcase__intro {
  position: relative;
  color: #ffffff;
}

.process-showcase__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.process-showcase__title {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  column-gap: 18px;
  align-items: end;
  max-width: 330px;
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.14;
}

.process-showcase__title span {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #ffffff;
  font-size: 88px;
  font-weight: 900;
  line-height: 0.86;
}

.process-showcase__text {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.process-showcase__controls {
  display: flex;
  gap: 12px;
  margin-top: 50px;
}

.process-showcase__control {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #ffffff;
  font: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.process-showcase__control:hover,
.process-showcase__control:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  outline: none;
  transform: translateY(-2px);
}

.process-showcase__control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  color: #ffffff;
  transform: translate(-34%, -50%) rotate(-45deg);
}

.process-showcase__control--next::before {
  transform: translate(-66%, -50%) rotate(135deg);
}

.process-stage-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-stage-card {
  position: relative;
  display: flex;
  min-height: 356px;
  padding: 36px 26px 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid rgba(220, 229, 221, 0.72);
  transform: translateY(0) scale(0.98);
  transition: opacity 440ms ease, transform 440ms cubic-bezier(0.2, 0.8, 0.2, 1), color 360ms ease, background 440ms ease, border-color 360ms ease, box-shadow 440ms ease;
  will-change: transform, opacity;
}

#process.is-interactive .process-stage-card {
  cursor: pointer;
}

#process.is-interactive .process-stage-card:focus-visible {
  outline: 3px solid var(--home-accent, var(--color-forest));
  outline-offset: 4px;
}

.process-stage-card:is(.is-featured, .is-active) {
  z-index: 2;
  min-height: 356px;
  opacity: 1;
  color: #ffffff;
  background: var(--color-forest-deep);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-18px) scale(1);
}

.process-stage-card__icon {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--color-forest);
  background: var(--color-green-soft);
  border-radius: 50%;
}

.process-stage-card:is(.is-featured, .is-active) .process-stage-card__icon {
  color: var(--color-forest);
  background: #ffffff;
}

.process-stage-card__icon svg {
  width: 32px;
  height: 32px;
}

.process-stage-card__num {
  position: relative;
  display: block;
  margin-bottom: 18px;
  color: rgba(15, 74, 43, 0.62);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.process-stage-card:is(.is-featured, .is-active) .process-stage-card__num {
  color: rgba(255, 255, 255, 0.38);
}

.process-stage-card__lead {
  min-height: 39px;
  margin: 0 0 10px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.process-stage-card:is(.is-featured, .is-active) .process-stage-card__lead {
  color: rgba(255, 255, 255, 0.64);
}

.process-stage-card h3 {
  margin: 0;
  color: inherit;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.process-stage-card > p:last-child {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.process-stage-card:is(.is-featured, .is-active) > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.process-stage-card__timer {
  position: absolute;
  right: 22px;
  bottom: 17px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.process-stage-card:is(.is-featured, .is-active) .process-stage-card__timer {
  opacity: 1;
  transform: translateY(0);
}

.process-stage-card__timer-track {
  display: block;
  height: 4px;
  overflow: hidden;
  background: rgba(15, 74, 43, 0.12);
  border-radius: var(--radius-round);
}

.process-stage-card:is(.is-featured, .is-active) .process-stage-card__timer-track {
  background: rgba(255, 255, 255, 0.22);
}

.process-stage-card__timer-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-forest);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
}

.process-stage-card:is(.is-featured, .is-active) .process-stage-card__timer-bar {
  background: #ffffff;
}

@media (max-width: 1180px) {
  .process-showcase {
    padding: 92px 0 104px;
  }

  .process-showcase::before {
    width: 100%;
    height: 390px;
    bottom: auto;
  }

  .process-showcase::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0 340px, var(--color-page) 430px);
  }

  .process-showcase__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
  }

  .process-showcase__intro {
    max-width: 620px;
  }

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

  .process-stage-card:is(.is-featured, .is-active) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .process-showcase {
    padding: 72px 0 84px;
  }

  .process-showcase::before {
    height: 430px;
  }

  .process-showcase::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0 380px, var(--color-page) 470px);
  }

  .process-showcase.is-interactive {
    background: var(--color-forest-deep) !important;
  }

  .process-showcase.is-interactive::before {
    display: none !important;
  }

  .process-showcase.is-interactive::after {
    display: none !important;
  }

  .process-showcase.is-interactive .process-showcase__eyebrow {
    color: var(--color-green-bright) !important;
  }

  .process-showcase.is-interactive .process-showcase__title {
    color: #ffffff !important;
  }

  .process-showcase.is-interactive .process-showcase__text {
    color: rgba(255, 255, 255, 0.75) !important;
  }

  .process-showcase.is-interactive .process-stage-card:is(.is-featured, .is-active) {
    background: var(--color-forest) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
  }

  .process-showcase__title {
    display: block;
    font-size: 32px;
  }

  .process-showcase__title span {
    display: inline-block;
    margin-left: 8px;
    font-size: 58px;
    vertical-align: -8px;
  }

  .process-showcase__text {
    max-width: none;
    font-size: 14px;
  }

  .process-showcase__controls {
    margin-top: 32px;
  }

  .process-stage-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-stage-card,
  .process-stage-card:is(.is-featured, .is-active) {
    min-height: 260px;
    padding: 32px 24px 56px;
  }

  .process-stage-card__lead {
    min-height: 0;
  }
}

/* 4. Responsive CSS Digital Business Card */
.digital-business-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 42px;
  background: linear-gradient(135deg, var(--color-forest-deep) 0%, var(--color-forest-dark) 100%);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 51, 31, 0.35);
  position: relative;
  overflow: hidden;
}

.digital-business-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(106, 155, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.dbc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.dbc-logo img {
  height: 32px;
  width: auto;
}

.dbc-logo-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.dbc-info {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.dbc-info__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14.5px;
}

.dbc-info__label {
  color: var(--color-green-bright);
  font-weight: 800;
  flex: 0 0 80px;
}

.dbc-info__value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  word-break: break-all;
}

.dbc-header {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.dbc-representative {
  display: flex;
  flex-direction: column;
}

.dbc-rep-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 4px;
}

.dbc-rep-name {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.dbc-rep-name span {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-green-bright);
  margin-left: 6px;
}

.dbc-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dbc-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  background: rgba(106, 155, 50, 0.22);
  border: 1px solid rgba(106, 155, 50, 0.35);
  color: var(--color-green-bright);
  border-radius: 4px;
}

/* 5. Mobile Sticky Bottom CTA */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  height: 64px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.sticky-bottom-cta .button {
  display: inline-flex;
  flex-direction: column;
  border-radius: 0;
  gap: 4px;
  height: 64px;
  padding: 8px 2px 7px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.sticky-bottom-cta .button::after {
  display: none;
}

.sticky-bottom-cta__call {
  background: var(--color-forest);
  color: #ffffff;
}

.sticky-bottom-cta__web {
  background: var(--color-green);
  color: #ffffff;
}

.sticky-bottom-cta__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* 6. Media Queries */
@media (max-width: 1024px) {
  .trust-section {
    padding: 90px 0;
  }

  .trust-section__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .trust-section__intro {
    max-width: 680px;
    padding-top: 0;
  }

  .trust-section__eyebrow {
    font-size: 42px;
  }

  .pc-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sticky-bottom-cta {
    display: none !important;
  }
  .site-wrap {
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .trust-section {
    padding: 74px 0;
  }

  .trust-section__inner {
    gap: 34px;
  }

  .trust-section__eyebrow {
    font-size: 34px;
  }

  .trust-section__title {
    font-size: 24px;
  }

  .trust-section__text {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .pc-trust-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pc-trust-card__image {
    margin-bottom: 20px;
  }

  .pc-trust-card__title {
    font-size: 23px;
  }

  .pc-trust-card__desc {
    font-size: 15px;
  }

  .digital-business-card {
    padding: 24px;
  }
  .dbc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* 7. Premium Business Card Redesign */
.info-card-section {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.prime-business-card {
  max-width: 680px;
  margin: 0 auto;
  perspective: 1000px;
}

.pbc-inner {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--color-forest-deep) 0%, #052214 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 46px 42px;
  color: #ffffff;
  box-shadow:
    0 30px 70px rgba(7, 41, 25, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

/* 메탈릭 반사광 장식 효과 */
.pbc-inner::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(134, 185, 73, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.pbc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 28px;
}

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

.pbc-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.pbc-brand-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.pbc-badges {
  display: flex;
  gap: 8px;
}

.pbc-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
}

.pbc-badge--gold {
  background: rgba(134, 185, 73, 0.15);
  border-color: rgba(134, 185, 73, 0.35);
  color: var(--color-green-bright);
}

.pbc-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.pbc-profile {
  display: flex;
  flex-direction: column;
}

.pbc-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 700;
}

.pbc-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.pbc-name span {
  font-size: 14px;
  color: var(--color-green-bright);
  font-weight: 800;
  margin-left: 8px;
}

.pbc-stamp {
  width: 80px;
  height: 80px;
  opacity: 0.85;
}

.stamp-svg {
  width: 100%;
  height: 100%;
}

.pbc-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.pbc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pbc-detail-item--full {
  grid-column: span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.pbc-label {
  font-size: 11px;
  font-weight: 900;
  color: var(--color-green-bright);
  letter-spacing: 0.05em;
}

.pbc-value {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pbc-value a {
  color: inherit;
  transition: color 180ms ease;
}

.pbc-value a:hover {
  color: var(--color-green-bright);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .pbc-inner {
    padding: 32px 24px;
  }

  .pbc-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 18px;
  }

  .pbc-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .pbc-stamp {
    align-self: flex-end;
    margin-top: -30px;
  }

  .pbc-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pbc-detail-item--full {
    grid-column: span 1;
  }
}

/* ==========================================
   시공갤러리 (Horizontal Ticker)
   ========================================== */
.gallery-section {
  padding: 80px 0;
  background-color: var(--color-page);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.gallery-ticker-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* 마스크 효과: 좌우 그라데이션 페이드 */
.gallery-ticker-container::before,
.gallery-ticker-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.gallery-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-page) 0%, rgba(245, 248, 244, 0) 100%);
}

.gallery-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-page) 0%, rgba(245, 248, 244, 0) 100%);
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: galleryTicker 35s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  flex: 0 0 320px;
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  color: inherit;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 54, 34, 0.04);
  text-decoration: none;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 155, 50, 0.45);
  box-shadow: 0 12px 30px rgba(10, 54, 34, 0.1);
}

.gallery-item__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #eee;
}

.gallery-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover .gallery-item__img-wrap img {
  transform: scale(1.08);
}

.gallery-item__info {
  padding: 20px 24px;
}

.gallery-item__tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: var(--color-green-soft);
  color: var(--color-forest);
  font-size: 12px;
  font-weight: 800;
  border-radius: var(--radius-round);
  margin-bottom: 10px;
}

.gallery-item__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.4;
  word-break: keep-all;
}

/* 무한 롤링 키프레임 설정 */
@keyframes galleryTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2064px);
  }
}

/* 모바일 뷰포트 대응 */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-ticker-container::before,
  .gallery-ticker-container::after {
    width: 50px;
  }
  .gallery-item {
    flex: 0 0 260px;
    border-radius: 6px;
  }
  .gallery-item__info {
    padding: 16px 18px;
  }
  .gallery-item__title {
    font-size: 15px;
  }
  @keyframes galleryTicker {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1704px);
    }
  }
}

/* ==========================================
   헤더 메가 메뉴 (Mega Menu) & 모바일 네비게이션
   ========================================== */

/* 1. 데스크톱 메가 메뉴 스타일 */
@media (min-width: 1101px) {
  .site-header__nav:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(15, 74, 43, 0.06);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 15px 35px rgba(9, 49, 31, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 250ms ease, visibility 250ms ease, transform 250ms ease;
    z-index: 99;
    padding: 48px 0;
    pointer-events: none;
  }

  .mega-menu__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: var(--container);
    margin: 0 auto;
  }

  .mega-menu__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .site-header__nav .mega-menu__title {
    position: static;
    display: block;
    padding: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    color: var(--color-forest);
    border-bottom: 2px solid rgba(15, 74, 43, 0.08);
    margin-bottom: 4px;
    transition: color 180ms ease;
  }

  .site-header__nav .mega-menu__title:hover {
    color: var(--color-green);
  }

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

  .site-header__nav .mega-menu__list a {
    position: static;
    display: inline-block;
    padding: 0;
    font-size: 14.5px;
    color: var(--color-muted);
    font-weight: 600;
    line-height: 1.45;
    transition: color 180ms ease, transform 180ms ease;
  }

  .site-header__nav .mega-menu__list a:hover {
    color: var(--color-green);
    transform: translateX(4px);
  }
}

/* Homepage consistency pass */
.page-home {
  --home-container: 1280px;
  --home-section-y: 140px;
  --home-section-y-mobile: 92px;
  --home-heading-size: clamp(34px, 2.7vw, 44px);
  --home-subheading-size: clamp(24px, 1.7vw, 28px);
  --home-card-title-size: 23px;
  --home-body-size: 16px;
  --home-accent: var(--color-forest);
  --home-accent-deep: var(--color-forest-deep);
  --home-muted-bg: var(--color-page);
}

.page-home .site-main .container {
  max-width: var(--home-container);
}

.page-home #audience,
.page-home .service-lineup-section,
.page-home .trust-section,
.page-home .process-showcase,
.page-home .gallery-section {
  padding-top: var(--home-section-y);
  padding-bottom: var(--home-section-y);
}

.page-home .audience-section__header,
.page-home .service-lineup-section__header,
.page-home .gallery-section__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.page-home .audience-section__eyebrow,
.page-home .service-lineup-section__eyebrow,
.page-home .trust-section__eyebrow {
  margin: 0 0 12px;
  color: var(--home-accent);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.page-home .audience-section__title,
.page-home .service-lineup-section__header h2,
.page-home .trust-section__title,
.page-home .gallery-section .section-header__title {
  margin: 0;
  color: var(--color-text);
  font-size: var(--home-heading-size);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.page-home .audience-section__title span,
.page-home .service-lineup-section__header h2 span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.page-home .section-header__text,
.page-home .trust-section__text,
.page-home .audience-feature-card p,
.page-home .pc-trust-card__desc {
  color: var(--color-muted);
  font-size: var(--home-body-size);
  font-weight: 500;
  line-height: 1.68;
}

.page-home .hero {
  min-height: 660px;
}

.page-home .hero__inner {
  min-height: 660px;
}

.page-home .hero__content {
  width: min(100%, 650px);
  padding: 86px 0 96px;
}

.page-home .hero__title {
  font-size: clamp(42px, 3.8vw, 58px);
  line-height: 1.14;
}

.page-home .hero__text {
  max-width: 520px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.68;
}

.page-home .company-proof-strip {
  background: linear-gradient(90deg, var(--home-accent-deep), #005b53);
}

.page-home .company-proof-strip__inner {
  min-height: 86px;
}

.page-home .audience-section {
  background:#f5f2ee;
}

.page-home .audience-feature-grid {
  gap: 24px;
}

.page-home .audience-feature-card {
  min-height: 286px;
  padding: 34px 28px 32px;
  border-color: rgba(220, 229, 221, 0.9);
  border-radius: var(--radius-small);

}

.page-home .audience-feature-card__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  background: var(--home-accent);
}

.page-home .audience-feature-card__icon svg {
  width: 30px;
  height: 30px;
}

.page-home .audience-feature-card h3,
.page-home .pc-trust-card__title,
.page-home .process-stage-card h3 {
  font-size: var(--home-card-title-size);
  font-weight: 900;
  line-height: 1.3;
}

.page-home .audience-feature-card h3 {
  margin-bottom: 14px;
  color: var(--home-accent);
}

.page-home .audience-feature-card p {
  max-width: 250px;
}

.page-home .service-lineup-section {
  background: #ffffff;
}

.page-home .service-lineup-grid {
  gap: 24px;
}

.page-home .service-lineup-card {
  min-height: 420px;
  border-radius: var(--radius-small);
}

.page-home .service-lineup-card::after {
  background: linear-gradient(90deg, rgba(15, 74, 43, 0.44), rgba(0, 0, 0, 0) 58%);
}

.page-home .service-lineup-card__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.page-home .service-lineup-card__content h3 {
  font-size: 28px;
  line-height: 1.2;
}

.page-home .service-lineup-card__more {
  margin-top: 20px;
  font-size: 13px;
}

.page-home .trust-section {
  background:#f5f5f5;
}

.page-home .trust-section__inner {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 56px;
}

.page-home .trust-section__intro {
  padding-top: 0;
}

.page-home .trust-section__text {
  margin: 18px 0 28px;
}

.page-home .trust-section__button {
  min-height: 44px;
  padding: 0 18px;
  background: var(--home-accent);
  border-radius: 4px;
}

.page-home .pc-trust-grid {
  gap: 32px;
}

.page-home .pc-trust-card__image {
  margin-bottom: 24px;
  border-radius: var(--radius-small);
}

.page-home .pc-trust-card__title {
  gap: 14px;
  margin-bottom: 10px;
  color: var(--color-text);
}

.page-home .pc-trust-card__title::after {
  width: 46px;
  background: var(--home-accent);
}

.page-home .process-showcase {
  background: #f7faf5;
}

.page-home .process-showcase::before {
  background:
    linear-gradient(90deg, rgba(6, 41, 27, 0.94), rgba(15, 74, 43, 0.84)),
    url("../images/home-process-inspection-20260613.jpg") center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.page-home .process-showcase::after {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0 44%, rgba(247, 250, 245, 0) 50%, #f7faf5 56%);
}

.page-home .process-showcase__inner {
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 420px;
}

.page-home .process-showcase__title {
  display: block;
  max-width: 300px;
  margin: 0;
  color: #ffffff;
  font-size: var(--home-heading-size);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.page-home .process-showcase__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.page-home .process-showcase__text {
  max-width: 270px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--home-body-size);
  font-weight: 500;
  line-height: 1.68;
}

.page-home .process-showcase__controls {
  margin-top: 40px;
}

.page-home .process-stage-list {
  gap: 20px;
}

.page-home .process-stage-card {
  min-height: 330px;
  padding: 32px 24px 56px;
  border-radius: var(--radius-small);
}

.page-home .process-stage-card:is(.is-featured, .is-active) {
  min-height: 330px;
  background: var(--home-accent-deep);
}

.page-home .process-stage-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--home-accent);
  background: var(--color-green-soft);
}

.page-home .process-stage-card:is(.is-featured, .is-active) .process-stage-card__icon {
  color: var(--home-accent);
}

.page-home .process-stage-card__icon svg {
  width: 29px;
  height: 29px;
}

.page-home .process-stage-card__num {
  margin-bottom: 14px;
  color: rgba(15, 74, 43, 0.62);
}

.page-home .process-stage-card__lead {
  min-height: 0;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.page-home .process-stage-card > p:last-child {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.58;
}

.page-home .gallery-section {
  background: var(--home-muted-bg);
  border-top: 1px solid rgba(220, 229, 221, 0.72);
  border-bottom: 1px solid rgba(220, 229, 221, 0.72);
}

.page-home .gallery-ticker-container {
  padding: 8px 0 16px;
}

.page-home .gallery-item {
  border-radius: var(--radius-small);

}

.page-home .gallery-item__tag {
  color: var(--home-accent);
  background: var(--color-green-soft);
}

.page-home .gallery-item__title {
  font-size: 17px;
  font-weight: 850;
}

.page-home .cta-section {
  min-height: 300px;
}

.page-home .cta-section__inner {
  grid-template-columns: minmax(0, 1fr) 240px;
  min-height: 300px;
}

.page-home .cta-section h2 {
  max-width: 660px;
  font-size: clamp(30px, 2.4vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom:24px;
}

@media (max-width: 1180px) {
  .page-home .trust-section__inner,
  .page-home .process-showcase__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-home .trust-section__intro,
  .page-home .process-showcase__intro {
    max-width: 720px;
  }

  .page-home .process-showcase__title,
  .page-home .process-showcase__text {
    max-width: 640px;
  }
}

@media (max-width: 1024px) {
  .page-home {
    --home-section-y: 92px;
  }

  .page-home .audience-feature-grid {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .page-home {
    --home-heading-size: clamp(29px, 8vw, 34px);
  }

  .page-home .company-proof-strip__inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .page-home .trust-section__inner,
  .page-home .process-showcase__inner {
    gap: 34px;
  }

  .page-home .pc-trust-grid,
  .page-home .process-stage-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-home #audience,
  .page-home .service-lineup-section,
  .page-home .trust-section,
  .page-home .process-showcase,
  .page-home .gallery-section {
    padding-top: var(--home-section-y-mobile);
    padding-bottom: var(--home-section-y-mobile);
  }

  .page-home .hero,
  .page-home .hero__inner {
    height: var(--home-hero-height);
  }

  .page-home .hero__content {
    padding: 56px 0 78px;
  }

  .page-home .hero__text {
    font-size: 16px;
  }

  .page-home .hero__title {
    font-size: 32px;
    line-height: 1.18;
  }

  .page-home .company-proof-strip__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-home .audience-section__header,
  .page-home .service-lineup-section__header,
  .page-home .gallery-section__header {
    margin-bottom: 34px;
  }

  .page-home .audience-feature-card,
  .page-home .process-stage-card,
  .page-home .process-stage-card:is(.is-featured, .is-active) {
    min-height: 0;
    padding: 30px 24px 54px;
  }

  .page-home .service-lineup-card {
    min-height: 320px;
  }

  .page-home .cta-section,
  .page-home .cta-section__inner {
    min-height: 340px;
  }

  .page-home .cta-section__actions {
    width: min(100%, 230px);
  }
}
