:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --ink: #16211f;
  --muted: #65706d;
  --line: rgba(22, 33, 31, 0.12);
  --green: #126b57;
  --green-strong: #084f43;
  --mint: #dff4e7;
  --coral: #e66d55;
  --yellow: #f1c95d;
  --blue: #315e9f;
  --shadow: 0 24px 70px rgba(25, 34, 32, 0.13);
  --radius: 8px;
  --header-height: 74px;
  --product-gap: 18px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(223, 244, 231, 0.75) 0, rgba(247, 245, 239, 0) 420px),
    var(--bg);
  color: var(--ink);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(22, 33, 31, 0.08);
  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 239, 0.96);
  box-shadow: 0 12px 34px rgba(18, 33, 30, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: var(--green-strong);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 79, 67, 0.2);
}

.brand-text {
  font-size: 18px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: #34413e;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 107, 87, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-strong);
}

.button-ghost {
  border-color: rgba(18, 107, 87, 0.22);
  background: rgba(255, 255, 255, 0.68);
  color: var(--green-strong);
}

.button-soft {
  border-color: rgba(22, 33, 31, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.button-outline {
  border-color: rgba(18, 107, 87, 0.28);
  color: var(--green-strong);
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 33, 31, 0.24);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.section,
.section-band {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 94px 0;
}

.section-band {
  border-radius: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 44px);
  padding: 56px 0 70px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: #4e5d59;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 500px;
}

.hero-stats div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(22, 33, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.hero-stats strong {
  display: block;
  color: var(--green-strong);
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  overflow: visible;
}

.hero-media img {
  width: 100%;
  border: 1px solid rgba(22, 33, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.status-panel {
  position: absolute;
  right: 24px;
  bottom: -22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-width: 240px;
  padding: 16px 18px;
  border: 1px solid rgba(22, 33, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(22, 33, 31, 0.14);
  backdrop-filter: blur(14px);
  color: #3c4946;
  font-size: 14px;
  font-weight: 800;
}

.status-panel strong {
  color: var(--green);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.product-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  text-align: left;
  gap: 24px;
}

.product-heading > div:first-child {
  max-width: 740px;
}

.slider-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.slider-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
  border-color: rgba(18, 107, 87, 0.32);
  background: var(--mint);
  transform: translateY(-1px);
}

.product-slider {
  position: relative;
  overflow: hidden;
  margin-right: 0;
  padding: 2px 0 18px;
}

.product-track {
  display: grid;
  grid-auto-columns: calc((100% - (var(--product-gap) * 3)) / 3.5);
  grid-auto-flow: column;
  gap: var(--product-gap);
  overflow-x: auto;
  padding-right: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-track::-webkit-scrollbar {
  height: 8px;
}

.product-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(18, 107, 87, 0.28);
}

.product-card {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(18, 107, 87, 0.28);
  box-shadow: 0 20px 52px rgba(22, 33, 31, 0.13);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: contain;
  background: #f7f5ef;
  border-bottom: 1px solid var(--line);
}

.product-card strong,
.product-card p,
.product-card .product-link,
.product-number {
  margin-right: 24px;
  margin-left: 24px;
}

.product-number {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--mint);
  color: var(--green-strong);
  font-size: 12px;
  font-weight: 900;
}

.product-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.product-card p {
  margin-bottom: 22px;
  font-size: 15px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  margin-bottom: 24px;
  color: var(--green-strong);
  font-size: 15px;
  font-weight: 900;
}

.product-link::after {
  margin-left: 8px;
  content: "→";
}

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

.feature-card,
.plan-card,
.mini-card,
.notice-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.feature-card {
  min-height: 248px;
  padding: 26px;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(22, 33, 31, 0.11);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  width: min(1160px, calc(100% - 36px));
  margin-top: 10px;
  padding: 40px;
  border: 1px solid rgba(18, 107, 87, 0.12);
  background: linear-gradient(135deg, rgba(223, 244, 231, 0.92), rgba(255, 255, 255, 0.74));
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-card {
  min-height: 160px;
  padding: 22px;
}

.mini-card:first-child {
  grid-row: span 2;
}

.mini-card.accent {
  background: var(--green-strong);
  color: #fff;
}

.mini-card.accent p,
.mini-card.accent span {
  color: rgba(255, 255, 255, 0.76);
}

.mini-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.mini-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.mini-card p {
  margin: 0;
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

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

.notice-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 22px;
}

.notice-item time {
  color: var(--green-strong);
  font-size: 14px;
  font-weight: 900;
}

.notice-item h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.notice-item p {
  margin: 0;
  font-size: 15px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
}

.plan-card.featured {
  background: var(--green-strong);
  color: #fff;
  box-shadow: 0 24px 60px rgba(8, 79, 67, 0.24);
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 11px;
  border-radius: 99px;
  background: var(--yellow);
  color: #2a2517;
  font-size: 12px;
  font-weight: 900;
}

.plan-top {
  min-height: 94px;
  padding-right: 64px;
}

.plan-top p {
  margin-bottom: 0;
  font-size: 15px;
}

.plan-price {
  display: block;
  margin: 26px 0;
  font-size: 30px;
  line-height: 1;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: #51605c;
  font-size: 15px;
  line-height: 1.5;
}

.plan-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.faq-section {
  padding-top: 56px;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-strong);
  content: "+";
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

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

.faq-list p {
  margin-bottom: 22px;
  font-size: 15px;
}

.seo-section {
  padding-top: 34px;
}

.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.keyword-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(18, 107, 87, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-strong);
  font-size: 15px;
  font-weight: 900;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 34px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(18, 107, 87, 0.94), rgba(49, 94, 159, 0.9)),
    var(--green);
  color: #fff;
}

.contact-strip .eyebrow,
.contact-strip p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-strip h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 3.5vw, 42px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 34px;
  color: #69736f;
  font-size: 14px;
}

.site-footer a {
  color: var(--green-strong);
  font-weight: 900;
}

.detail-main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: 58px 0 76px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green-strong);
  font-size: 14px;
  font-weight: 900;
}

.detail-hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
}

.detail-hero p {
  max-width: 610px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-visual img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: contain;
  background: #f7f5ef;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.44fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 88px;
}

.detail-panel,
.detail-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.detail-panel {
  padding: clamp(22px, 4vw, 38px);
}

.video-placeholder {
  position: relative;
  display: grid;
  min-height: 360px;
  margin-bottom: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 79, 67, 0.9), rgba(49, 94, 159, 0.86)),
    var(--green-strong);
  color: #fff;
}

.video-placeholder::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  content: "";
}

.play-mark {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-strong);
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.video-caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.video-caption strong {
  color: #fff;
  font-size: 18px;
}

.copy-block {
  display: grid;
  gap: 24px;
}

.copy-block article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.copy-block article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.copy-block h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.copy-block p {
  margin-bottom: 0;
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 24px;
}

.detail-sidebar h2 {
  font-size: 24px;
}

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

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.detail-list strong {
  color: var(--ink);
}

.detail-sidebar .button {
  width: 100%;
}

.video-detail-layout {
  grid-template-columns: minmax(0, 1fr);
}

.video-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: stretch;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55;
  min-height: 300px;
  object-fit: contain;
  background: #f7f5ef;
}

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.story-card h2 {
  font-size: clamp(26px, 3.4vw, 40px);
}

.story-card p {
  margin-bottom: 24px;
}

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

.story-points li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.story-points li::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 88px;
}

.gallery-panel {
  display: grid;
  gap: 18px;
}

.gallery-main,
.gallery-card,
.step-item,
.consult-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.gallery-main {
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: contain;
  background: #f7f5ef;
}

.gallery-main div {
  padding: 24px;
}

.gallery-main h2,
.gallery-card h3 {
  margin-bottom: 8px;
}

.gallery-main p,
.gallery-card p {
  margin-bottom: 0;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: contain;
  background: #f7f5ef;
}

.gallery-card div {
  padding: 18px;
}

.gallery-card h3 {
  font-size: 18px;
}

.gallery-card p {
  font-size: 14px;
  line-height: 1.6;
}

.gallery-summary {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-strong);
  color: #fff;
}

.gallery-summary p,
.gallery-summary li {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-summary ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.gallery-summary li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 700;
}

.steps-layout {
  display: grid;
  gap: 22px;
  padding-bottom: 88px;
}

.steps-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.36fr);
  gap: 22px;
}

.steps-intro,
.step-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.steps-intro-copy {
  padding: clamp(24px, 4vw, 38px);
}

.steps-intro-copy p {
  margin-bottom: 0;
}

.steps-metric {
  display: grid;
  place-content: center;
  padding: 28px;
  background: var(--mint);
}

.steps-metric strong {
  color: var(--green-strong);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1;
}

.steps-metric span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}

.step-list {
  display: grid;
  gap: 0;
  padding: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 0.78fr) minmax(240px, 0.55fr);
  gap: 22px;
  align-items: center;
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 24px;
}

.step-item:first-child {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.step-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.step-number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-strong);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.step-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(23px, 3vw, 32px);
}

.step-copy p {
  margin-bottom: 0;
}

.step-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-media img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: contain;
  background: #f7f5ef;
}

.consult-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 88px;
}

.consult-card {
  padding: clamp(24px, 4vw, 38px);
}

.consult-card.primary {
  background:
    linear-gradient(135deg, rgba(18, 107, 87, 0.95), rgba(49, 94, 159, 0.9)),
    var(--green);
  color: #fff;
}

.consult-card.primary p {
  color: rgba(255, 255, 255, 0.78);
}

.consult-grid {
  display: grid;
  gap: 18px;
}

.consult-card h2 {
  font-size: clamp(25px, 3.2vw, 38px);
}

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

.consult-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.consult-steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-strong);
  font-weight: 900;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 18px;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(22, 33, 31, 0.15);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-radius: var(--radius);
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--mint);
  }

  .nav a::after {
    content: none;
  }

  .header-actions .button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  body.nav-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  body.nav-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .detail-hero,
  .detail-layout,
  .video-story,
  .gallery-layout,
  .steps-intro,
  .consult-layout,
  .showcase,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .product-track {
    grid-auto-columns: calc((100% - (var(--product-gap) * 2)) / 2.35);
  }

  .feature-card,
  .plan-card {
    min-height: auto;
  }

  .showcase {
    padding: 28px;
  }

  .detail-sidebar {
    position: static;
  }

  .gallery-summary {
    position: static;
  }

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

  .step-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .step-media {
    grid-column: 1 / -1;
  }

  .section-heading.align-left {
    max-width: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: 82px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

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

  .section,
  .section-band,
  .detail-main {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 34px 0 50px;
  }

  .detail-hero {
    padding: 34px 0 52px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 31px;
  }

  p,
  .hero-text {
    font-size: 16px;
  }

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

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

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

  .hero-stats div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
  }

  .hero-stats span {
    margin-top: 0;
  }

  .status-panel {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 12px;
  }

  .showcase {
    width: min(100% - 28px, 1160px);
    padding: 24px;
  }

  .showcase-board {
    grid-template-columns: 1fr;
  }

  .mini-card:first-child {
    grid-row: auto;
  }

  .notice-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .product-heading {
    display: grid;
    gap: 14px;
  }

  .slider-controls {
    padding-bottom: 0;
  }

  .product-slider {
    margin-right: 0;
  }

  .product-track {
    grid-auto-columns: minmax(272px, 84vw);
    padding-right: 0;
  }

  .product-card {
    min-height: 420px;
  }

  .video-placeholder {
    min-height: 260px;
  }

  .video-caption {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .step-number {
    width: 54px;
    height: 54px;
  }

  .plan-card {
    padding: 24px;
  }

  .plan-top {
    min-height: auto;
  }

  .plan-price {
    font-size: 27px;
  }

  .faq-list summary {
    min-height: 64px;
    font-size: 16px;
  }

  .contact-strip {
    flex-direction: column;
    align-items: stretch;
    width: min(100% - 28px, 1160px);
    padding: 24px;
  }

  .contact-strip .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    width: min(100% - 28px, 1160px);
    padding-bottom: 24px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 45;
    display: block;
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 54px;
  }
}

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