/* Info pages (About / Comparison / Contact) — align with courses/events tokens */
.sg-info {
  --sg-text: #0d1321;
  --sg-heading: #1f2933;
  --sg-muted: #5a6555;
  --sg-accent: #273b09;
  --sg-yellow: #d0e562;
  --sg-orange: #ff7f11;
  --sg-bg: #fbfdf8;
  --sg-white: #fff;
  --sg-border: #e8ecdf;
  --sg-radius: 16px;
  --sg-font: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--sg-text);
  background: var(--sg-bg);
  font-family: var(--sg-font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.sg-info *,
.sg-info *::before,
.sg-info *::after { box-sizing: border-box; }

.sg-info__container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5%;
}

.sg-info__container--narrow { max-width: 760px; }

.sg-info__hero {
  padding: clamp(40px, 7vw, 72px) 0 clamp(28px, 4vw, 40px);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(208, 229, 98, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(255, 127, 17, 0.08), transparent 50%),
    var(--sg-bg);
}

.sg-info__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--sg-muted);
  margin-bottom: 1.25rem;
}

.sg-info__crumb a {
  color: var(--sg-accent);
  text-decoration: none;
  font-weight: 600;
}

.sg-info__label {
  display: inline-block;
  background: linear-gradient(135deg, var(--sg-yellow) 0%, #e2ef8a 100%);
  color: var(--sg-accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.sg-info h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--sg-heading);
}

.sg-info h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--sg-heading);
}

.sg-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sg-heading);
}

.sg-info__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--sg-muted);
  max-width: 62ch;
}

.sg-info__caption {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: #6b7280;
}

.sg-info__section { padding: clamp(40px, 6vw, 72px) 0; }
.sg-info__section--tint { background: #f2f6ed; }

.sg-info__section-head { margin-bottom: 0.25rem; }
.sg-info__section-head--center { text-align: center; }
.sg-info__section-head--center h2 { margin-bottom: 0.65rem; }

.sg-info__lead--center {
  margin-left: auto;
  margin-right: auto;
}

.sg-info__prose {
  margin: 0 0 1rem;
  color: #374151;
  font-size: 1.05rem;
  max-width: 68ch;
}

.sg-info__grid-2,
.sg-info__grid-3,
.sg-info__stats,
.sg-info__contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 1.25rem;
}

.sg-info__card--accent {
  border-color: rgba(39, 59, 9, 0.16);
  background:
    linear-gradient(180deg, rgba(208, 229, 98, 0.14) 0%, transparent 42%),
    var(--sg-white);
}

.sg-info__card-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-accent);
}

.sg-info__steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.sg-info__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: 18px 18px;
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
}

.sg-info__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--sg-yellow);
  color: var(--sg-accent);
  font-weight: 800;
  font-size: 0.9rem;
}

.sg-info__step h3 { margin: 0 0 0.35rem; }
.sg-info__step p { margin: 0; color: #374151; }

.sg-info__placeholder {
  margin: 1.5rem 0 0;
  padding: 28px 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border-radius: var(--sg-radius);
  border: 1px dashed #c5cdb8;
  background: linear-gradient(160deg, #eef3e6 0%, #f7f9f3 100%);
  color: #4b5563;
}

.sg-info__placeholder strong {
  color: var(--sg-heading);
  font-size: 1.05rem;
}

.sg-info__caption--center { text-align: center; }

.sg-info__bridge-note {
  margin-top: 1.25rem;
  padding: 22px 22px;
  border-radius: var(--sg-radius);
  background: linear-gradient(135deg, #273b09 0%, #3a5610 100%);
  color: #fff;
}

.sg-info__bridge-note h3 {
  color: #fff;
  margin-bottom: 0.45rem;
}

.sg-info__bridge-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 70ch;
}

.sg-info__note {
  margin: 1.25rem auto 0;
  max-width: 70ch;
  text-align: center;
  color: var(--sg-muted);
  font-size: 0.95rem;
}

.sg-info__inline-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.sg-info__btn--outline {
  background: var(--sg-white);
  color: var(--sg-accent);
  border: 2px solid rgba(39, 59, 9, 0.22);
}

.sg-info__audience {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sg-info__audience li {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  font-weight: 600;
  color: var(--sg-accent);
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .sg-info__steps {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .sg-info__grid-2 { grid-template-columns: repeat(2, 1fr); }
  .sg-info__grid-3 { grid-template-columns: repeat(3, 1fr); }
  .sg-info__stats { grid-template-columns: repeat(3, 1fr); }
  .sg-info__contact-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

.sg-info__card {
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  padding: 22px 20px;
  box-shadow: 0 1px 2px rgba(13, 19, 33, 0.04), 0 8px 24px rgba(13, 19, 33, 0.04);
}

.sg-info__card p { margin: 0 0 0.65rem; color: #374151; }
.sg-info__card p:last-child { margin-bottom: 0; }
.sg-info__role { font-weight: 600; color: var(--sg-accent) !important; }
.sg-info__subhead { margin-top: 1.5rem; }

.sg-info__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  margin-bottom: 1rem;
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed #c5cdb8;
  background: linear-gradient(160deg, #eef3e6 0%, #f7f9f3 100%);
  text-align: center;
  font-size: 0.85rem;
  color: #4b5563;
}

.sg-info__stat {
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  padding: 20px;
  text-align: center;
}

.sg-info__stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--sg-accent);
  margin-bottom: 6px;
}

.sg-info__stat span { color: var(--sg-muted); font-size: 0.95rem; }

.sg-info__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  background: var(--sg-white);
  margin-top: 1rem;
}

.sg-info__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}

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

.sg-info__table thead th {
  background: #eef3e6;
  font-weight: 700;
  color: var(--sg-heading);
}

.sg-info__table tbody th {
  font-weight: 600;
  width: 26%;
}

.sg-info__yes {
  font-weight: 700;
  color: var(--sg-accent);
}

.sg-info__bullets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sg-info__bullets li {
  position: relative;
  padding: 12px 14px 12px 36px;
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  border-radius: 12px;
}

.sg-info__bullets li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 1.05em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sg-orange);
}

.sg-info__faq { margin-top: 1rem; display: grid; gap: 10px; }

.sg-info__faq-item {
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  border-radius: 12px;
  padding: 4px 16px;
}

.sg-info__faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
}

.sg-info__faq-item summary::-webkit-details-marker { display: none; }
.sg-info__faq-item p { color: var(--sg-muted); padding-bottom: 12px; }

.sg-info__sla {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef3e6;
  color: var(--sg-accent);
  font-size: 0.95rem;
}

.sg-info__form label {
  display: block;
  font-weight: 600;
  margin: 0 0 6px;
  font-size: 0.92rem;
}

.sg-info__form input,
.sg-info__form textarea,
.sg-info__form select {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--sg-border);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  min-height: 46px;
}

.sg-info__form textarea { min-height: 140px; resize: vertical; }

.sg-info__cta {
  padding: clamp(48px, 7vw, 80px) 0;
  background: linear-gradient(160deg, #273b09 0%, #1a2806 100%);
  color: #fff;
}

.sg-info__cta-inner { text-align: center; }
.sg-info__cta h2 { color: #fff; }
.sg-info__cta p { color: rgba(255, 255, 255, 0.82); margin: 0 auto 1.25rem; max-width: 48ch; }

.sg-info__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sg-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sg-info__btn--primary {
  background: var(--sg-yellow);
  color: var(--sg-accent);
}

.sg-info__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.sg-info__card .sg-info__btn--primary {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .sg-info h1 { font-size: 1.6rem; }
  .sg-info,
  .sg-info p,
  .sg-info li,
  .sg-info input,
  .sg-info textarea,
  .sg-info select { font-size: 16px; }
}

/* ===== About page redesign ===== */
.sg-about {
  --sg-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-about__hero {
  padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
  background:
    radial-gradient(ellipse 70% 55% at 8% -10%, rgba(208, 229, 98, 0.28), transparent 58%),
    linear-gradient(180deg, #fbfdf8 0%, #f4f8ee 100%);
}

.sg-about__hero .sg-info__lead {
  margin-top: 0.85rem;
  max-width: none;
}

.sg-about .sg-info__section-head {
  text-align: left;
  max-width: none;
}

.sg-about .sg-info__section-head h2 {
  margin-bottom: 0.65rem;
}

.sg-about .sg-info__lead {
  max-width: none;
}

.sg-about .sg-info__note {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.sg-about .sg-info__inline-cta {
  justify-content: flex-start;
}

.sg-about__audience-list {
  justify-content: flex-start;
}

.sg-about__cta h2,
.sg-about__cta p {
  text-align: left;
}

.sg-about__cta p {
  margin-left: 0;
  max-width: none;
}

.sg-about__cta .sg-info__cta-actions {
  justify-content: flex-start;
}

.sg-about__facts li {
  align-items: flex-start;
  text-align: left;
}

.sg-about__goal {
  padding-top: clamp(28px, 4vw, 40px);
}

.sg-about__goal-panel {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--sg-border);
  box-shadow: 0 8px 28px rgba(13, 19, 33, 0.05);
}

.sg-about__goal-copy h2 { margin-bottom: 0.65rem; }
.sg-about__goal-copy p {
  margin: 0;
  color: #374151;
  max-width: 62ch;
}

.sg-about__goal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.sg-about__goal-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: #f7faf2;
  border: 1px solid rgba(200, 204, 191, 0.45);
}

.sg-about__goal-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  background: var(--sg-yellow);
  color: var(--sg-accent);
  font-weight: 800;
  font-size: 0.82rem;
}

.sg-about__goal-list p {
  margin: 0.15rem 0 0;
  color: #374151;
  line-height: 1.45;
}

.sg-about__mission-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.sg-about__mission-card {
  position: relative;
  padding: 1.45rem 1.3rem 1.4rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--sg-border);
  overflow: hidden;
}

.sg-about__mission-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.sg-about__mission-card--mission::before { background: var(--sg-yellow); }
.sg-about__mission-card--vision::before { background: var(--sg-orange); }

.sg-about__mission-card h3 { margin-top: 0.15rem; }
.sg-about__mission-card p { margin: 0; color: #374151; }

.sg-about__track {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.sg-about__track-item {
  position: relative;
  padding: 1.15rem 1.05rem 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--sg-border);
  box-shadow: 0 4px 16px rgba(13, 19, 33, 0.03);
}

.sg-about__track-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: rgba(208, 229, 98, 0.55);
  color: var(--sg-accent);
  font-weight: 800;
  font-size: 0.78rem;
}

.sg-about__track-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.sg-about__track-item p {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.5;
}

.sg-about__products {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.sg-about__product {
  padding: 1.4rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--sg-border);
  border-top-width: 4px;
}

.sg-about__product--live { border-top-color: var(--sg-orange); }
.sg-about__product--courses { border-top-color: var(--sg-accent); }

.sg-about__product p {
  margin: 0;
  color: #374151;
}

.sg-about__bridge {
  margin-top: 1rem;
  padding: 1.35rem 1.35rem;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(208, 229, 98, 0.18), transparent 55%),
    linear-gradient(135deg, #273b09 0%, #1f3008 55%, #314c0d 100%);
  color: #fff;
}

.sg-about__bridge h3 {
  color: #fff;
  margin: 0 0 0.4rem;
}

.sg-about__bridge p {
  margin: 0;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.sg-about__diff-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.sg-about__diff-card {
  padding: 1.25rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--sg-border);
}

.sg-about__diff-num {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--sg-orange);
}

.sg-about__diff-card p {
  margin: 0;
  color: #4b5563;
}

.sg-about__trust {
  background:
    linear-gradient(180deg, #f2f6ed 0%, #eef3e6 100%);
}

.sg-about__facts {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(200, 204, 191, 0.65);
  background: rgba(200, 204, 191, 0.65);
}

.sg-about__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 1rem 1rem;
  background: #fbfdf8;
}

.sg-about__facts strong {
  font-size: 1.35rem;
  color: var(--sg-accent);
  letter-spacing: -0.02em;
}

.sg-about__facts span {
  font-size: 0.84rem;
  color: var(--sg-muted);
  line-height: 1.35;
}

.sg-about__trust-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.sg-about__trust-card {
  padding: 1.15rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(200, 204, 191, 0.55);
}

.sg-about__trust-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.sg-about__trust-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.5;
}

.sg-about__audience {
  padding-bottom: clamp(48px, 7vw, 72px);
}

.sg-about__audience-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-start;
}

.sg-about__audience-list li {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--sg-border);
  color: var(--sg-accent);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
}

.sg-about .sg-info__btn {
  border-radius: 12px;
  transition: transform 0.2s var(--sg-ease), background 0.2s ease, border-color 0.2s ease;
}

.sg-about .sg-info__btn:hover {
  transform: translateY(-1px);
}

.sg-about .sg-info__btn--outline:hover {
  border-color: rgba(39, 59, 9, 0.4);
  background: #f7faf2;
}

@media (min-width: 768px) {
  .sg-about__goal-panel {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.75rem;
    align-items: start;
  }

  .sg-about__mission-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sg-about__track {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
  }

  .sg-about__track-item {
    min-height: 100%;
  }

  .sg-about__products {
    grid-template-columns: 1fr 1fr;
  }

  .sg-about__diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sg-about__facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .sg-about__trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .sg-about__track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-about .sg-info__btn:hover {
    transform: none;
  }
}

/* ===== Contact page ===== */
.sg-contact .sg-info__crumb {
  margin-bottom: 0.75rem;
}

.sg-contact .sg-info__label {
  margin-bottom: 0.65rem;
}

.sg-contact h1 {
  margin-bottom: 0.45rem;
}

.sg-contact__hero {
  padding: clamp(28px, 4vw, 44px) 0 clamp(20px, 3vw, 28px);
  background:
    radial-gradient(ellipse 70% 55% at 8% -10%, rgba(208, 229, 98, 0.28), transparent 58%),
    linear-gradient(180deg, #fbfdf8 0%, #f4f8ee 100%);
}

.sg-contact__hero .sg-info__lead {
  margin-top: 0.45rem;
  max-width: none;
}

.sg-contact .sg-info__section {
  padding: clamp(24px, 3.5vw, 40px) 0 clamp(36px, 5vw, 56px);
}

.sg-contact__sla {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: baseline;
  margin: 0.85rem 0 0;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  background: #eef3e6;
  border: 1px solid rgba(39, 59, 9, 0.1);
  color: var(--sg-accent);
  font-size: 0.9rem;
  line-height: 1.4;
}

.sg-contact__sla strong {
  font-weight: 700;
}

.sg-contact__sla span {
  color: #3f4a38;
}

.sg-contact__grid {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.sg-contact__panel,
.sg-contact__aside {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  box-shadow: 0 4px 16px rgba(13, 19, 33, 0.03);
}

.sg-contact__panel h2,
.sg-contact__aside h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.sg-contact__aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sg-contact__channel {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sg-border);
}

.sg-contact__channel:first-of-type {
  padding-top: 0;
}

.sg-contact__channel:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sg-contact__channel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted);
}

.sg-contact__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  color: var(--sg-accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid rgba(39, 59, 9, 0.18);
  padding-bottom: 1px;
  line-height: 1.35;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sg-contact__link:hover,
.sg-contact__link:focus-visible {
  color: #1a2806;
  border-bottom-color: var(--sg-orange);
  outline: none;
}

.sg-contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sg-contact__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  background: #f7faf2;
  border: 1px solid rgba(39, 59, 9, 0.14);
  color: var(--sg-accent);
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sg-contact__chip:hover,
.sg-contact__chip:focus-visible {
  background: rgba(208, 229, 98, 0.45);
  border-color: rgba(39, 59, 9, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.sg-contact .sg-info__form label {
  margin: 0 0 4px;
  font-size: 0.88rem;
}

.sg-contact .sg-info__form input,
.sg-contact .sg-info__form textarea,
.sg-contact .sg-info__form select {
  margin-bottom: 0.7rem;
  padding: 0.65rem 0.8rem;
  min-height: 40px;
  border-radius: 8px;
}

.sg-contact .sg-info__form textarea {
  min-height: 110px;
}

.sg-contact .sg-info__caption {
  margin-top: 0.45rem;
}

.sg-contact .sg-info__form .sg-info__btn--primary {
  width: auto;
  min-width: 10.5rem;
  min-height: 42px;
  margin-top: 0.15rem;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.sg-contact .sg-info__form .sg-info__btn--primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.sg-contact__captcha {
  margin: 0.35rem 0 0.85rem;
}

.sg-contact__captcha .g-recaptcha {
  transform-origin: left top;
}

.sg-contact__field-error {
  display: block;
  margin: -0.35rem 0 0.65rem;
  color: #b42318;
  font-size: 0.84rem;
  line-height: 1.35;
}

.sg-contact__alert {
  margin: 0 0 0.9rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.sg-contact__alert--success {
  background: #eef6e4;
  color: #273b09;
  border: 1px solid rgba(39, 59, 9, 0.16);
}

.sg-contact__alert--error {
  background: #fff1f0;
  color: #8a1c12;
  border: 1px solid rgba(180, 35, 24, 0.18);
}

.sg-contact .sg-info__form input.is-invalid,
.sg-contact .sg-info__form textarea.is-invalid,
.sg-contact .sg-info__form select.is-invalid {
  border-color: rgba(180, 35, 24, 0.55);
}

.sg-contact .sg-info__form input:focus-visible,
.sg-contact .sg-info__form textarea:focus-visible,
.sg-contact .sg-info__form select:focus-visible {
  outline: 2px solid rgba(39, 59, 9, 0.35);
  outline-offset: 1px;
  border-color: rgba(39, 59, 9, 0.35);
}

@media (min-width: 900px) {
  .sg-contact__grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-contact__chip:hover,
  .sg-contact__chip:focus-visible {
    transform: none;
  }
}

/* ===== Comparison page ===== */
.sg-compare .sg-info__crumb {
  margin-bottom: 0.75rem;
}

.sg-compare .sg-info__label {
  margin-bottom: 0.65rem;
}

.sg-compare h1 {
  margin-bottom: 0.45rem;
}

.sg-compare__hero {
  padding: clamp(28px, 4vw, 44px) 0 clamp(20px, 3vw, 28px);
  background:
    radial-gradient(ellipse 70% 55% at 8% -10%, rgba(208, 229, 98, 0.28), transparent 58%),
    linear-gradient(180deg, #fbfdf8 0%, #f4f8ee 100%);
}

.sg-compare__hero .sg-info__lead {
  margin-top: 0.45rem;
  max-width: none;
}

.sg-compare__section {
  padding: clamp(28px, 4vw, 48px) 0;
}

.sg-compare__section h2 {
  margin: 0 0 0.85rem;
}

.sg-compare__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--sg-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(13, 19, 33, 0.03);
}

.sg-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
}

.sg-compare__table th,
.sg-compare__table td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid var(--sg-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.sg-compare__table tbody tr:last-child th,
.sg-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.sg-compare__table thead th {
  background: #eef3e6;
  font-weight: 700;
  color: var(--sg-heading);
  font-size: 0.86rem;
}

.sg-compare__table tbody th {
  font-weight: 650;
  color: var(--sg-heading);
  width: 24%;
  background: #fbfdf8;
}

.sg-compare__col-sg {
  background: rgba(208, 229, 98, 0.22) !important;
  font-weight: 700;
  color: var(--sg-accent);
}

.sg-compare__table thead .sg-compare__col-sg {
  background: rgba(208, 229, 98, 0.45) !important;
}

.sg-compare__case-text {
  margin: 0 0 0.85rem;
  color: #374151;
  max-width: none;
  line-height: 1.55;
}

.sg-compare__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.sg-compare__points li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.1rem;
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 10px;
  color: #374151;
  line-height: 1.45;
}

.sg-compare__points li::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 1em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sg-orange);
}

.sg-compare__faq {
  margin-top: 0.25rem;
  display: grid;
  gap: 0.55rem;
}

.sg-compare__faq-item {
  background: #fff;
  border: 1px solid var(--sg-border);
  border-radius: 10px;
  padding: 0 0.95rem;
}

.sg-compare__faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.8rem 0;
  list-style: none;
  color: var(--sg-heading);
  line-height: 1.4;
}

.sg-compare__faq-item summary::-webkit-details-marker {
  display: none;
}

.sg-compare__faq-item summary::after {
  content: '+';
  float: right;
  color: var(--sg-muted);
  font-weight: 700;
}

.sg-compare__faq-item[open] summary::after {
  content: '–';
}

.sg-compare__faq-item p {
  margin: 0;
  padding: 0 0 0.85rem;
  color: var(--sg-muted);
  line-height: 1.5;
}

.sg-compare__cta h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.sg-compare__cta .sg-info__cta-actions {
  justify-content: flex-start;
}

.sg-compare .sg-info__btn {
  border-radius: 10px;
}
