.igps-sheet,
.igps-sheet * {
  box-sizing: border-box;
}

.igps-sheet {
  --igps-bg: #ffffff;
  --igps-card: #ffffff;
  --igps-border: #e5e7eb;
  --igps-border-strong: #cbd5e1;
  --igps-text: #0b1220;
  --igps-muted: #475569;
  --igps-soft: #f8fafc;
  --igps-soft-strong: #f1f5f9;
  --igps-accent: #49ab7c;
  --igps-accent-dark: #0f766e;
  --igps-accent-soft: #ecfdf5;
  --igps-warning: #fff7ed;
  --igps-warning-border: #fed7aa;
  width: 100%;
  max-width: 1080px;
  margin: 20px auto 42px;
  padding: 16px;
  border: 1px solid var(--igps-border);
  border-radius: 18px;
  color: var(--igps-text);
  background: var(--igps-bg);
  font-family: Arial, "DejaVu Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1.55;
}

.igps-sheet :where(h2, h3, h4, p, ul, li, dl, dt, dd, figure) {
  margin: 0;
  padding: 0;
}

.igps-sheet a {
  color: inherit;
  text-decoration: none;
}

.igps-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--igps-border);
  border-radius: 16px;
  background: #fff;
}

.igps-brand {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.igps-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.igps-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--igps-border);
  border-radius: 999px;
  color: var(--igps-muted);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.igps-chip--brand::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--igps-accent);
  content: "";
}

.igps-title {
  color: var(--igps-text);
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -.015em;
}

.igps-lead {
  max-width: 680px;
  color: var(--igps-muted);
  font-size: 14px;
  line-height: 1.65;
}

.igps-quick-offer {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--igps-border);
  border-radius: 15px;
  background: var(--igps-soft);
}

.igps-quick-offer__eyebrow,
.igps-section-label {
  display: block;
  margin-bottom: 5px;
  color: var(--igps-accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.igps-quick-offer h2 {
  color: var(--igps-text);
  font-size: 18px;
  line-height: 1.25;
}

.igps-quick-offer__head p {
  margin-top: 7px;
  color: var(--igps-muted);
  font-size: 12.5px;
}

.igps-quick-form {
  display: grid;
  gap: 10px;
  margin-top: 13px;
}

.igps-form-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.igps-form-progress span {
  display: grid;
  min-height: 25px;
  place-items: center;
  border-radius: 999px;
  color: #64748b;
  background: #e2e8f0;
  font-size: 11px;
  font-weight: 900;
}

.igps-form-progress span.is-active,
.igps-form-progress span.is-complete {
  color: #fff;
  background: var(--igps-accent-dark);
}

.igps-form-step {
  display: grid;
  gap: 10px;
}

.igps-form-step[hidden],
.igps-form-status[hidden],
.igps-honeypot[hidden] {
  display: none !important;
}

.igps-field {
  display: grid;
  gap: 5px;
}

.igps-field label {
  color: var(--igps-text);
  font-size: 12px;
  font-weight: 800;
}

.igps-field label span {
  color: #dc2626;
}

.igps-field input,
.igps-field textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 11px;
  border: 1px solid var(--igps-border-strong);
  border-radius: 9px;
  outline: none;
  color: var(--igps-text);
  background: #fff;
  font: inherit;
  font-size: 13px;
}

.igps-field textarea {
  min-height: 82px;
  resize: vertical;
}

.igps-field :where(input, textarea):focus {
  border-color: var(--igps-accent-dark);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
}

.igps-field [aria-invalid="true"] {
  border-color: #dc2626;
}

.igps-form-status {
  padding: 9px 10px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #991b1b;
  background: #fef2f2;
  font-size: 12px;
  font-weight: 700;
}

.igps-form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: stretch;
}

.igps-form-next,
.igps-form-back,
.igps-form-submit {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.igps-form-next,
.igps-form-submit {
  border: 1px solid var(--igps-accent-dark);
  color: #fff;
  background: var(--igps-accent-dark);
}

.igps-form-back {
  border: 1px solid var(--igps-border-strong);
  color: var(--igps-text);
  background: #fff;
}

.igps-form-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.igps-quick-form .igreen-b2b-privacy-consent {
  margin: 1px 0 4px;
  color: var(--igps-muted);
  font-size: 11px;
}

.igps-summary {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.igps-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--igps-border);
  border-radius: 16px;
  background: var(--igps-card);
}

.igps-card > h2 {
  margin-bottom: 11px;
  color: var(--igps-text);
  font-size: 15px;
  line-height: 1.25;
}

.igps-metrics {
  display: grid;
  gap: 10px;
}

.igps-metric {
  padding: 13px;
  border: 1px solid var(--igps-border);
  border-radius: 14px;
  background: var(--igps-soft);
}

.igps-metric__value {
  color: var(--igps-accent-dark);
  font-size: clamp(32px, 4vw, 43px);
  font-weight: 900;
  line-height: 1;
}

.igps-metric__value small {
  margin-left: 5px;
  color: var(--igps-muted);
  font-size: 14px;
}

.igps-metric__label {
  margin-top: 7px;
  color: var(--igps-muted);
  font-size: 12px;
  font-weight: 800;
}

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

.igps-feature {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 11px 8px;
  border: 1px solid var(--igps-border);
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.igps-feature__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--igps-border-strong);
  border-radius: 12px;
  color: var(--igps-accent-dark);
  background: var(--igps-accent-soft);
  font-size: 12px;
  font-weight: 900;
}

.igps-feature h3 {
  color: var(--igps-text);
  font-size: 12.5px;
  line-height: 1.25;
}

.igps-feature p {
  color: var(--igps-muted);
  font-size: 11px;
  line-height: 1.4;
}

.igps-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.igps-stack {
  display: grid;
  align-content: start;
  gap: 12px;
}

.igps-kv {
  display: grid;
  border-top: 1px solid var(--igps-border);
}

.igps-row {
  display: grid;
  grid-template-columns: minmax(130px, .9fr) minmax(130px, 1.1fr);
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--igps-border);
  font-size: 12.5px;
}

.igps-key {
  color: var(--igps-muted);
}

.igps-value {
  color: var(--igps-text);
  font-weight: 800;
  text-align: right;
}

.igps-note,
.igps-warning {
  margin-top: 12px;
  padding: 11px 12px;
  border-radius: 11px;
  font-size: 12px;
  line-height: 1.5;
}

.igps-note {
  border: 1px solid #bbf7d0;
  color: #166534;
  background: var(--igps-accent-soft);
}

.igps-warning {
  border: 1px solid var(--igps-warning-border);
  color: #9a3412;
  background: var(--igps-warning);
}

.igps-related {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--igps-border);
  border-radius: 16px;
  background: var(--igps-soft);
}

.igps-related__head {
  max-width: 720px;
  margin-bottom: 14px;
}

.igps-related__head h2 {
  color: var(--igps-text);
  font-size: 20px;
  line-height: 1.25;
}

.igps-related__head p {
  margin-top: 6px;
  color: var(--igps-muted);
  font-size: 13px;
}

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

.igps-related-card {
  display: grid;
  grid-template-rows: 150px auto;
  overflow: hidden;
  border: 1px solid var(--igps-border);
  border-radius: 14px;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}

.igps-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

.igps-related-card__media {
  display: grid;
  place-items: center;
  padding: 10px;
  background: #fff;
}

.igps-related-card__media img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.igps-related-card__placeholder {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 18px;
  color: var(--igps-accent-dark);
  background: var(--igps-accent-soft);
  font-size: 13px;
  font-weight: 900;
}

.igps-related-card__body {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 13px;
  border-top: 1px solid var(--igps-border);
}

.igps-related-card__meta {
  color: var(--igps-accent-dark);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.igps-related-card h3 {
  color: var(--igps-text);
  font-size: 14px;
  line-height: 1.3;
}

.igps-related-card p {
  color: var(--igps-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.igps-catalog {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
  padding: 22px;
  border-radius: 16px;
  color: #ecfdf5;
  background: linear-gradient(135deg, #063f35, #0f766e);
}

.igps-catalog h2 {
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.igps-catalog p {
  margin-top: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.igps-catalog__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border-radius: 10px;
  color: #064e3b !important;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.igps-source {
  margin-top: 14px !important;
  color: #718096;
  font-size: 10.5px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .igps-top,
  .igps-summary,
  .igps-details {
    grid-template-columns: 1fr;
  }

  .igps-features,
  .igps-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .igps-sheet {
    margin-top: 12px;
    padding: 10px;
    border-radius: 14px;
  }

  .igps-top {
    gap: 18px;
    padding: 10px;
  }

  .igps-features,
  .igps-related__grid,
  .igps-catalog {
    grid-template-columns: 1fr;
  }

  .igps-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .igps-value {
    text-align: left;
  }

  .igps-feature {
    min-height: 0;
    align-items: flex-start;
    text-align: left;
  }

  .igps-related-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .igps-related-card__media {
    min-height: 128px;
  }

  .igps-related-card__media img {
    height: 96px;
  }

  .igps-related-card__body {
    border-top: 0;
    border-left: 1px solid var(--igps-border);
  }

  .igps-catalog__button {
    width: 100%;
    white-space: normal;
  }
}
