:root {
  --ink: #17201d;
  --muted: #61706b;
  --line: #dde5df;
  --panel: #f7f9f6;
  --accent: #0e7c66;
  --accent-dark: #075c4b;
  --warm: #f3b05f;
  --paper: #ffffff;
  --shadow: 0 20px 50px rgba(18, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(221, 229, 223, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: var(--accent);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: -2px;
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: #243a34;
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav a {
  min-width: 78px;
  padding: 9px 14px;
  border-radius: 999px;
  text-align: center;
}

.desktop-nav a:hover {
  color: #fff;
  background: var(--accent);
}

.mobile-menu {
  position: relative;
  display: block;
}

.mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 170px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 11px 12px;
  border-radius: 8px;
  color: #2d3e39;
  font-weight: 800;
}

.mobile-menu nav a:hover {
  color: #fff;
  background: var(--accent);
}

.header-call,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.header-call,
.primary-action {
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
}

.header-call:hover,
.primary-action:hover {
  background: var(--accent-dark);
}

.secondary-action {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  min-height: auto;
  max-height: none;
  overflow: visible;
  border-bottom: 1px solid var(--line);
}

.hero img,
.hero-copy h1,
.hero-copy p,
.hero-tags,
.hero-photo-card figcaption {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero.is-changing img,
.hero.is-changing .hero-copy h1,
.hero.is-changing .hero-copy p,
.hero.is-changing .hero-tags,
.hero.is-changing .hero-photo-card figcaption {
  opacity: 0;
  transform: translateY(4px);
}

.hero-media {
  position: relative;
  align-self: start;
  display: grid;
  grid-template-rows: minmax(260px, 360px) minmax(104px, 126px);
  gap: 12px;
  min-height: auto;
  padding: clamp(18px, 2.2vw, 28px);
  align-content: start;
  border-right: 1px solid rgba(14, 124, 102, 0.1);
  border-bottom: 1px solid rgba(14, 124, 102, 0.1);
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.16), rgba(23, 58, 85, 0.1)),
    #edf5f1;
}

.hero-photo-card,
.hero-photo-stack figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 214, 206, 0.9);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-photo-card {
  min-height: 260px;
  max-height: 360px;
  height: min(360px, calc(100vh - 180px));
}

.hero-photo-card::before,
.hero-photo-stack figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 12, 10, 0.08), rgba(2, 12, 10, 0.72));
}

.hero-photo-card img,
.hero-photo-stack img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card figcaption,
.hero-photo-stack figcaption {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero-photo-card figcaption {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.hero-photo-card figcaption span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.hero-photo-card figcaption strong {
  display: block;
  max-width: 420px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.hero-photo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(14, 124, 102, 0.22);
}

.hero-photo-stack figure {
  height: clamp(108px, 12vh, 132px);
  min-height: 0;
}

.hero-photo-stack figure::before {
  background: linear-gradient(180deg, rgba(2, 12, 10, 0.02), rgba(2, 12, 10, 0.62));
}

.hero-photo-stack figcaption {
  left: 14px;
  bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(7, 92, 75, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.photo-slot {
  position: relative;
  display: grid;
  min-height: 250px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #c8d6ce;
  border-radius: 8px;
  color: #50645e;
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.18), rgba(243, 176, 95, 0.18)),
    repeating-linear-gradient(45deg, #f8fbf9 0 10px, #eef5f1 10px 20px);
}

.photo-slot-large {
  width: 100%;
  height: 100%;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.photo-slot span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 46px);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 20px;
}

.hero-tags span {
  padding: 7px 10px;
  border: 1px solid #c8d6ce;
  border-radius: 999px;
  color: var(--accent-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
}

.one-stop-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 660px;
  margin: 2px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(14, 124, 102, 0.24);
  border-radius: 8px;
  background: #fff;
}

.one-stop-flow span {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 8px 10px;
  color: var(--accent-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.one-stop-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(14, 124, 102, 0.24);
  border-right: 1px solid rgba(14, 124, 102, 0.24);
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
}

.one-stop-flow span:first-child {
  color: #fff;
  background: var(--accent);
}

.one-stop-flow span:last-child {
  background: rgba(243, 176, 95, 0.18);
}

.hero-promise {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  max-width: 660px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(14, 124, 102, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.1), rgba(243, 176, 95, 0.1)),
    #fff;
  box-shadow: 0 16px 34px rgba(20, 45, 38, 0.07);
}

.hero-promise div {
  padding: 13px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent-dark);
}

.hero-promise div:nth-child(2) {
  background: #a76212;
}

.hero-promise span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.hero-promise strong {
  display: block;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.22;
}

.hero-promise p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #43534e;
  font-size: 14px;
  line-height: 1.65;
}

.hero-search {
  max-width: 660px;
  margin: 0 0 18px;
}

.hero-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.hero-search div {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(14, 124, 102, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(20, 45, 38, 0.06);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.hero-search input:focus {
  outline: 0;
}

.hero-search button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--accent-dark);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band span {
  opacity: 0.86;
}

.intro-band a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-weight: 700;
}

.guide-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid #b7d5cc;
  background:
    linear-gradient(90deg, rgba(14, 124, 102, 0.08), rgba(243, 176, 95, 0.08)),
    #fbfdfb;
}

.guide-preview h2 {
  max-width: 760px;
}

.guide-preview p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.guide-preview a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

#services {
  position: relative;
  padding-bottom: clamp(48px, 5.4vw, 74px);
}

#services::after,
.process-section::after,
#cases::after,
.blog-section::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  bottom: 18px;
  height: 16px;
  border-top: 2px solid rgba(14, 124, 102, 0.58);
  border-bottom: 1px solid rgba(14, 124, 102, 0.28);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(14, 124, 102, 0.26), rgba(243, 176, 95, 0.2), rgba(14, 124, 102, 0.18), transparent);
  box-shadow: 0 12px 28px rgba(14, 124, 102, 0.08);
}

.process-section {
  position: relative;
  padding-bottom: clamp(48px, 5.4vw, 74px);
}

#cases {
  position: relative;
  padding-bottom: clamp(48px, 5.4vw, 74px);
}

.blog-section {
  position: relative;
  padding-bottom: clamp(48px, 5.4vw, 74px);
}

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

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading.split a {
  color: var(--accent);
  font-weight: 800;
}

.case-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-highlights span {
  padding: 8px 11px;
  border: 1px solid rgba(14, 124, 102, 0.22);
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--panel);
  font-size: 13px;
  font-weight: 900;
}

.service-grid,
.case-grid,
.blog-grid {
  display: grid;
  gap: 18px;
}

.case-grid,
.blog-grid {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.case-grid.is-changing,
.blog-grid.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

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

.service-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.service-summary div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid rgba(14, 124, 102, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14, 124, 102, 0.08), #fff);
}

.service-summary span {
  display: inline-grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.service-summary strong {
  color: var(--ink);
  font-size: 18px;
}

.service-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-grid article,
.blog-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-grid article {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-grid article::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  border-radius: 0 0 0 100%;
  background: rgba(14, 124, 102, 0.08);
}

.service-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 124, 102, 0.35);
  box-shadow: 0 18px 36px rgba(20, 45, 38, 0.08);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: var(--ink);
}

.service-grid h3 {
  margin-bottom: 10px;
}

.service-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-grid li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--panel);
  font-size: 13px;
  font-weight: 800;
}

.service-grid p,
.case-card p,
.blog-grid span,
.blog-row span,
.post p,
.contact-section p {
  color: var(--muted);
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-note strong,
.service-note span {
  display: block;
}

.service-note strong {
  color: var(--ink);
}

.service-note span {
  color: var(--muted);
}

.service-note a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.process-section,
.blog-section,
.faq-section {
  background: var(--panel);
}

.channel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel-grid a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.channel-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 124, 102, 0.42);
  background: var(--panel);
}

.channel-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.channel-icon.youtube {
  background: #d82020;
}

.channel-icon.map {
  background: #03c75a;
}

.channel-icon.naver-blog {
  background: #03c75a;
  font-size: 11px;
  letter-spacing: 0;
}

.channel-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4);
}

.channel-icon.tiktok {
  background: #111;
}

.channel-icon.tistory {
  background: #f05a28;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 45, 38, 0.06);
}

.process-list li::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.process-no {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.process-list span:not(.process-no) {
  display: block;
  color: var(--muted);
  line-height: 1.75;
}

.process-list em {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 45, 38, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 124, 102, 0.35);
  box-shadow: 0 22px 42px rgba(20, 45, 38, 0.1);
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 230px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 12, 10, 0), rgba(2, 12, 10, 0.42));
}

.case-photo {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--panel);
}

.case-card > div:last-child {
  position: relative;
  padding: 20px;
}

.case-type,
.blog-grid p,
.blog-row p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.case-type {
  position: absolute;
  left: 20px;
  top: -50px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff !important;
  background: #087c66;
  box-shadow: 0 8px 18px rgba(2, 12, 10, 0.18);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.case-card h3 {
  margin-top: 8px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid article {
  min-height: 230px;
}

.blog-grid article.with-thumb {
  padding-top: 14px;
}

.blog-thumb {
  position: relative;
  display: block;
  min-height: 160px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.blog-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 25, 21, 0.88), rgba(8, 25, 21, 0.52) 52%, rgba(8, 25, 21, 0.18)),
    linear-gradient(180deg, rgba(14, 124, 102, 0.14), rgba(0, 0, 0, 0.28));
}

.blog-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 6px;
  background: var(--accent);
}

.blog-thumb.report-thumb::before {
  background:
    linear-gradient(180deg, rgba(8, 25, 21, 0.16), rgba(3, 12, 10, 0.86)),
    linear-gradient(90deg, rgba(12, 63, 86, 0.42), rgba(14, 124, 102, 0.16));
}

.blog-thumb.report-thumb::after {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  width: auto;
  height: 6px;
  background: var(--warm);
}

.blog-thumb.report-thumb .thumb-badge {
  background: #173a55;
}

.blog-thumb.checkpoint-thumb::before {
  background:
    linear-gradient(90deg, rgba(2, 12, 10, 0.2), rgba(2, 12, 10, 0.82)),
    linear-gradient(180deg, rgba(14, 124, 102, 0.12), rgba(23, 58, 85, 0.36));
}

.blog-thumb.checkpoint-thumb::after {
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: auto;
  height: 3px;
  background: var(--warm);
}

.blog-thumb.checkpoint-thumb .thumb-badge {
  left: auto;
  right: 14px;
  background: var(--accent-dark);
}

.blog-thumb img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.94;
}

.blog-thumb .thumb-badge {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 3;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.blog-thumb .thumb-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  color: #fff;
  line-height: 1.2;
}

.blog-thumb .thumb-copy strong,
.blog-thumb .thumb-copy small,
.blog-thumb .thumb-copy em {
  display: block;
}

.blog-thumb .thumb-copy strong {
  font-size: 24px;
  font-weight: 900;
}

.blog-thumb .thumb-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.blog-thumb .thumb-copy em {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.blog-row.with-thumb {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
}

.blog-row.with-thumb .blog-thumb {
  min-height: 130px;
  margin-bottom: 0;
}

.blog-row.with-thumb .blog-thumb img {
  height: 130px;
}

.blog-row.with-thumb .blog-thumb .thumb-badge {
  top: 10px;
  left: 14px;
}

.blog-row.with-thumb .blog-thumb .thumb-copy {
  left: 14px;
  right: 14px;
  bottom: 12px;
}

.blog-row.with-thumb .blog-thumb .thumb-copy strong {
  font-size: 18px;
}

.blog-row.with-thumb .blog-thumb .thumb-copy small {
  font-size: 12px;
}

.blog-row.with-thumb .blog-thumb .thumb-copy em {
  display: none;
}

.blog-grid a:hover,
.blog-row a:hover {
  color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(290px, 0.42fr) minmax(290px, 0.42fr);
  align-items: stretch;
  gap: 18px;
  max-width: none;
}

.faq-side-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid #b7d5cc;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.1), rgba(243, 176, 95, 0.12)),
    #fff;
  box-shadow: 0 18px 38px rgba(20, 45, 38, 0.07);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-side-card.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.faq-side-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.faq-side-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
}

.faq-side-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-side-card li {
  padding: 10px 12px;
  border: 1px solid rgba(14, 124, 102, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-weight: 800;
}

.faq-side-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.faq-side-card.cost-card {
  background:
    linear-gradient(135deg, rgba(23, 58, 85, 0.1), rgba(243, 176, 95, 0.14)),
    #fff;
}

.faq-list details.is-hidden {
  display: none;
}

.faq-list.is-changing {
  opacity: 0;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.54fr) minmax(300px, 420px);
  gap: 24px;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 64px);
  color: #fff;
  background: #19312b;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.22), rgba(243, 176, 95, 0.08) 42%, transparent 70%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.contact-section > * {
  position: relative;
}

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

.contact-section h2 {
  max-width: 760px;
}

.contact-steps {
  align-self: center;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.contact-steps strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
}

.contact-steps p {
  margin: 0;
  font-size: 14px;
}

.contact-box {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 44px rgba(2, 12, 10, 0.18);
}

.contact-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-box-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.contact-box-head strong {
  color: #fff;
  font-size: 24px;
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.contact-methods div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-methods dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.contact-methods dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 800;
}

.contact-methods a {
  color: #fff;
}

.contact-box p {
  margin: 14px 0 0;
}

.contact-box small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.contact-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.full {
  width: 100%;
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--panel);
}

.footer-inner {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-info {
  min-width: 0;
}

.footer-info strong,
.footer-info span,
.footer-info p {
  display: block;
}

.footer-info strong {
  color: var(--ink);
  font-size: 18px;
}

.footer-info span {
  margin-top: 2px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.footer-info p {
  margin: 8px 0 0;
  color: #687771;
  font-size: 13px;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
}

.footer-meta b {
  display: inline-block;
  width: 1px;
  height: 11px;
  background: #c7d3ce;
}

.footer-copy {
  color: #8a9892 !important;
  font-size: 12px !important;
}

.floating-contact {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 50;
  display: grid;
  gap: 8px;
  width: min(220px, calc(100vw - 32px));
}

.floating-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: #0b705d;
  box-shadow: 0 14px 34px rgba(7, 92, 75, 0.3);
  font-weight: 800;
}

.floating-contact a:nth-child(2) {
  background: #173a55;
}

.floating-contact a:nth-child(3) {
  background: #9a5a13;
}

.floating-contact span {
  font-size: 16px;
}

.floating-contact strong {
  font-size: 13px;
  opacity: 0.86;
  white-space: nowrap;
}

.floating-contact a:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.page-hero {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 64px);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.partner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  min-height: 360px;
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.partner-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 4vw, 62px);
}

.partner-hero p:not(.eyebrow) {
  max-width: 560px;
}

.partner-hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
}

.partner-hero-points div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 45, 38, 0.05);
}

.partner-hero-points dt {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.partner-hero-points dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.partner-section {
  display: grid;
  gap: 22px;
  padding-top: clamp(28px, 4vw, 56px);
}

.partner-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 92, 75, 0.96), rgba(23, 58, 85, 0.96)),
    var(--accent-dark);
  box-shadow: var(--shadow);
}

.partner-intro .eyebrow,
.partner-intro p {
  color: rgba(255, 255, 255, 0.82);
}

.partner-intro h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(30px, 3.3vw, 48px);
}

.partner-intro dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.partner-intro dl div {
  position: relative;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.partner-intro dl div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: #f3b05f;
}

.partner-intro dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.partner-intro dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 900;
}

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

.partner-summary article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.partner-summary span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.partner-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 18px;
}

.partner-summary p {
  margin: 0;
  color: var(--muted);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid #b7d5cc;
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.08), rgba(243, 176, 95, 0.08)),
    #fbfdfb;
}

.guide-hero h1 {
  max-width: 820px;
}

.guide-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.faq-hero-panel {
  padding: 24px;
  border: 1px solid #b7d5cc;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-hero-panel strong,
.faq-hero-panel span {
  display: block;
}

.faq-hero-panel strong {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 20px;
}

.faq-hero-panel span {
  color: var(--muted);
}

.situation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.situation-grid a {
  padding: 12px 16px;
  border: 1px solid #b7d5cc;
  border-radius: 999px;
  color: var(--accent-dark);
  background: #fff;
  font-weight: 900;
}

.situation-grid a:hover {
  border-color: var(--accent);
  background: #eef8f4;
}

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

.faq-answer-grid article {
  position: relative;
  padding: 22px;
  border: 1px solid #b7d5cc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 45, 38, 0.05);
}

.faq-answer-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.faq-answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.cost-explain {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background: var(--panel);
}

.cost-note-grid {
  display: grid;
  gap: 12px;
}

.cost-note-grid div {
  padding: 18px;
  border: 1px solid #b7d5cc;
  border-radius: 8px;
  background: #fff;
}

.cost-note-grid strong,
.cost-note-grid span {
  display: block;
}

.cost-note-grid strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.cost-note-grid span {
  color: var(--muted);
}

.prepare-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: prepare;
}

.prepare-list li {
  counter-increment: prepare;
  padding: 18px;
  border: 1px solid #b7d5cc;
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.prepare-list li::before {
  content: counter(prepare, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
}

.guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(40px, 6vw, 76px) clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--accent-dark);
}

.guide-cta h2 {
  color: #fff;
}

.guide-cta p,
.guide-cta .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.guide-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--accent-dark);
  background: #fff;
  font-weight: 900;
}

.partner-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent-dark);
}

.partner-contact p,
.partner-contact .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.partner-contact h2 {
  margin-bottom: 8px;
}

.partner-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.partner-contact .secondary-action {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.partner-contact .secondary-action:hover {
  background: rgba(255, 255, 255, 0.22);
}

.blog-list {
  display: grid;
  gap: 12px;
}

.blog-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-row h2 {
  margin-bottom: 6px;
  font-size: 25px;
}

.blog-row time {
  flex: 0 0 auto;
  color: var(--muted);
}

.blog-row time,
.post-header time,
.tag-page time {
  display: none;
}

.admin-page time {
  display: inline;
}

.admin-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-tools div {
  flex: 1;
}

.admin-tools label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-weight: 900;
}

.admin-tools input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.admin-tools input:focus {
  outline: 2px solid rgba(14, 124, 102, 0.22);
  border-color: var(--accent);
}

.admin-tools p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.admin-tools strong {
  color: var(--accent);
}

.compact-heading {
  max-width: 920px;
  margin-bottom: 24px;
}

.admin-analytics {
  padding-top: 56px;
}

.analytics-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.analytics-summary div {
  padding: 20px;
  border: 1px solid #b7d5cc;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f1faf6 100%);
  box-shadow: 0 14px 34px rgba(14, 88, 69, 0.08);
}

.analytics-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.analytics-summary strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.analytics-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 12px;
}

.analytics-table-head strong {
  font-size: 1.05rem;
}

.analytics-table-head button {
  border: 1px solid #b7d5cc;
  border-radius: 8px;
  background: #fff;
  color: var(--accent);
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.analytics-table-head button:hover {
  border-color: var(--accent);
  background: #eef8f4;
}

.analytics-table td:nth-child(3) {
  font-weight: 800;
}

.post {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 18px;
}

.post-header {
  margin-bottom: 26px;
}

.post-header h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.post-header time {
  color: var(--muted);
}

.post-photo {
  min-height: 380px;
  margin-bottom: 38px;
}

.post-hero-image,
.post-image-grid img,
.post-wide-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  object-fit: cover;
}

.post-hero-image {
  max-height: 620px;
  margin-bottom: 38px;
}

.post-cover-card {
  position: relative;
  margin: 0 0 38px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--ink);
}

.post-cover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 12, 10, 0.82), rgba(8, 25, 21, 0.34) 58%, rgba(8, 25, 21, 0.08)),
    linear-gradient(180deg, rgba(14, 124, 102, 0.06), rgba(0, 0, 0, 0.2));
}

.post-cover-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 8px;
  background: var(--accent);
}

.post-cover-card img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.post-cover-card figcaption {
  position: absolute;
  left: clamp(22px, 5vw, 44px);
  right: clamp(18px, 5vw, 42px);
  bottom: clamp(22px, 5vw, 42px);
  z-index: 3;
  margin: 0;
  color: #fff;
}

.post-cover-card figcaption span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: #0a8f74;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 900;
}

.post-cover-card figcaption strong,
.post-cover-card figcaption small {
  display: block;
}

.post-cover-card.report-style::before {
  background:
    linear-gradient(180deg, rgba(8, 25, 21, 0.12), rgba(2, 12, 10, 0.9)),
    linear-gradient(90deg, rgba(23, 58, 85, 0.52), rgba(14, 124, 102, 0.12));
}

.post-cover-card.report-style::after {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  width: auto;
  height: 10px;
  background: var(--warm);
}

.post-cover-card.report-style figcaption span {
  background: #173a55;
}

.post-cover-card.checkpoint-style::before {
  background:
    linear-gradient(90deg, rgba(2, 12, 10, 0.1), rgba(2, 12, 10, 0.78)),
    linear-gradient(180deg, rgba(14, 124, 102, 0.08), rgba(23, 58, 85, 0.42));
}

.post-cover-card.checkpoint-style::after {
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--warm);
}

.post-cover-card.checkpoint-style figcaption {
  left: auto;
  max-width: 640px;
  text-align: right;
}

.post-cover-card.checkpoint-style figcaption span {
  background: var(--accent-dark);
}

.post-cover-card figcaption strong {
  max-width: 620px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
}

.post-cover-card figcaption small {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(15px, 2.4vw, 22px);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.post-toc {
  margin: 0 0 38px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.post-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

.post-toc div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.post-toc a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #344540;
  font-weight: 800;
}

.post-toc a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.post-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 36px;
}

.post-image-grid figure,
.post-wide-image {
  margin: 0;
}

.post-image-grid img {
  aspect-ratio: 4 / 5;
}

.post-wide-image {
  margin: 22px 0 36px;
}

.post-wide-image img {
  max-height: 620px;
}

.post figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.highlight {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.post-table-wrap {
  margin: 22px 0 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

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

.post-table th {
  color: #fff;
  background: var(--accent-dark);
}

.post-table tr:last-child td {
  border-bottom: 0;
}

.map-frame {
  overflow: hidden;
  margin: 22px 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.map-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.map-actions a:hover {
  background: var(--accent-dark);
}

.map-actions .disabled {
  color: #71807b;
  background: #e8eee9;
  pointer-events: none;
}

.tag-box {
  margin: 22px 0 36px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.tag-box strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.tag-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-box span,
.tag-box a,
.tag-filter a,
.row-tags a {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #c8d6ce;
  border-radius: 999px;
  color: #26423b;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.tag-box a:hover,
.tag-filter a:hover,
.tag-filter a.active,
.row-tags a:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.tag-page {
  display: grid;
  gap: 22px;
}

.tag-filter {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.tag-filter strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.tag-filter div,
.row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-result-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.tag-result-heading h2 {
  margin: 0;
}

.tag-result-heading span {
  color: var(--muted);
  font-weight: 800;
}

.row-tags {
  margin-top: 14px;
}

.row-tags a {
  padding: 6px 9px;
  font-size: 13px;
}

.post section {
  margin-bottom: 34px;
}

.post section h2 {
  font-size: 26px;
}

.post-cta {
  margin-top: 40px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent-dark);
}

.post-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.related-section {
  margin-top: 44px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.related-heading {
  margin-bottom: 18px;
}

.related-heading h2 {
  margin-bottom: 0;
  font-size: 26px;
}

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

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

.related-card img,
.related-placeholder {
  display: grid;
  width: 100%;
  height: 132px;
  place-items: center;
  object-fit: cover;
  background: #e8eee9;
}

.related-card span,
.related-card strong {
  display: block;
  padding: 0 14px;
}

.related-card span {
  margin-top: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.related-card strong {
  padding-bottom: 16px;
  color: var(--ink);
  line-height: 1.42;
}

.post-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.post-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.final-promise {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(14, 124, 102, 0.08), rgba(243, 176, 95, 0.08)),
    var(--panel);
  border-top: 1px solid var(--line);
}

.final-promise-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.final-promise h2 {
  max-width: 680px;
}

.final-promise p {
  max-width: 720px;
  color: var(--muted);
}

.final-promise-cards {
  display: grid;
  gap: 10px;
}

.final-promise-cards div {
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent-dark);
}

.final-promise-cards div:nth-child(2) {
  background: #a76212;
}

.final-promise-cards span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.final-promise-cards strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.final-promise-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.final-promise-flow span {
  padding: 8px 11px;
  border: 1px solid rgba(14, 124, 102, 0.2);
  border-radius: 999px;
  color: var(--accent-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.final-promise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 1500px) {
  .hero {
    grid-template-columns: minmax(360px, 0.76fr) minmax(520px, 1.24fr);
  }

  .hero-media {
    grid-template-rows: minmax(260px, 390px) auto;
    gap: 12px;
    padding-top: 24px;
  }

  .hero-photo-card {
    max-height: 390px;
  }

  .hero-photo-stack {
    display: grid;
  }

  .hero-photo-stack figure {
    height: 126px;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(280px, 0.72fr) minmax(380px, 1.28fr);
  }

  .hero-media {
    grid-template-rows: minmax(230px, 320px) minmax(96px, 112px);
    padding: 18px;
  }

  .hero-photo-card {
    min-height: 230px;
    max-height: 320px;
  }

  .hero-photo-stack figure {
    height: 104px;
  }

  h1 {
    font-size: clamp(32px, 3.2vw, 44px);
  }

  .faq-answer-grid,
  .prepare-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  }

  .faq-side-card.cost-card {
    display: none;
  }
}

@media (min-width: 981px) and (max-height: 1050px) {
  .hero-copy {
    justify-content: start;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-tags {
    margin-bottom: 14px;
  }

  .one-stop-flow {
    margin-bottom: 14px;
  }

  .hero-promise {
    margin-bottom: 14px;
    padding: 12px;
  }

  .hero-search {
    margin-bottom: 12px;
  }

}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }

  .hero-media {
    grid-template-rows: auto;
    min-height: 380px;
    order: 2;
  }

  .hero-photo-stack {
    display: none;
  }

  .photo-slot-large {
    min-height: 380px;
  }

  .service-grid,
  .service-summary,
  .process-list,
  .case-grid,
  .blog-grid,
  .partner-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-intro {
    grid-template-columns: 1fr;
  }

  .partner-hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
  }

  .guide-preview,
  .guide-hero,
  .faq-shell,
  .cost-explain {
    grid-template-columns: 1fr;
  }

  .guide-preview {
    align-items: start;
  }

  .faq-side-card {
    display: none;
  }

  .service-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-photo-card {
    min-height: 360px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .partner-contact {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 0;
    gap: 0;
  }

  .hero-copy {
    padding: 32px 18px 26px;
  }

  .hero-promise,
  .one-stop-flow,
  .service-grid,
  .service-summary,
  .process-list,
  .case-grid,
  .blog-grid,
  .related-grid,
  .contact-checklist,
  .partner-summary,
  .faq-answer-grid,
  .prepare-list,
  .post-toc div,
  .post-image-grid {
    grid-template-columns: 1fr;
  }

  .admin-tools {
    display: grid;
    align-items: stretch;
  }

  .admin-tools p {
    white-space: normal;
  }

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

  .analytics-table-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-media {
    grid-template-rows: auto;
    padding: 18px;
  }

  .hero-photo-card {
    min-height: 260px;
    max-height: 320px;
  }

  .photo-slot-large {
    min-height: 260px;
  }

  .hero-photo-card figcaption strong {
    font-size: 28px;
  }

  .section,
  .contact-section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  #services::after,
  .process-section::after,
  #cases::after,
  .blog-section::after {
    left: 18px;
    right: 18px;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .service-grid article,
  .process-list li {
    min-height: auto;
  }

  .case-photo {
    height: 190px;
  }

  .case-card::before {
    height: 190px;
  }

  .blog-thumb img {
    height: 150px;
  }

  .contact-box-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-box-head strong {
    font-size: 22px;
  }

  .intro-band,
  .section-heading.split,
  .blog-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-band {
    display: flex;
  }

  .blog-row time {
    flex: auto;
  }

  .blog-row.with-thumb {
    display: flex;
  }

  .blog-row.with-thumb .blog-thumb {
    width: 100%;
  }

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

  .footer-meta {
    display: grid;
    gap: 3px;
  }

  .footer-meta b {
    display: none;
  }

  .one-stop-flow {
    counter-reset: flow-step;
    display: grid;
    gap: 0;
    padding-left: 18px;
    border: 0;
    background: transparent;
  }

  .one-stop-flow span {
    justify-content: start;
    min-height: 44px;
    padding: 9px 12px 9px 42px;
    border: 0;
    border-left: 2px solid rgba(14, 124, 102, 0.36);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
  }

  .one-stop-flow span:first-child,
  .one-stop-flow span:last-child {
    background: transparent;
    color: var(--ink);
  }

  .one-stop-flow span::before {
    content: "0" counter(flow-step);
    counter-increment: flow-step;
    position: absolute;
    left: -18px;
    top: 50%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--accent);
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 900;
  }

  .one-stop-flow span:not(:last-child)::after {
    display: none;
  }

  .hero-search div {
    display: grid;
  }

  .hero-search input {
    min-height: 42px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .floating-contact a {
    min-height: 44px;
    justify-content: center;
    padding: 7px 5px;
    text-align: center;
  }

  .floating-contact span {
    font-size: 12px;
  }

  .floating-contact strong {
    display: none;
  }
}
