:root {
  --ink: #16302d;
  --ink-strong: #0b2522;
  --forest: #123f3b;
  --forest-deep: #082f2c;
  --teal: #0f7b72;
  --teal-bright: #1ca597;
  --mint: #dff2ed;
  --sage: #aac9bd;
  --cream: #f8f5ed;
  --paper: #fffdf8;
  --white: #ffffff;
  --rust: #c56d4c;
  --amber: #e7a843;
  --text: #243b38;
  --muted: #637572;
  --line: rgba(18, 63, 59, 0.14);
  --shadow-sm: 0 12px 36px rgba(8, 47, 44, 0.09);
  --shadow-lg: 0 28px 75px rgba(8, 47, 44, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  letter-spacing: 0;
  line-height: 1.16;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--forest-deep);
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #7fe0d4;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(15, 123, 114, 0.24);
}

.button-primary:hover {
  background: var(--forest);
}

.button-muted {
  color: #75827f;
  border-color: rgba(18, 63, 59, 0.17);
  background: rgba(255, 255, 255, 0.58);
  cursor: not-allowed;
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-outline-light {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  cursor: not-allowed;
}

[data-intake-cta][aria-disabled="true"] {
  pointer-events: auto;
}

[data-intake-cta].is-enabled {
  color: var(--white);
  border-color: var(--teal-bright);
  background: var(--teal);
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 7px 24px rgba(8, 47, 44, 0.06);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #3e5753;
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-nav a {
  transition: color 160ms ease;
}

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

.primary-nav .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
}

.primary-nav .nav-cta:hover {
  color: var(--white);
  background: var(--teal);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.menu-button span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 94px;
  background:
    linear-gradient(118deg, rgba(255, 253, 248, 0.97) 0%, rgba(248, 245, 237, 0.92) 57%, rgba(223, 242, 237, 0.72) 100%);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(15, 123, 114, 0.16);
  border-radius: 50%;
  content: "";
}

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

.hero-glow-one {
  top: -180px;
  right: 12%;
  width: 380px;
  height: 380px;
  background: rgba(28, 165, 151, 0.1);
}

.hero-glow-two {
  bottom: -200px;
  left: -130px;
  width: 420px;
  height: 420px;
  background: rgba(197, 109, 76, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 70px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: 4rem;
  font-weight: 850;
}

.hero-copy h1 span {
  position: relative;
  color: var(--teal);
}

.hero-copy h1 span::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: -1;
  height: 12px;
  background: rgba(28, 165, 151, 0.14);
  content: "";
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #506662;
  font-size: 1.16rem;
  line-height: 1.85;
}

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

.boundary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  color: #5f716e;
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.boundary-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.boundary-list li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  content: "";
}

.preview-card {
  position: relative;
  padding: 29px;
  border: 1px solid rgba(18, 63, 59, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.preview-card::before {
  position: absolute;
  top: 18px;
  right: 25px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(28, 165, 151, 0.13);
  border-radius: 50%;
  content: "";
}

.preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.preview-top strong {
  display: block;
  margin-top: 5px;
  color: var(--ink-strong);
  font-size: 1.1rem;
}

.preview-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.status-pill {
  position: relative;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  color: #8b5a08;
  background: #fff1d5;
  font-size: 0.7rem;
  font-weight: 800;
}

.score-row {
  display: grid;
  align-items: center;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 26px 0;
}

.score-ring {
  display: flex;
  width: 94px;
  height: 94px;
  align-items: baseline;
  justify-content: center;
  padding-top: 24px;
  border-radius: 50%;
  color: var(--teal);
  background:
    radial-gradient(circle at center, white 57%, transparent 59%),
    conic-gradient(var(--teal-bright) 0 72%, #e3ece9 72% 100%);
}

.score-ring span {
  font-size: 1.85rem;
  font-weight: 900;
}

.score-ring small {
  font-size: 0.7rem;
  font-weight: 800;
}

.score-copy strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-strong);
  font-size: 0.95rem;
}

.score-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.preview-list {
  display: grid;
  gap: 9px;
}

.preview-item {
  display: grid;
  align-items: center;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(18, 63, 59, 0.09);
  border-radius: 13px;
  background: #fbfdfb;
}

.item-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #6d7f7b;
  background: #eaf0ee;
  font-size: 0.75rem;
  font-weight: 900;
}

.preview-item.is-done .item-icon {
  color: #0d766b;
  background: #daf2ec;
}

.preview-item.is-review .item-icon {
  color: #a66708;
  background: #fff0cf;
}

.preview-item strong,
.preview-item small {
  display: block;
}

.preview-item strong {
  color: #29413d;
  font-size: 0.78rem;
}

.preview-item small {
  color: #85928f;
  font-size: 0.65rem;
}

.preview-item b {
  color: #758480;
  font-size: 0.65rem;
}

.preview-item.is-review b {
  color: #a66708;
}

.preview-note {
  margin: 16px 0 0;
  color: #8b9895;
  font-size: 0.67rem;
  text-align: right;
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--forest-deep);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 13px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong {
  color: #65d6c8;
  font-size: 0.72rem;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  margin-bottom: 64px;
}

.split-heading h2,
.section-heading h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 850;
}

.split-heading > p,
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reason-grid article {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.reason-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.reason-grid h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.reason-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.process::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process .section-heading {
  position: relative;
  z-index: 1;
}

.process .section-heading h2,
.process .section-heading p {
  color: var(--white);
}

.process .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.61);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 28px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.process-grid li {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.process-grid li > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-grid li:first-child > span,
.process-grid li:last-child > span {
  border-color: #66d5c7;
  background: var(--teal);
}

.process-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.75;
}

.scope {
  background: var(--cream);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scope-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(8, 47, 44, 0.05);
}

.scope-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(15, 123, 114, 0.06);
  content: "";
}

.scope-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: var(--teal);
  font-size: 1rem;
  font-weight: 900;
}

.scope-card.service .scope-icon {
  background: #446e86;
}

.scope-card.goods .scope-icon {
  background: var(--rust);
}

.scope-kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
}

.scope-card h3 {
  margin-bottom: 26px;
  font-size: 1.45rem;
}

.scope-card ul,
.package-card ul,
.privacy-boundary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-card li,
.package-card li {
  position: relative;
  padding: 11px 0 11px 23px;
  border-bottom: 1px solid rgba(18, 63, 59, 0.08);
  color: #566a66;
  font-size: 0.84rem;
}

.scope-card li::before,
.package-card li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  content: "";
}

.deliverables {
  background: var(--paper);
}

.deliverables-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 92px;
}

.deliverable-list {
  border-top: 1px solid var(--line);
}

.deliverable-list article {
  display: grid;
  align-items: start;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
}

.deliverable-list article > span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.deliverable-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-size: 1.06rem;
}

.deliverable-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.packages {
  background: #eef4f1;
}

.package-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.package-card.featured {
  border-color: rgba(15, 123, 114, 0.42);
  box-shadow: var(--shadow-sm);
}

.recommended {
  position: absolute;
  top: 21px;
  right: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
}

.package-type {
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.package-card h3 {
  margin-bottom: 27px;
  font-size: 1.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.price strong {
  color: var(--ink-strong);
  font-size: 2rem;
  letter-spacing: 0;
}

.price span,
.annual span {
  color: var(--muted);
  font-size: 0.75rem;
}

.annual {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.annual strong {
  color: var(--teal);
  font-size: 0.91rem;
}

.package-card ul {
  margin: 20px 0 28px;
}

.package-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.83rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.package-card > a:hover {
  color: var(--white);
  background: var(--forest);
}

.intake {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}

.intake::after {
  position: absolute;
  top: -270px;
  right: -190px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.intake-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.91fr 1.09fr;
  gap: 90px;
}

.intake h2 {
  margin-bottom: 25px;
  color: var(--white);
  font-size: 3rem;
}

.intake-grid > div:first-child > p:not(.eyebrow):not(.gate-note) {
  color: rgba(255, 255, 255, 0.65);
}

.intake-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.text-link {
  color: #8ee0d6;
  font-size: 0.96rem;
  font-weight: 800;
}

.gate-note {
  max-width: 590px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.88rem;
  line-height: 1.7;
}

.gate-note a {
  color: #a9eee5;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intake-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.intake-panel h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.4rem;
}

.intake-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intake-row span {
  color: #78dbcf;
  font-size: 0.88rem;
  font-weight: 900;
}

.intake-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.privacy-boundary {
  margin-top: 24px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.15);
}

.privacy-boundary strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.94rem;
}

.privacy-boundary li {
  position: relative;
  padding: 4px 0 4px 16px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.86rem;
}

.privacy-boundary li::before {
  position: absolute;
  top: 12px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6ed7ca;
  content: "";
}

.standards {
  background: var(--cream);
}

.standards-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.standards h2 {
  font-size: 2.85rem;
}

.standard-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.standard-cards article {
  min-height: 186px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.standard-cards strong {
  display: block;
  margin-bottom: 13px;
  color: var(--forest);
  font-size: 1rem;
}

.standard-cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 4px;
  color: var(--ink-strong);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 9px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  content: "+";
}

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

.faq-list details p {
  max-width: 720px;
  padding: 0 50px 25px 4px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  padding: 86px 0;
  background: var(--teal);
}

.final-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 3rem;
}

.final-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.58);
  background: #061f1d;
}

.footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 20px 34px;
}

.footer-brand img {
  width: 130px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
  font-size: 0.82rem;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.footer-inner small {
  grid-column: 2 / -1;
}

/* Package detail pages */
.detail-hero {
  padding: 98px 0 80px;
  background: linear-gradient(120deg, var(--cream), #e6f3ef);
}

.detail-hero .shell {
  max-width: 900px;
}

.detail-hero h1 {
  margin-bottom: 24px;
  font-size: 3.8rem;
}

.detail-hero > .shell > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-body {
  padding: 90px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.detail-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.detail-aside strong,
.detail-aside span {
  display: block;
}

.detail-aside strong {
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 1.8rem;
}

.detail-aside span,
.detail-aside p {
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-aside .button {
  width: 100%;
  margin-top: 14px;
}

.detail-content section {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.detail-content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.detail-content p,
.detail-content li {
  color: var(--muted);
}

.detail-content ul,
.detail-content ol {
  padding-left: 22px;
}

.detail-content li {
  padding: 5px 0;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table th,
.detail-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  width: 28%;
  color: var(--forest);
  font-size: 0.95rem;
}

.detail-table td {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Compact status UI still needs to remain readable on ordinary laptops. */
.preview-label,
.status-pill,
.score-ring small,
.item-icon,
.preview-item small,
.preview-item b,
.preview-note,
.proof-grid strong,
.reason-number {
  font-size: 0.8rem;
}

.score-copy strong,
.preview-item strong,
.proof-grid div,
.reason-grid p {
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: 3.35rem;
  }

  .split-heading,
  .deliverables-grid,
  .standards-grid,
  .faq-grid {
    gap: 60px;
  }

  .process-grid li {
    padding: 0 12px;
  }
}

@media (max-width: 920px) {
  .section-pad {
    padding: 88px 0;
  }

  .menu-button {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-cta {
    margin-top: 14px;
    padding: 13px 18px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    padding-top: 74px;
  }

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

  .preview-card {
    max-width: 620px;
  }

  .reason-grid,
  .scope-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid article {
    min-height: 0;
  }

  .reason-number {
    margin-bottom: 28px;
  }

  .scope-card,
  .package-card {
    min-height: 0;
  }

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

  .process-grid::before {
    top: 28px;
    bottom: 28px;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .process-grid li {
    display: grid;
    align-items: start;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 0;
    text-align: left;
  }

  .process-grid li > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-grid strong {
    align-self: end;
    margin: 4px 0 0;
  }

  .process-grid p {
    grid-column: 2;
    padding-bottom: 17px;
  }

  .split-heading,
  .deliverables-grid,
  .standards-grid,
  .faq-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .detail-aside {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-pad {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .primary-nav {
    top: 70px;
  }

  .brand img {
    width: 152px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

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

  .hero-actions .button,
  .intake-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .boundary-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .preview-card {
    padding: 21px;
    border-radius: 24px;
  }

  .score-row {
    grid-template-columns: 82px 1fr;
    gap: 15px;
  }

  .score-ring {
    width: 78px;
    height: 78px;
    padding-top: 18px;
  }

  .score-ring span {
    font-size: 1.55rem;
  }

  .preview-item {
    grid-template-columns: 32px 1fr;
  }

  .preview-item b {
    grid-column: 2;
  }

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

  .proof-grid div {
    min-height: 86px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .split-heading,
  .section-heading {
    margin-bottom: 42px;
  }

  .split-heading h2,
  .section-heading h2,
  .intake h2,
  .standards h2 {
    font-size: 2.3rem;
  }

  .detail-hero h1 {
    font-size: 2.8rem;
  }

  .reason-grid article,
  .scope-card,
  .package-card,
  .intake-panel {
    padding: 26px;
  }

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

  .standard-cards article {
    min-height: 0;
  }

  .intake-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .final-cta {
    padding: 68px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .footer-inner small {
    grid-column: 1;
  }

  .detail-table,
  .detail-table tbody,
  .detail-table tr,
  .detail-table th,
  .detail-table td {
    display: block;
    width: 100%;
  }

  .detail-table th {
    padding-bottom: 3px;
    border-bottom: 0;
  }

  .detail-table td {
    padding-top: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
