:root {
  --gt-ink: #01052d;
  --gt-muted: #6f6c90;
  --gt-line: #eff0f6;
  --gt-surface: #f7f8fb;
  --gt-green: #8992fa;
  --gt-green-dark: #616eff;
  --gt-yellow: #ffe6b0;
  --gt-white: #ffffff;
}

body.service-page {
  color: var(--gt-ink);
  background: var(--gt-white);
  font-family: Montserrat, sans-serif;
  letter-spacing: 0;
}

.gt-page-shell {
  overflow: hidden;
}

.gt-container {
  width: min(1296px, 90%);
  margin: 0 auto;
}

.gt-narrow {
  width: min(780px, 100%);
}

.gt-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 36px;
  color: var(--gt-muted);
  font-size: 14px;
}

.gt-breadcrumb a {
  color: var(--gt-green-dark);
  text-decoration: none;
}

.gt-hero {
  padding: 54px 0 88px;
  border-bottom: 1px solid var(--gt-line);
}

.gt-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.gt-eyebrow {
  margin: 0 0 14px;
  color: var(--gt-green-dark);
  font-size: 14px;
  font-weight: 700;
}

.gt-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--gt-ink);
  font-size: clamp(40px, 4.4vw, 55px);
  line-height: 1.12;
  letter-spacing: 0;
}

.gt-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--gt-muted);
  font-size: 18px;
  line-height: 1.7;
}

.gt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gt-button,
.gt-button-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 1px solid var(--gt-green);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s;
}

.gt-button {
  color: var(--gt-white);
  background: var(--gt-green);
}

.gt-button-secondary {
  color: var(--gt-ink);
  background: transparent;
}

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

.gt-button:hover {
  border-color: var(--gt-green-dark);
  background: var(--gt-green-dark);
}

.gt-button-secondary:hover {
  color: var(--gt-white);
  border-color: var(--gt-ink);
  background: var(--gt-ink);
}

.gt-visual {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  background: transparent;
}

.gt-visual::before,
.gt-visual::after {
  position: absolute;
  inset: 2% 1%;
  z-index: 0;
  border-radius: 20px;
  content: "";
}

.gt-visual::before {
  background: #d8f4db;
  transform: rotate(3deg);
}

.gt-visual::after {
  background: var(--gt-yellow);
  transform: rotate(-3deg);
}

.gt-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  object-fit: cover;
}

.gt-section {
  padding: 96px 0;
}

.gt-section-alt {
  background: var(--gt-surface);
}

.gt-section-dark {
  color: var(--gt-white);
  background: var(--gt-ink);
}

.gt-section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.gt-section h2 {
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(32px, 3.5vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.gt-section h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.gt-section p,
.gt-section li {
  color: var(--gt-muted);
  font-size: 16px;
  line-height: 1.75;
}

.gt-section-dark p,
.gt-section-dark li {
  color: #d9dbe9;
}

.gt-section-dark .gt-card h3,
.gt-section-dark .gt-step h3,
.gt-section-dark .gt-related h3,
.gt-section-dark .gt-metric strong {
  color: var(--gt-ink);
}

.gt-section-dark .gt-card p,
.gt-section-dark .gt-step p,
.gt-section-dark .gt-related p,
.gt-section-dark .gt-metric span {
  color: var(--gt-muted);
}

.gt-definition {
  border-left: 5px solid var(--gt-green);
  padding: 24px 28px;
  background: var(--gt-surface);
  font-size: 18px;
  line-height: 1.75;
}

.gt-grid-3,
.gt-grid-4,
.gt-related-grid,
.gt-metrics {
  display: grid;
  gap: 16px;
}

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

.gt-grid-4,
.gt-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gt-card,
.gt-step,
.gt-related,
.gt-metric {
  border: 1px solid var(--gt-line);
  border-radius: 20px;
  background: var(--gt-white);
}

.gt-card,
.gt-step,
.gt-related {
  padding: 30px;
}

.gt-card p,
.gt-step p,
.gt-related p {
  margin-bottom: 0;
}

.gt-step-number {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--gt-white);
  background: var(--gt-green);
  font-size: 14px;
  font-weight: 800;
}

.gt-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gt-checklist li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--gt-line);
}

.gt-checklist li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--gt-green);
  content: "✓";
  font-weight: 800;
}

.gt-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.gt-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gt-line);
  border-radius: 20px;
}

.gt-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--gt-white);
}

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

.gt-table th {
  color: var(--gt-ink);
  background: var(--gt-surface);
  font-size: 14px;
}

.gt-table td {
  color: var(--gt-muted);
  font-size: 15px;
  line-height: 1.6;
}

.gt-metric {
  padding: 24px;
}

.gt-metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gt-ink);
  font-size: 34px;
  line-height: 1;
}

.gt-metric span {
  color: var(--gt-muted);
  font-size: 14px;
}

.gt-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gt-green-dark);
  background: #eff0ff;
  font-size: 13px;
  font-weight: 700;
}

.gt-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gt-green);
  content: "";
}

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

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

.gt-faq summary {
  padding: 20px 4px;
  color: var(--gt-ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.gt-faq details p {
  margin: 0;
  padding: 0 4px 22px;
}

.gt-related {
  color: inherit;
  text-decoration: none;
}

.gt-related .gt-link {
  display: block;
  margin-top: 18px;
  color: var(--gt-green-dark);
  font-weight: 700;
}

.gt-source-list a {
  color: var(--gt-green-dark);
}

.gt-note {
  padding: 18px 20px;
  border: 1px solid #f4d991;
  border-radius: 20px;
  color: var(--gt-ink);
  background: #fff8e8;
  line-height: 1.7;
}

.gt-cta {
  padding: 72px 0;
  background: #d3d6ff;
}

.gt-cta-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.gt-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--gt-ink);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.gt-cta .gt-button {
  border-color: var(--gt-ink);
  background: var(--gt-ink);
}

.gt-cta .gt-button:hover {
  border-color: var(--gt-green-dark);
  background: var(--gt-green-dark);
}

@media (max-width: 991px) {
  .gt-hero-grid,
  .gt-two-col {
    grid-template-columns: 1fr;
  }

  .gt-hero-grid {
    gap: 36px;
  }

  .gt-grid-4,
  .gt-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gt-grid-3,
  .gt-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gt-container {
    width: calc(100% - 32px);
  }

  .gt-breadcrumb {
    padding-top: 22px;
  }

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

  .gt-hero h1 {
    font-size: 40px;
  }

  .gt-lead {
    font-size: 17px;
  }

  .gt-actions,
  .gt-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .gt-button,
  .gt-button-secondary {
    width: 100%;
  }

  .gt-visual,
  .gt-visual img {
    min-height: 280px;
  }

  .gt-section {
    padding: 64px 0;
  }

  .gt-grid-4,
  .gt-metrics {
    grid-template-columns: 1fr;
  }

  .gt-card,
  .gt-step,
  .gt-related,
  .gt-metric {
    padding: 22px;
  }
}
