
:root {
  --cgst-core-orange: #f47b20;
  --cgst-core-orange-deep: #d9620d;
  --cgst-core-orange-soft: #fff2e7;
  --cgst-core-ink: #0f172a;
  --cgst-core-ink-soft: #5b6779;
  --cgst-core-line: #e7edf5;
  --cgst-core-card: #ffffff;
  --cgst-core-bg: #f7f9fc;
  --cgst-core-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  --cgst-core-shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.06);
  --cgst-core-radius-xl: 28px;
  --cgst-core-radius-lg: 22px;
  --cgst-core-radius-md: 18px;
}

.cgst-core-page {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cgst-core-ink);
  display: grid;
  gap: 24px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.cgst-core-page * {
  box-sizing: border-box;
}

.cgst-core-hero,
.cgst-core-card,
.cgst-core-cta {
  background: var(--cgst-core-card);
  border: 1px solid var(--cgst-core-line);
  border-radius: var(--cgst-core-radius-xl);
  box-shadow: var(--cgst-core-shadow-soft);
}

.cgst-core-hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(244, 123, 32, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.cgst-core-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(244, 123, 32, 0.07);
  filter: blur(10px);
}

.cgst-core-eyebrow,
.cgst-core-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--cgst-core-orange-soft);
  color: var(--cgst-core-orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cgst-core-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.04em;
  color: var(--cgst-core-ink);
}

.cgst-core-lead {
  max-width: 860px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--cgst-core-ink-soft);
}

.cgst-core-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cgst-core-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--cgst-core-line);
  color: var(--cgst-core-ink);
  font-size: 13px;
  font-weight: 700;
}

.cgst-core-grid {
  display: grid;
  gap: 20px;
}

.cgst-core-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.cgst-core-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.cgst-core-card h2,
.cgst-core-card h3,
.cgst-core-cta h2 {
  margin: 14px 0 14px;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.cgst-core-card h3 {
  font-size: 24px;
}

.cgst-core-card p,
.cgst-core-cta p,
.cgst-core-faq-answer p {
  margin: 0;
  color: var(--cgst-core-ink-soft);
  font-size: 15px;
  line-height: 1.82;
}

.cgst-core-card p + p,
.cgst-core-cta p + p {
  margin-top: 14px;
}

.cgst-core-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--cgst-core-ink-soft);
  display: grid;
  gap: 10px;
}

.cgst-core-stat {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--cgst-core-orange-soft);
  color: var(--cgst-core-orange-deep);
  font-size: 18px;
  font-weight: 900;
}

.cgst-core-card--wide {
  padding: 32px;
}

.cgst-core-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
  background: linear-gradient(135deg, #fff7ef 0%, #ffffff 68%);
}

.cgst-core-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cgst-core-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.cgst-core-btn:hover {
  transform: translateY(-1px);
}

.cgst-core-btn-primary {
  background: var(--cgst-core-orange);
  border: 1px solid var(--cgst-core-orange);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(244, 123, 32, 0.18);
}

.cgst-core-btn-primary:hover {
  background: var(--cgst-core-orange-deep);
  border-color: var(--cgst-core-orange-deep);
}

.cgst-core-btn-secondary {
  background: #fff;
  border: 1px solid rgba(244, 123, 32, 0.25);
  color: var(--cgst-core-orange-deep) !important;
}

.cgst-core-contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.cgst-core-contact-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fbfcfe;
  border: 1px solid var(--cgst-core-line);
}

.cgst-core-contact-label {
  color: var(--cgst-core-ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cgst-core-contact-item a,
.cgst-core-contact-item strong {
  font-size: 16px;
  line-height: 1.45;
  color: var(--cgst-core-ink);
  text-decoration: none;
  word-break: break-word;
}

.cgst-core-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cgst-core-faq-item {
  border: 1px solid var(--cgst-core-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.cgst-core-faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--cgst-core-ink);
  font-size: 15px;
  font-weight: 800;
}

.cgst-core-faq-button:hover {
  background: #fffaf5;
}

.cgst-core-faq-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cgst-core-orange-soft);
  color: var(--cgst-core-orange-deep);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.cgst-core-faq-item.is-open .cgst-core-faq-icon {
  transform: rotate(45deg);
}

.cgst-core-faq-answer {
  padding: 0 18px 18px;
}

.cgst-core-page a:focus,
.cgst-core-page button:focus,
.cgst-core-page a:focus-visible,
.cgst-core-page button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.14);
}

@media (max-width: 1024px) {
  .cgst-core-grid--3 {
    grid-template-columns: 1fr 1fr;
  }

  .cgst-core-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cgst-core-page {
    gap: 18px;
  }

  .cgst-core-hero,
  .cgst-core-card,
  .cgst-core-cta {
    border-radius: 22px;
  }

  .cgst-core-hero,
  .cgst-core-card,
  .cgst-core-cta {
    padding: 20px;
  }

  .cgst-core-grid--2,
  .cgst-core-grid--3 {
    grid-template-columns: 1fr;
  }

  .cgst-core-hero h1 {
    font-size: 34px;
  }

  .cgst-core-lead {
    font-size: 15px;
  }

  .cgst-core-cta-actions,
  .cgst-core-btn {
    width: 100%;
  }

  .cgst-core-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
