.sg-page-hero {
  padding: 8.2rem 0 4rem;
  background: linear-gradient(135deg, #eefaf7 0%, #ffffff 48%, #fff4ec 100%);
}
.sg-breadcrumbs {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.sg-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sg-breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: #94a3b8;
}
.sg-breadcrumbs a {
  color: var(--brand-dark, #115e59);
}
.sg-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 3rem;
  align-items: center;
}
.sg-page-hero h1 {
  max-width: 780px;
  margin: 0.75rem 0 1.1rem;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.sg-page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.sg-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  background: #dbe5e7;
}
.sg-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.sg-section {
  padding: 4.6rem 0;
}
.sg-section-soft {
  background: var(--surface-soft);
}
.sg-section-head {
  max-width: 760px;
  margin: 0 0 2rem;
}
.container.sg-section-head {
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  margin: 0 auto 2rem;
}
.container.sg-section-head > p {
  max-width: 760px;
}
.sg-section-head.center {
  margin-inline: auto;
  text-align: center;
}
.container.sg-section-head.center > p {
  margin-inline: auto;
}
.sg-section-head h2 {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}
.sg-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.sg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.sg-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sg-info-card,
.sg-feature-card,
.sg-quote-panel,
.track-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.sg-info-card,
.sg-feature-card {
  padding: 1.35rem;
}
.sg-info-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
}
.sg-info-card h2,
.sg-feature-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.12rem;
}
.sg-info-card p,
.sg-feature-card p {
  margin: 0;
  color: var(--muted);
}
.sg-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 2rem;
  align-items: start;
}
.sg-image-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.sg-image-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.sg-image-panel figcaption {
  padding: 1rem 1.15rem;
  color: var(--muted);
}
.sg-check-list {
  display: grid;
  gap: 0.8rem;
}
.sg-check-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.sg-check-list span {
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.sg-check-list p {
  margin: 0;
  color: var(--muted);
}
.sg-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.sg-content-block h2,
.sg-content-block h3 {
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.sg-content-block p {
  margin: 0 0 1rem;
  color: var(--muted);
}
.sg-content-block p:last-child {
  margin-bottom: 0;
}
.sg-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  counter-reset: sg-step;
  list-style: none;
}
.sg-process li {
  position: relative;
  min-height: 180px;
  padding: 3.4rem 1.2rem 1.2rem;
  border-top: 3px solid var(--brand);
  background: #fff;
  box-shadow: var(--shadow-sm);
  counter-increment: sg-step;
}
.sg-process li::before {
  content: counter(sg-step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  color: var(--brand-dark, #115e59);
  font-weight: 800;
}
.sg-process h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.05rem;
}
.sg-process p {
  margin: 0;
  color: var(--muted);
}
.sg-faq {
  border-top: 1px solid var(--line);
}
.sg-faq details {
  border-bottom: 1px solid var(--line);
}
.sg-faq summary {
  padding: 1.15rem 2.5rem 1.15rem 0;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}
.sg-faq details p {
  max-width: 820px;
  margin: -0.35rem 0 1.2rem;
  color: var(--muted);
}
.sg-text-link {
  color: var(--brand-dark, #115e59);
  font-weight: 700;
}
.sg-quote-panel {
  padding: 1.5rem;
}
.sg-quote-panel h2 {
  margin: 0 0 0.55rem;
}
.sg-quote-panel > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}
.sg-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.service-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.service-card-link {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-card-link:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.service-card-link img {
  width: 48px;
  height: 48px;
}
.service-card-link h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.service-card-link p {
  margin: 0;
  color: var(--muted);
}
.track-shell {
  min-height: 100vh;
  background: linear-gradient(135deg, #eefaf7 0%, #ffffff 50%, #fff4ec 100%);
}
.track-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
}
.track-panel {
  padding: 1.5rem;
}
.track-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
}
.track-result.error {
  background: #fff1f2;
  color: #9f1239;
}
.timeline {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}
.timeline li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #cbd5e1;
}
.timeline li.active {
  border-color: #99f6e4;
  background: #ecfdf5;
  color: #115e59;
  font-weight: 700;
}
.timeline li.active::before {
  background: var(--brand);
}
.timeline li.cancelled {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #9f1239;
  font-weight: 700;
}
.timeline li.cancelled::before {
  background: #e11d48;
}
.track-note-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.track-note-list li {
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
@media (max-width: 920px) {
  .sg-page-hero-grid,
  .sg-split,
  .track-grid,
  .sg-content-grid {
    grid-template-columns: 1fr;
  }
  .sg-card-grid,
  .sg-card-grid.two,
  .service-matrix {
    grid-template-columns: 1fr;
  }
  .sg-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .container.sg-section-head {
    width: min(calc(100% - 28px), var(--container));
  }
}
@media (max-width: 640px) {
  .sg-page-hero {
    padding-top: 6.5rem;
  }
  .service-card-link {
    grid-template-columns: 1fr;
  }
  .sg-process {
    grid-template-columns: 1fr;
  }
  .sg-process li {
    min-height: 0;
  }
}
