:root {
  --sg-bg-primary: #141414;
  --sg-bg-secondary: #1a1a1a;
  --sg-bg-card: #212121;
  --sg-bg-card-hover: #272727;
  --sg-border: #2c2c2c;
  --sg-border-light: #252525;
  --sg-text-primary: #fafafa;
  --sg-text-secondary: #9a9a9a;
  --sg-text-tertiary: #636363;
  --sg-accent: #0fb983;
  --sg-accent-hover: #0da070;
  --sg-accent-muted: rgba(15, 185, 131, 0.12);
  --sg-radius-sm: 6px;
  --sg-radius-md: 12px;
  --sg-radius-lg: 20px;
  --sg-radius-xl: 100px;
  --sg-font: 'Geist', sans-serif;
}

/* =====================
   FAQ SECTION ON INDEX
   ===================== */

.sg-faq-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 80px;
  padding: 0 16px 80px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.sg-faq-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.sg-faq-h1 {
  font-family: var(--sg-font);
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  color: var(--sg-text-primary);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

@media (min-width: 600px) {
  .sg-faq-h1 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.8px;
  }
}

@media (min-width: 900px) {
  .sg-faq-h1 {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -1px;
  }
}

.sg-faq-subtitle {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  text-align: center;
  margin: 0 0 40px;
}

@media (min-width: 600px) {
  .sg-faq-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

.sg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.sg-faq-item {
  background: var(--sg-bg-card);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.sg-faq-item:hover {
  border-color: #3a3a3a;
}

.sg-faq-item.sg-faq-open {
  border-color: rgba(15, 185, 131, 0.3);
}

.sg-faq-question {
  font-family: var(--sg-font);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: var(--sg-text-primary);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 80ms ease-in-out, color 150ms ease;
  margin: 0;
}

@media (min-width: 600px) {
  .sg-faq-question {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 24px;
  }
}

.sg-faq-question:hover {
  background: var(--sg-bg-card-hover);
  color: var(--sg-text-primary);
}

.sg-faq-item.sg-faq-open .sg-faq-question {
  color: var(--sg-accent);
}

.sg-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--sg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-text-secondary);
  transition: transform 300ms ease, border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.sg-faq-item.sg-faq-open .sg-faq-icon {
  transform: rotate(180deg);
  border-color: var(--sg-accent);
  color: var(--sg-accent);
  background: var(--sg-accent-muted);
}

.sg-faq-icon svg {
  width: 10px;
  height: 10px;
  display: block;
}

.sg-faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms ease;
  opacity: 0;
}

.sg-faq-item.sg-faq-open .sg-faq-answer-wrap {
  max-height: 600px;
  opacity: 1;
}

.sg-faq-answer {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  padding: 0 20px 20px;
  margin: 0;
  border-top: 1px solid var(--sg-border);
  padding-top: 16px;
}

@media (min-width: 600px) {
  .sg-faq-answer {
    font-size: 15px;
    line-height: 24px;
    padding: 16px 24px 24px;
  }
}

.sg-faq-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.sg-faq-link-btn {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: var(--sg-text-secondary);
  background: transparent;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-xl);
  padding: 10px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 80ms ease-in-out, border-color 200ms ease, color 150ms ease;
}

.sg-faq-link-btn:hover {
  color: var(--sg-text-primary);
  border-color: #4a4a4a;
  background: var(--sg-bg-card);
  text-decoration: none;
}

.sg-faq-link-btn.sg-faq-link-primary {
  color: var(--sg-accent);
  border-color: rgba(15, 185, 131, 0.4);
  background: var(--sg-accent-muted);
}

.sg-faq-link-btn.sg-faq-link-primary:hover {
  background: rgba(15, 185, 131, 0.2);
  border-color: var(--sg-accent);
}

/* =====================
   SUBPAGE SHARED LAYOUT
   ===================== */

.sg-page {
  min-height: 100vh;
  background-color: var(--sg-bg-primary);
  color: var(--sg-text-primary);
  font-family: var(--sg-font);
  display: flex;
  flex-direction: column;
  position: relative;
}

.sg-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../stars.svg");
  background-repeat: repeat;
  background-size: 100%;
  pointer-events: none;
  z-index: 0;
}

.sg-page-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* SUBPAGE HEADER */

.sg-header {
  position: sticky;
  top: 0;
  z-index: 149;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--sg-border);
  width: 100%;
}

.sg-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .sg-header-inner {
    padding: 0 24px;
  }
}

.sg-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.sg-header-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.sg-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sg-nav-link {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: var(--sg-text-secondary);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--sg-radius-sm);
  transition: background 80ms ease-in-out, color 150ms ease;
  white-space: nowrap;
}

.sg-nav-link:hover {
  color: var(--sg-text-primary);
  text-decoration: none;
}

.sg-nav-link.sg-nav-active {
  color: var(--sg-text-primary);
  background: rgba(250, 250, 250, 0.06);
}

.sg-header-cta {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #141414;
  background: var(--sg-text-primary);
  border: none;
  border-radius: var(--sg-radius-xl);
  padding: 9px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background 80ms ease-in-out;
  white-space: nowrap;
  flex-shrink: 0;
}

.sg-header-cta:hover {
  background: var(--sg-accent);
  color: #141414;
  text-decoration: none;
}

/* SUBPAGE FOOTER */

.sg-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--sg-border);
  margin-top: 64px;
}

.sg-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .sg-footer-inner {
    padding: 24px 24px;
  }
}

.sg-footer-copy {
  font-family: var(--sg-font);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--sg-text-secondary);
}

.sg-footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sg-footer-link {
  font-family: var(--sg-font);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}

.sg-footer-link:hover {
  color: var(--sg-text-primary);
  text-decoration: underline;
}

/* =====================
   SUBPAGE MAIN CONTENT
   ===================== */

.sg-main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 48px 16px 80px;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 600px) {
  .sg-main {
    padding: 64px 16px 100px;
  }
}

@media (min-width: 900px) {
  .sg-main {
    padding: 80px 24px 120px;
  }
}

.sg-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.sg-container-wide {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* =====================
   PAGE HEADINGS
   ===================== */

.sg-page-eyebrow {
  font-family: var(--sg-font);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: var(--sg-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.sg-page-title {
  font-family: var(--sg-font);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: var(--sg-text-primary);
  letter-spacing: -0.6px;
  margin: 0 0 16px;
}

@media (min-width: 600px) {
  .sg-page-title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.8px;
  }
}

@media (min-width: 900px) {
  .sg-page-title {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}

.sg-page-lead {
  font-family: var(--sg-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  margin: 0 0 40px;
  max-width: 600px;
}

@media (min-width: 900px) {
  .sg-page-lead {
    font-size: 18px;
    line-height: 28px;
  }
}

/* =====================
   CONTENT SECTIONS
   ===================== */

.sg-section {
  margin-bottom: 48px;
}

.sg-section:last-child {
  margin-bottom: 0;
}

.sg-section-title {
  font-family: var(--sg-font);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--sg-text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

@media (min-width: 600px) {
  .sg-section-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.sg-section-body {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--sg-text-secondary);
}

@media (min-width: 600px) {
  .sg-section-body {
    font-size: 15px;
    line-height: 26px;
  }
}

.sg-section-body p {
  margin: 0 0 16px;
}

.sg-section-body p:last-child {
  margin-bottom: 0;
}

/* =====================
   CARD COMPONENTS
   ===================== */

.sg-card {
  background: var(--sg-bg-card);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 24px;
  box-sizing: border-box;
}

.sg-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 48px;
}

@media (min-width: 600px) {
  .sg-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .sg-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-card-title {
  font-family: var(--sg-font);
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: var(--sg-text-primary);
  margin: 0 0 8px;
}

.sg-card-body {
  font-family: var(--sg-font);
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  margin: 0;
}

.sg-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sg-accent-muted);
  border: 1px solid rgba(15, 185, 131, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.sg-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--sg-accent);
}

/* =====================
   FAQ PAGE SPECIFIC
   ===================== */

.sg-faq-page-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}

.sg-faq-page-item {
  background: var(--sg-bg-card);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.sg-faq-page-item:hover {
  border-color: #3a3a3a;
}

.sg-faq-page-item.sg-faq-open {
  border-color: rgba(15, 185, 131, 0.3);
}

.sg-faq-page-question {
  font-family: var(--sg-font);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: var(--sg-text-primary);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 80ms ease-in-out, color 150ms ease;
  margin: 0;
}

@media (min-width: 600px) {
  .sg-faq-page-question {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 24px;
  }
}

.sg-faq-page-question:hover {
  background: var(--sg-bg-card-hover);
}

.sg-faq-page-item.sg-faq-open .sg-faq-page-question {
  color: var(--sg-accent);
}

.sg-faq-page-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--sg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-text-secondary);
  transition: transform 300ms ease, border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.sg-faq-page-item.sg-faq-open .sg-faq-page-icon {
  transform: rotate(180deg);
  border-color: var(--sg-accent);
  color: var(--sg-accent);
  background: var(--sg-accent-muted);
}

.sg-faq-page-icon svg {
  width: 10px;
  height: 10px;
  display: block;
}

.sg-faq-page-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms ease;
  opacity: 0;
}

.sg-faq-page-item.sg-faq-open .sg-faq-page-answer-wrap {
  max-height: 800px;
  opacity: 1;
}

.sg-faq-page-answer {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  padding: 0 20px 20px;
  margin: 0;
  border-top: 1px solid var(--sg-border);
  padding-top: 16px;
}

@media (min-width: 600px) {
  .sg-faq-page-answer {
    font-size: 15px;
    line-height: 24px;
    padding: 16px 24px 24px;
  }
}

/* =====================
   ABOUT PAGE SPECIFIC
   ===================== */

.sg-about-hero {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--sg-border);
  margin-bottom: 48px;
}

.sg-about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

@media (min-width: 600px) {
  .sg-about-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sg-about-stat {
  background: var(--sg-bg-card);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.sg-about-stat-value {
  font-family: var(--sg-font);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--sg-accent);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

@media (min-width: 600px) {
  .sg-about-stat-value {
    font-size: 28px;
    line-height: 34px;
  }
}

.sg-about-stat-label {
  font-family: var(--sg-font);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  display: block;
}

.sg-about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 48px;
}

@media (min-width: 600px) {
  .sg-about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sg-about-team-card {
  background: var(--sg-bg-card);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
}

.sg-about-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 185, 131, 0.3), rgba(15, 185, 131, 0.05));
  border: 1px solid rgba(15, 185, 131, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--sg-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--sg-accent);
}

.sg-about-team-info {
  flex: 1;
  min-width: 0;
}

.sg-about-team-name {
  font-family: var(--sg-font);
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: var(--sg-text-primary);
  margin: 0 0 2px;
}

.sg-about-team-role {
  font-family: var(--sg-font);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  margin: 0;
}

/* =====================
   CTA / BUTTON STYLES
   ===================== */

.sg-btn {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: var(--sg-radius-xl);
  padding: 11px 20px;
  transition: background 80ms ease-in-out, color 150ms ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.sg-btn-primary {
  background: var(--sg-text-primary);
  color: #141414;
}

.sg-btn-primary:hover {
  background: var(--sg-accent);
  color: #141414;
  text-decoration: none;
}

.sg-btn-secondary {
  background: transparent;
  color: var(--sg-text-secondary);
  border: 1px solid var(--sg-border);
}

.sg-btn-secondary:hover {
  color: var(--sg-text-primary);
  border-color: #4a4a4a;
  background: var(--sg-bg-card);
  text-decoration: none;
}

.sg-btn-accent {
  background: var(--sg-accent-muted);
  color: var(--sg-accent);
  border: 1px solid rgba(15, 185, 131, 0.3);
}

.sg-btn-accent:hover {
  background: rgba(15, 185, 131, 0.2);
  border-color: var(--sg-accent);
  text-decoration: none;
}

.sg-btn-lg {
  font-size: 16px;
  line-height: 24px;
  padding: 14px 28px;
}

.sg-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =====================
   DIVIDER
   ===================== */

.sg-divider {
  border: none;
  border-top: 1px solid var(--sg-border);
  margin: 48px 0;
}

/* =====================
   ACCENT TEXT
   ===================== */

.sg-accent-text {
  color: var(--sg-accent);
}

.sg-muted-text {
  color: var(--sg-text-secondary);
}

/* =====================
   BREADCRUMB
   ===================== */

.sg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sg-font);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sg-breadcrumb a {
  color: var(--sg-text-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}

.sg-breadcrumb a:hover {
  color: var(--sg-text-primary);
}

.sg-breadcrumb-sep {
  color: var(--sg-text-tertiary);
  font-size: 11px;
}

.sg-breadcrumb-current {
  color: var(--sg-text-primary);
}

/* =====================
   TAG / BADGE
   ===================== */

.sg-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--sg-font);
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(15, 185, 131, 0.12);
  color: var(--sg-accent);
  border: 1px solid rgba(15, 185, 131, 0.2);
}

/* =====================
   TIMELINE / MILESTONES
   ===================== */

.sg-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}

.sg-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--sg-border);
}

.sg-timeline-item {
  position: relative;
  padding: 0 0 28px 24px;
}

.sg-timeline-item:last-child {
  padding-bottom: 0;
}

.sg-timeline-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sg-accent);
  border: 2px solid var(--sg-bg-primary);
  box-sizing: border-box;
}

.sg-timeline-date {
  font-family: var(--sg-font);
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  color: var(--sg-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sg-timeline-title {
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--sg-text-primary);
  margin: 0 0 4px;
}

.sg-timeline-body {
  font-family: var(--sg-font);
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: var(--sg-text-secondary);
  margin: 0;
}

/* =====================
   RESPONSIVE UTILITIES
   ===================== */

@media (max-width: 599px) {
  .sg-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 600px) {
  .sg-hide-desktop {
    display: none !important;
  }
}

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

.sg-mt-0 { margin-top: 0; }
.sg-mt-8 { margin-top: 8px; }
.sg-mt-16 { margin-top: 16px; }
.sg-mt-24 { margin-top: 24px; }
.sg-mt-32 { margin-top: 32px; }
.sg-mt-48 { margin-top: 48px; }
.sg-mb-0 { margin-bottom: 0; }
.sg-mb-8 { margin-bottom: 8px; }
.sg-mb-16 { margin-bottom: 16px; }
.sg-mb-24 { margin-bottom: 24px; }
.sg-mb-32 { margin-bottom: 32px; }
.sg-mb-48 { margin-bottom: 48px; }