:root {
  --bg: #070b16;
  --card: rgba(255, 255, 255, .045);
  --card2: rgba(255, 255, 255, .07);
  --line: rgba(255, 255, 255, .1);
  --text: #fff;
  --muted: #94a3b8;
  --muted2: #cbd5e1;
  --lime: #bef85a;
  --lime2: #a3e635;
  --sky: #38bdf8;
  --violet: #c4b5fd;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}


/* Header image logo */
.sg-logo-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  text-decoration: none;
}

.sg-logo-img img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 190px;
}

@media (max-width: 1024px) {
  .sg-logo-img img {
    height: 46px;
    max-width: 165px;
  }
}

@media (max-width: 820px) {
  .sg-logo-img img {
    height: 42px;
    max-width: 150px;
  }
}

.sg-page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 18% 8%, rgba(132, 204, 22, .13), transparent 28%), radial-gradient(circle at 82% 18%, rgba(14, 165, 233, .13), transparent 26%), linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px), #070b16;
  background-size: auto, auto, 64px 64px, 64px 64px;
}

.sg-container {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.sg-icon {
  display: inline-grid;
  place-items: center;
  line-height: 0;
}

.sg-icon svg {
  width: 1em;
  height: 1em;
}

.sg-header-wrap {
  position: sticky;
  top: 20px;
  z-index: 50;
  margin: 20px 0 60px;
}

.sg-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 22, .96);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

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

.sg-nav button, .sg-logo {
  border: 0;
  background: transparent;
  color: var(--muted2);
}

.sg-nav button {
  font-size: 14px;
  transition: .2s;
}

.sg-nav button:hover {
  color: var(--lime);
}

.sg-logo {
  text-align: center;
  color: #fff;
}

.sg-logo span, .sg-footer-logo {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: normal;
}

.sg-logo b, .sg-footer-logo b {
  color: var(--lime);
}

.sg-logo small {
  display: block;
  margin-top: 5px;
  color: #718096;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: normal;
}

.sg-header-contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}


.sg-round {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: #e2e8f0;
  transition: .2s;
}

.sg-round:hover {
  background: rgba(255, 255, 255, .1);
}

.sg-round .sg-icon {
  font-size: 17px;
}


.sg-main {
  padding-bottom: 80px;
}

.sg-hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
  padding: 36px 0 88px;
}

.sg-hero-no-video {
  grid-template-columns: minmax(0, 760px);
}

.sg-badge {
  display: inline-flex;
  margin-top: 13px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(190, 248, 90, .22);
  background: rgba(190, 248, 90, .1);
  border-radius: 999px;
  padding: 8px 14px;
  color: #d9ff91;
  font-weight: 700;
  font-size: 13px;
}

.sg-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.sg-hero h1 {
  font-size: clamp(54px, 6.15vw, 54px);
  line-height: 1.05;
  letter-spacing: normal;
  margin: 34px 0 24px;
  max-width: 760px;
  font-weight: 950;
}

.sg-hero-copy>p {
  max-width: 660px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.sg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.sg-btn {
  display: inline-flex;
  margin-top: 13px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: .2s;
}

.sg-btn .sg-icon {
  font-size: 18px;
}

.sg-btn-primary {
  border-color: transparent;
  background: var(--lime);
  color: #07110b;
  box-shadow: 0 16px 34px rgba(190, 248, 90, .19);
}

.sg-btn-primary:hover {
  background: #d2ff7a;
}

.sg-btn-ghost {
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.sg-btn-ghost:hover {
  border-color: rgba(190, 248, 90, .35);
  background: rgba(190, 248, 90, .08);
}

.sg-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sg-trust-row .sg-badge {
  font-size: 12px;
  padding: 7px 11px;
}

.sg-dashboard {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .055);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.sg-dashboard:before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(190, 248, 90, .15) 0%, rgba(190, 248, 90, .07) 42%, transparent 72%);
  border-radius: 50%;
}


.bar-0 {
  background: #fb7185;
}

.bar-1 {
  background: #fb923c;
}

.bar-2 {
  background: #facc15;
}

.bar-3 {
  background: #38bdf8;
}

.bar-4, .bar-5 {
  background: #67e8f9;
}

.bar-6, .bar-7 {
  background: var(--lime);
}

.sg-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.sg-scroll-section {
  scroll-margin-top: 130px;
}

.sg-section h2, .sg-title-center h2, .sg-seo-left h2, .sg-seo-block-two h2, .sg-final-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: normal;
  margin: 0;
  font-weight: 950;
}

.sg-section>h2 {
  margin-bottom: 34px;
}

.sg-section p, .sg-title-center p {
  color: var(--muted2);
  line-height: 1.7;
}

.sg-title-center {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.sg-eyebrow {
  display: block;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: normal;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

.sg-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .18);
}

.sg-card-accent {
  border-color: rgba(190, 248, 90, .36);
  background: rgba(190, 248, 90, .1);
}

.sg-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.sg-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.sg-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  color: #cbd5e1;
  font-size: 14px;
}

.sg-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sg-card li .sg-icon {
  color: var(--lime);
  margin-top: 2px;
}

.sg-why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.sg-why h2 {
  margin-bottom: 16px;
}

.sg-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sg-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sg-small-card .sg-icon {
  font-size: 36px;
  color: var(--lime);
  margin-bottom: 18px;
}


.sg-system-card .sg-icon {
  font-size: 28px;
  color: var(--sky);
  margin-bottom: 14px;
}


.sg-system-center .sg-icon {
  font-size: 48px;
}


.sg-process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.sg-process-step>div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sg-process-step b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: #07110b;
}

.sg-process-step span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--lime), rgba(56, 189, 248, .2));
}

.sg-process-step h3 {
  font-size: 18px;
  margin: 0;
}

.sg-process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.sg-process-step small {
  color: #d9ff91;
}

.sg-scope-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sg-scope-card {
  padding: 22px;
}

.sg-scope-card>.sg-icon {
  font-size: 28px;
  color: var(--lime);
  margin-bottom: 16px;
}

.sg-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sg-audience-card>.sg-icon {
  font-size: 28px;
  color: var(--sky);
  margin-bottom: 16px;
}

.sg-audience-card small {
  display: block;
  margin-top: 18px;
  color: var(--lime);
}

.sg-audience-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.sg-browser {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  margin-bottom: 15px;
}

.sg-browser i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fb7185;
}

.sg-browser i:nth-child(2) {
  background: #facc15;
}

.sg-browser i:nth-child(3) {
  background: var(--lime);
}

.sg-browser small {
  margin-left: 8px;
  color: #64748b;
}

.sg-benefit-card .sg-icon {
  font-size: 32px;
  color: var(--lime);
  margin-bottom: 18px;
}

.sg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sg-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.sg-pricing-card.is-highlighted {
  border-color: rgba(190, 248, 90, .5);
  background: rgba(190, 248, 90, .09);
  box-shadow: none;
}

.sg-recommend {
  position: absolute;
  top: -15px;
  left: 24px;
  background: var(--lime);
  color: #07110b;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: normal;
}

.sg-pricing-card>p {
  color: #d9ff91;
  font-weight: 700;
  text-align: center;
}

.sg-pricing-card h3 {
  font-size: 34px;
  text-align: center;
}

.sg-price {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .2);
  border-radius: 18px;
  padding: 20px;
  margin: 18px 0;
}

.sg-price b {
  display: block;
  font-size: 38px;
  letter-spacing: normal;
}

.sg-price span {
  color: var(--muted);
}

.sg-pricing-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  min-height: 70px;
}


.sg-pricing-note {
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  border-radius: 18px;
  padding: 18px;
  margin: 22px 0 0;
  color: var(--muted);
}

.sg-order-section {
  scroll-margin-top: 130px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.sg-order-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 0;
}

.sg-order-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.sg-order-checks span {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #d8dee9;
}

.sg-order-checks .sg-icon {
  color: var(--lime);
}

.sg-lead-form {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .2);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.sg-lead-form label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-size: 14px;
}

.sg-lead-form input, .sg-lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(2, 6, 23, .45);
  border-radius: 14px;
  color: #fff;
  padding: 14px 16px;
  outline: none;
}

.sg-lead-form textarea {
  min-height: 108px;
  resize: vertical;
}

.sg-lead-form input:focus, .sg-lead-form textarea:focus {
  border-color: rgba(190, 248, 90, .45);
}


.sg-form-status.is-ok {
  color: var(--lime);
}

.sg-form-status.is-error {
  color: #fb7185;
}

.sg-seo-block-one {
  padding: 80px 0 0;
}

.sg-seo-block-one>div {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  border-radius: 30px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  box-shadow: var(--shadow);
}

.sg-seo-left {
  position: relative;
  border-right: 1px solid var(--line);
  padding: 40px;
  background: linear-gradient(135deg, rgba(190, 248, 90, .12), rgba(56, 189, 248, .08), transparent);
}

.sg-seo-left h2 {
  margin: 28px 0 18px;
}

.sg-seo-left p {
  color: #cbd5e1;
  line-height: 1.7;
}

.sg-seo-left>div:last-child {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.sg-seo-left>div:last-child span {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .18);
  border-radius: 16px;
  padding: 13px;
  color: #e2e8f0;
}

.sg-seo-left .sg-icon {
  color: var(--lime);
}

.sg-seo-right {
  padding: 40px;
}

.sg-seo-right>p {
  font-size: 18px;
  line-height: 1.78;
  color: #cbd5e1;
}

.sg-seo-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.sg-seo-callouts article {
  border: 1px solid rgba(190, 248, 90, .2);
  background: rgba(190, 248, 90, .08);
  border-radius: 20px;
  padding: 20px;
}

.sg-seo-callouts article:nth-child(2) {
  border-color: rgba(56, 189, 248, .2);
  background: rgba(56, 189, 248, .08);
}

.sg-seo-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.sg-seo-block-two {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  padding: 28px 0 80px;
}

.sg-expert-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(56, 189, 248, .2);
  background: rgba(56, 189, 248, .09);
  border-radius: 14px;
  color: #bae6fd;
  padding: 10px 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

.sg-number-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .2);
  border-radius: 18px;
  padding: 18px;
  margin-top: 16px;
}

.sg-number-row>b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(56, 189, 248, .1);
  color: var(--sky);
  font-size: 18px;
}

.sg-number-row h3 {
  margin: 0;
}

.sg-number-row p {
  margin-top: 6px;
}

.sg-seo-block-two aside {
  display: grid;
  gap: 24px;
}

.sg-goal-card {
  background: linear-gradient(135deg, rgba(190, 248, 90, .12), transparent);
}

.sg-goal-card>.sg-icon {
  font-size: 42px;
  color: var(--lime);
  margin-bottom: 18px;
}

.sg-check-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  padding: 13px;
  color: #cbd5e1;
  font-size: 14px;
  margin-top: 10px;
}

.sg-check-line .sg-icon {
  color: var(--lime);
  margin-top: 2px;
}

.sg-faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 14px;
}

.sg-faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  border-radius: 20px;
  overflow: hidden;
}

.sg-faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 18px 22px;
  font-weight: 800;
}

.sg-faq-item .sg-icon {
  color: var(--muted);
  transition: .2s;
}

.sg-faq-answer {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0 22px 20px;
  color: #cbd5e1;
  line-height: 1.7;
}

.sg-faq-item.is-open .sg-faq-answer {
  display: block;
}

.sg-faq-item.is-open button .sg-icon {
  transform: rotate(180deg);
  color: var(--lime);
}

.sg-contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

.sg-contact-card {
  display: grid;
  gap: 14px;
}

.sg-contact-card>a {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  border-radius: 18px;
  padding: 16px;
  transition: .2s;
}

.sg-contact-card>a:hover {
  border-color: rgba(190, 248, 90, .38);
  background: rgba(190, 248, 90, .08);
}

.sg-contact-card>a>.sg-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(190, 248, 90, .1);
  color: var(--lime);
  font-size: 22px;
}

.sg-contact-card small {
  display: block;
  color: var(--muted);
}

.sg-contact-card b {
  display: block;
}

.sg-contact-info {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .2);
  border-radius: 18px;
  padding: 18px;
  color: #cbd5e1;
}

.sg-contact-info p {
  margin: 8px 0;
}

.sg-contact-info span {
  color: #64748b;
}


.sg-map-marker>.sg-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lime);
  color: #07110b;
  font-size: 38px;
  box-shadow: 0 0 0 34px rgba(190, 248, 90, .08), 0 0 0 68px rgba(56, 189, 248, .06);
}


.sg-footer {
  padding: 0 0 44px;
}


.sg-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 30px;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.sg-footer-brand {
  min-width: 220px;
}

.sg-footer-grid h4 {
  color: #fff;
  margin: 0 0 12px;
}

.sg-footer-grid p {
  margin: 0 0 10px;
}

.sg-footer-grid li + li {
  margin-top: 5px;
}

.sg-footer-grid a {
  display: inline-block;
  margin-top: 8px;
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sg-footer-contact-text {
  max-width: 280px;
}

.sg-footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}


.sg-mobile-menu, .sg-mobile-bar {
  display: none;
}

@media (max-width:1180px) {
  .sg-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sg-dashboard {
    max-width: 760px;
  }

  .sg-process-grid, .sg-scope-grid, .sg-audience-grid, .sg-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sg-four-grid, .sg-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  
  .sg-why, .sg-order-section, .sg-seo-block-one>div, .sg-seo-block-two, .sg-contact-grid {
    grid-template-columns: 1fr;
  }

  .sg-seo-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  
  
  .sg-desktop-nav {
    display: none;
  }

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

  .sg-header-contacts {
    display: none;
  }

  .sg-header:before {
    content: "";
  }

}

@media (max-width:820px) {
  body {
    padding-bottom: 92px;
  }

  .sg-container {
    width: min(100% - 26px, 1280px);
  }

  .sg-header-wrap {
    top: 10px;
    margin: 12px 0 34px;
  }

  .sg-header {
    padding: 14px;
    border-radius: 22px;
  }

  .sg-logo span {
    font-size: 22px;
  }

  .sg-logo small {
    font-size: 8px;
  }

  .sg-hero {
    padding: 14px 0 60px;
  }

  .sg-hero h1 {
    font-size: clamp(42px, 12.8vw, 42px);
    letter-spacing: normal;
  }

  .sg-hero-copy>p {
    font-size: 16px;
  }

  
  
  
  .sg-section {
    padding: 58px 0;
  }

  .sg-four-grid, .sg-process-grid, .sg-scope-grid, .sg-audience-grid, .sg-benefits-grid, .sg-pricing-grid, .sg-compare-grid, .sg-seo-callouts, .sg-seo-cols {
    grid-template-columns: 1fr;
  }

  
  .sg-order-section {
    padding: 24px;
    border-radius: 24px;
  }

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

  .sg-seo-left, .sg-seo-right {
    padding: 26px;
  }

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

  .sg-mobile-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr 70px 1fr 1fr;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: rgba(7, 11, 22, .98);
    box-shadow: 0 14px 42px rgba(0, 0, 0, .42);
    border-radius: 26px;
    padding: 8px;
  }

  .sg-mobile-bar button, .sg-mobile-bar a {
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
    color: #e2e8f0;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
  }

  .sg-mobile-bar .sg-icon {
    font-size: 18px;
    color: var(--sky);
  }

  .sg-mobile-bar span {
    display: block;
  }

  .sg-mobile-bar .sg-order {
    background: var(--lime);
    color: #07110b;
  }

  .sg-mobile-bar .sg-order .sg-icon {
    color: #07110b;
  }

  .sg-menu-fab {
    width: 66px!important;
    height: 66px!important;
    border-radius: 50%!important;
    background: var(--lime)!important;
    color: #07110b!important;
    margin-top: -34px;
    box-shadow: 0 16px 38px rgba(190, 248, 90, .26);
  }

  .sg-menu-fab i, .sg-menu-fab i:before, .sg-menu-fab i:after {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
    content: "";
  }

  .sg-menu-fab i:before {
    transform: translateY(-8px);
  }

  .sg-menu-fab i:after {
    transform: translateY(6px);
  }

  .sg-mobile-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 96px;
    z-index: 75;
    border: 1px solid var(--line);
    background: rgba(7, 11, 22, .99);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .44);
    border-radius: 28px;
    padding: 16px;
  }

  .sg-mobile-menu.is-open {
    display: block;
  }

  .sg-mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .sg-mobile-menu-head b {
    display: block;
  }

  .sg-mobile-menu-head span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
  }

  .sg-mobile-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #cbd5e1;
    font-size: 26px;
  }

  .sg-mobile-menu nav {
    display: grid;
    gap: 8px;
  }

  .sg-mobile-menu nav button {
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
    color: #e2e8f0;
    text-align: left;
    padding: 14px 16px;
    font-weight: 800;
  }

  .sg-mobile-menu nav button:hover {
    background: rgba(190, 248, 90, .1);
    color: var(--lime);
  }

}

@media (max-width:820px) {
  .sg-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-footer-brand {
    min-width: 0;
  }
}

@media (max-width:560px) {
  .sg-footer-grid {
    grid-template-columns: 1fr;
  }

  .sg-btn {
    width: 100%;
  }

  
  .sg-hero-actions {
    display: grid;
  }


  
  .sg-price b {
    font-size: 32px;
  }

}

/* Smooth FAQ animation */
.sg-faq-item {
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.sg-faq-item:hover {
  border-color: rgba(190, 248, 90, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.sg-faq-item.is-open {
  border-color: rgba(190, 248, 90, 0.32);
  background: rgba(190, 248, 90, 0.055);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.2),
    0 0 34px rgba(190, 248, 90, 0.06);
}

.sg-faq-item button {
  transition:
    color 0.24s ease,
    background 0.24s ease;
}

.sg-faq-item button:hover {
  color: var(--lime);
}

.sg-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid transparent;
  padding: 0 22px;
  color: #cbd5e1;
  line-height: 1.7;
  opacity: 0;
  transition:
    grid-template-rows 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease,
    padding 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.34s ease;
}

.sg-faq-answer > * {
  overflow: hidden;
  margin: 0;
  transform: translateY(-6px);
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-faq-item.is-open .sg-faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  border-top-color: var(--line);
  padding: 18px 22px 22px;
  opacity: 1;
}

.sg-faq-item.is-open .sg-faq-answer > * {
  transform: translateY(0);
}

/* Pricing cards hover animation */
@media (hover: hover) and (pointer: fine) {
  .sg-pricing-card {
    transition:
      transform 0.16s ease,
      border-color 0.16s ease,
      background-color 0.16s ease;
  }

  .sg-pricing-card:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 248, 90, 0.38);
    background: rgba(255, 255, 255, 0.06);
  }

  .sg-pricing-card.is-highlighted:hover {
    border-color: rgba(190, 248, 90, 0.58);
    background: rgba(190, 248, 90, 0.11);
  }

  .sg-pricing-card .sg-price,
  .sg-pricing-card .sg-btn {
    transition: border-color 0.16s ease, background-color 0.16s ease;
  }

  .sg-pricing-card:hover .sg-price {
    border-color: rgba(190, 248, 90, 0.24);
    background: rgba(0, 0, 0, 0.26);
  }

}

/* Lead form modal */
.sg-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.sg-lead-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sg-lead-modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(190, 248, 90, 0.14), transparent 34%),
    rgba(2, 6, 23, 0.92);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.sg-lead-modal.is-open .sg-lead-modal__overlay {
  opacity: 1;
}

.sg-lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(7, 11, 22, 0.97);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.62),
    0 0 60px rgba(190, 248, 90, 0.12);
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.sg-lead-modal.is-open .sg-lead-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.sg-lead-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.sg-lead-modal__close:hover {
  transform: rotate(90deg) scale(1.06);
  border-color: rgba(190, 248, 90, 0.38);
  background: rgba(190, 248, 90, 0.12);
}

.sg-lead-modal__content {
  padding: 34px;
}

.sg-lead-modal__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(190, 248, 90, 0.22);
  border-radius: 999px;
  background: rgba(190, 248, 90, 0.1);
  padding: 8px 12px;
  color: #d9ff91;
  font-size: 12px;
  font-weight: 800;
}

.sg-lead-modal__title {
  margin: 18px 52px 12px 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: normal;
}

.sg-lead-modal__text {
  margin: 0 0 24px;
  color: var(--muted2);
  line-height: 1.75;
}

.sg-lead-modal .sg-lead-form {
  background: rgba(0, 0, 0, 0.22);
}

body.sg-lead-modal-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .sg-lead-modal {
    padding: 12px;
  }

  .sg-lead-modal__dialog {
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .sg-lead-modal__content {
    padding: 24px;
  }

  .sg-lead-modal__title {
    margin-right: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

/* Pricing cards equal layout */
.sg-pricing-grid {
  align-items: stretch;
}

.sg-pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sg-pricing-desc {
  min-height: 78px;
}

.sg-pricing-card ul {
  margin-bottom: 28px;
}

.sg-pricing-card .sg-btn {
  margin-top: auto;
}


/* Custom clean adaptation: SEO + AI solo specialist */
.sg-video-reel {
  min-height: 520px;
}

.sg-video-reel:before {
  right: -70px;
  top: -70px;
  width: 300px;
  height: 300px;
}

.sg-video-frame {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.sg-video-file {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: rgba(7, 11, 22, .76);
}

.sg-video-caption span {
  display: block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.sg-video-caption strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
  color: #fff;
}

.sg-video-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.sg-video-bottom article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.045);
}

.sg-video-bottom small {
  display: block;
  color: var(--muted);
}

.sg-video-bottom b {
  display: block;
  margin-top: 6px;
  color: #fff;
}

.sg-contact-grid-no-map {
  grid-template-columns: .85fr 1.15fr;
}

.sg-contact-brief {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  background:
    radial-gradient(circle at 80% 20%, rgba(190, 248, 90, .14), transparent 28%),
    rgba(255, 255, 255, .045);
}

.sg-contact-brief h3 {
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.sg-brief-list {
  display: grid;
  gap: 12px;
}

.sg-brief-list span {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--muted2);
}

@media (max-width: 1180px) {
  .sg-contact-grid-no-map {
    grid-template-columns: 1fr;
  }

  .sg-video-reel {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .sg-video-reel {
    min-height: auto;
  }

  .sg-video-frame {
    min-height: 360px;
  }

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

  .sg-contact-brief {
    min-height: auto;
  }
}

/* WordPress integration adjustments */
body.admin-bar .sg-header-wrap { top: 52px; }
@media (max-width: 782px) { body.admin-bar .sg-header-wrap { top: 56px; } }
.sg-logo-img.custom-logo-link img, .custom-logo-link img { display:block; width:auto; height:54px; max-width:190px; }
.sg-nav ul, .sg-mobile-menu ul, .sg-footer-grid ul { list-style:none; margin:0; padding:0; }
.sg-nav ul { display:flex; gap:28px; align-items:center; }
.sg-nav a { font-size:14px; color:var(--muted2); transition:.2s; }
.sg-nav a:hover { color:var(--lime); }
.sg-mobile-menu nav ul { display:grid; gap:8px; }
.sg-mobile-menu nav a { display:block; border:0; border-radius:14px; background:rgba(255,255,255,.045); color:#e2e8f0; text-align:left; padding:14px 16px; font-weight:800; }
.sg-mobile-menu nav a:hover { background:rgba(190,248,90,.1); color:var(--lime); }
.sg-lead-form .field { width:100%; border:1px solid var(--line); background:rgba(2,6,23,.45); border-radius:14px; color:#fff; padding:14px 16px; outline:none; }
.sg-lead-form .agree { display:flex!important; gap:10px; align-items:flex-start; color:#cbd5e1; font-size:13px; line-height:1.45; }
.sg-lead-form .agree input { width:auto; margin-top:3px; }
.sg-lead-form .agree a,
.sg-contact-policy a { color:inherit; text-decoration:underline; text-underline-offset:2px; }
.sg-lead-form .agree a:hover,
.sg-contact-policy a:hover { color:var(--lime); }
.sg-lead-form .btn { display:inline-flex; align-items:center; justify-content:center; border-radius:14px; padding:16px 24px; border:1px solid transparent; font-weight:900; background:var(--lime); color:#07110b; }
.sg-lead-form .form-status, .sg-lead-form [data-theme-form-status] { text-align:center; color:#64748b; font-size:13px; margin:0; }
.sg-lead-form .is-success { color:var(--lime); }
.sg-lead-form .is-error, .sg-lead-form .field-error { color:#fb7185; }
.theme-hp { display:none!important; }
.sg-pricing-card .sg-btn { width:100%; }
/*.sg-page-content { padding:50px 0; }*/
.sg-page-content .content-card { border:1px solid var(--line); background:rgba(255,255,255,.045); border-radius:30px; padding:40px; line-height:1.7; }


/* Footer logo */
.sg-footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.sg-footer-logo-link img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 190px;
}

@media (max-width: 820px) {
  .sg-footer-logo-link img {
    height: 42px;
    max-width: 150px;
  }
}

/* Service catalog page */
.sg-catalog-banner-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  margin-top: -50px;
  margin-bottom: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.sg-catalog-banner-hero.has-hero-image {
  background:
    linear-gradient(180deg, rgba(7, 11, 22, .52) 0%, rgba(7, 11, 22, .68) 42%, rgba(7, 11, 22, .88) 100%),
    radial-gradient(circle at 50% 18%, rgba(190, 248, 90, .18), transparent 32%),
    radial-gradient(circle at 50% 72%, rgba(56, 189, 248, .12), transparent 34%),
    var(--sg-catalog-hero-bg);
  background-size: auto, auto, auto, cover;
  background-position: center;
}


.sg-catalog-banner-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.sg-catalog-banner-content .sg-badge {
  margin-inline: auto;
}

.sg-catalog-banner-content h1 {
  max-width: 960px;
  margin: 30px auto 22px;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 1.02;
  font-weight: 950;
}

.sg-catalog-banner-content p {
  max-width: 760px;
  margin: 0 auto;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
}

.sg-catalog-banner-content .sg-hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.sg-banner-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.sg-banner-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  padding: 10px 13px;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 800;
}

.sg-service-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -12px 0 30px;
}

.sg-service-filter a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--muted2);
  padding: 11px 15px;
  font-weight: 800;
  transition: .2s;
}

.sg-service-filter a:hover,
.sg-service-filter a.is-active {
  border-color: rgba(190, 248, 90, .35);
  background: rgba(190, 248, 90, .1);
  color: var(--lime);
}

.sg-service-catalog-grid,
.theme-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.sg-service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: none;
  overflow: hidden;
  contain: paint;
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}

.sg-service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 248, 90, .36);
  background: rgba(255,255,255,.06);
}

.sg-service-tile.is-featured {
  border-color: rgba(190, 248, 90, .5);
  background: rgba(190, 248, 90, .08);
  box-shadow: none;
}

.sg-service-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.sg-service-index {
  color: rgba(255,255,255,.44);
  font-size: 13px;
  font-weight: 900;
}

.sg-service-label {
  border: 1px solid rgba(190, 248, 90, .22);
  background: rgba(190, 248, 90, .1);
  color: #d9ff91;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.sg-service-tile h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
  text-align: center;
}

.sg-service-tile h3 a:hover {
  color: var(--lime);
}

.sg-service-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  text-align: center;
}

.sg-service-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 6px;
}

.sg-service-meta span {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 12px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.sg-service-tile ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted2);
  font-size: 14px;
}

.sg-service-tile li {
  position: relative;
  padding-left: 22px;
}

.sg-service-tile li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.sg-service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 14px 16px;
  font-weight: 900;
  transition: .2s;
}

.sg-service-link:hover {
  border-color: rgba(190, 248, 90, .38);
  background: rgba(190, 248, 90, .1);
  color: var(--lime);
}

.sg-services-empty {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sg-catalog-builder {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(190, 248, 90, .12), transparent 34%),
    rgba(255,255,255,.045);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.sg-catalog-builder-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.sg-catalog-builder-copy p {
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 26px;
}

.sg-catalog-builder-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.sg-catalog-builder-flow div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
}

.sg-catalog-builder-flow b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--lime);
  color: #07110b;
}

.sg-catalog-builder-flow span {
  color: #fff;
  font-weight: 900;
}

.sg-catalog-builder-flow i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), rgba(56,189,248,.2));
}

.sg-service-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sg-service-choice span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--lime);
  font-weight: 900;
  font-size: 13px;
}

.sg-service-choice h3 {
  font-size: 24px;
  line-height: 1.18;
}

.navigation.pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a,
.nav-links span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: var(--muted2);
  font-weight: 900;
}

.nav-links .current,
.nav-links a:hover {
  border-color: rgba(190, 248, 90, .38);
  background: rgba(190, 248, 90, .1);
  color: var(--lime);
}

@media (max-width: 1180px) {
  .sg-service-catalog-grid,
  .theme-services-grid,
  .sg-service-choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sg-catalog-builder-flow {
    grid-template-columns: 1fr;
  }

  .sg-catalog-builder-flow i {
    width: 1px;
    height: 26px;
    margin: auto;
    background: linear-gradient(180deg, var(--lime), rgba(56,189,248,.2));
  }
}

@media (max-width: 820px) {
  .sg-catalog-banner-hero {
    min-height: 560px;
    padding: 72px 18px;
    margin-top: -20px;
    margin-bottom: 60px;
  }

  .sg-catalog-banner-content {
    width: min(100%, calc(100% - 20px));
  }

  .sg-catalog-banner-content h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .sg-service-catalog-grid,
  .theme-services-grid,
  .sg-service-choice-grid {
    grid-template-columns: 1fr;
  }

  .sg-service-tile {
    min-height: auto;
  }

  .sg-catalog-builder {
    padding: 24px;
  }
}

/* Single service page */


.sg-service-quote-card .sg-lead-form {
  margin-top: 22px;
}

.sg-service-intro .sg-card p + p {
  margin-top: 14px;
}

.sg-service-scope-grid .sg-scope-card {
  min-height: 220px;
}

.sg-service-scope-grid .sg-service-index {
  display: inline-flex;
  margin-bottom: 18px;
}


/* SEO service page */
.sg-service-page {
  overflow: visible;
}

.sg-service-plain-hero {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 24px 92px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.sg-service-plain-hero.has-hero-image {
  background:
    radial-gradient(circle at 50% 18%, rgba(190, 248, 90, .17), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(56, 189, 248, .10), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(190, 248, 90, .08), transparent 26%),
    linear-gradient(180deg, rgba(8, 12, 22, .98), rgba(6, 10, 20, 1));
}

.sg-service-plain-hero.has-hero-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 11, 22, .50) 0%, rgba(7, 11, 22, .62) 48%, rgba(7, 11, 22, .82) 100%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    var(--sg-service-hero-image);
  background-size: auto, 64px 64px, 64px 64px, cover;
  background-position: center, 0 0, 0 0, center;
  background-attachment: scroll, scroll, scroll, scroll;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 8%, black 20%, black 78%, rgba(0,0,0,.35) 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 8%, black 20%, black 78%, rgba(0,0,0,.35) 91%, transparent 100%);
  pointer-events: none;
}

.sg-service-plain-hero.has-hero-image:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -150px;
  width: min(1000px, 82vw);
  height: 320px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(7, 11, 22, .5) 0%, rgba(7, 11, 22, .28) 48%, transparent 74%);
  pointer-events: none;
}

.sg-service-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.sg-service-hero-inner .sg-badge {
  margin-inline: auto;
}

.sg-service-hero-inner h1 {
  margin: 30px auto 22px;
  max-width: 940px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: normal;
}

.sg-service-hero-inner .sg-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.sg-service-hero-inner .sg-hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.sg-hero-seo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 34px auto 0;
}

.sg-hero-seo-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--muted2);
  background: rgba(255,255,255,.045);
  font-weight: 850;
  font-size: 13px;
}

.sg-hero-seo-tags span:first-child {
  border-color: rgba(190, 248, 90, .42);
  color: #ecfccb;
  background: rgba(190, 248, 90, .08);
}

.sg-service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.sg-service-strip-card {
  min-height: 132px;
  padding: 24px;
  background: rgba(15, 23, 42, .92);
}

.sg-service-strip-card small {
  display: block;
  color: var(--lime);
  font-weight: 950;
  margin-bottom: 12px;
}

.sg-service-strip-card b {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.18;
}

.sg-section-grid-2 {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.sg-explain-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(190, 248, 90, .12), transparent 36%),
    rgba(255,255,255,.045);
}

.sg-explain-card h2,
.sg-seo-text h2,
.sg-service-modules h2,
.sg-process-service h2,
.sg-result-service h2,
.sg-price-service h2,
.sg-faq-service h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
}

.sg-explain-card p,
.sg-seo-text p {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 16px;
}

.sg-mini-proof {
  display: grid;
  gap: 14px;
}

.sg-mini-proof article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.045);
}

.sg-mini-proof b {
  display: block;
  color: #fff;
  font-size: 21px;
  margin-bottom: 8px;
}

.sg-mini-proof p {
  margin: 0;
  color: var(--muted2);
  line-height: 1.65;
}

.sg-service-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.sg-service-module {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, .08), transparent 38%),
    rgba(255,255,255,.045);
}

.sg-service-module .num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #07110b;
  background: var(--lime);
  font-weight: 950;
}

.sg-service-module h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
}

.sg-service-module p {
  color: var(--muted2);
  line-height: 1.7;
  margin: 0;
}

.sg-seo-text {
  border: 1px solid rgba(190, 248, 90, .22);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 0 0, rgba(190, 248, 90, .14), transparent 34%),
    rgba(190, 248, 90, .045);
}

.sg-seo-text-head {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 40px;
  align-items: start;
}

.sg-seo-text-content {
  columns: 2;
  column-gap: 34px;
}

.sg-seo-text-content p {
  break-inside: avoid;
  margin-top: 0;
}

.sg-seo-text-note {
  margin-top: 28px;
  margin-bottom: 28px;
  border-left: 4px solid var(--lime);
  padding: 18px 22px;
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.055);
  color: #e5e7eb;
  line-height: 1.7;
  font-weight: 750;
}

.sg-process-timeline {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  counter-reset: step;
}

.sg-process-step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.04);
}

.sg-process-step:before {
  counter-increment: step;
  content: "0" counter(step);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(190, 248, 90, .10);
  border: 1px solid rgba(190, 248, 90, .28);
  color: var(--lime);
  font-weight: 950;
}

.sg-process-step h3 {
  margin: 3px 0 8px;
  color: #fff;
  font-size: 22px;
}

.sg-process-step p {
  margin: 0;
  color: var(--muted2);
  line-height: 1.7;
}

.sg-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.sg-result-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.045);
}

.sg-result-item b {
  color: #fff;
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
}

.sg-result-item p {
  color: var(--muted2);
  line-height: 1.65;
  margin: 0;
}


.sg-price-card-main .price {
  margin: 26px 0 8px;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 950;
  line-height: 1;
}

.sg-price-card-main .price span {
  font-size: 19px;
  color: var(--muted2);
}


.sg-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.sg-faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  padding: 20px 22px;
}

.sg-faq-list summary {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.sg-faq-list p {
  color: var(--muted2);
  line-height: 1.7;
  margin: 16px 0 0;
}

@media (max-width: 980px) {
  .sg-service-strip,
  .sg-service-modules-grid,
  .sg-result-grid,
  .sg-section-grid-2,
  .sg-price-layout,
  .sg-seo-text-head {
    grid-template-columns: 1fr;
  }

  .sg-seo-text-content {
    columns: 1;
  }

  .sg-service-strip {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .sg-service-plain-hero {
    min-height: 520px;
    padding: 54px 18px 64px;
  }

  .sg-service-hero-inner h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

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

  

/* Service single integration tweaks */
.sg-service-page .sg-pricing-grid {
  margin-top: 0;
}
.sg-service-text-content p {
  margin: 0 0 16px;
}
.sg-service-text-content p:last-child {
  margin-bottom: 0;
}

/* Projects page v14 */
.sg-projects-page,
.sg-project-single-page {
  overflow: visible;
}

.sg-projects-hero,
.sg-project-single-hero {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 92px 24px 86px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.sg-projects-hero-inner,
.sg-project-single-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 24px));
  margin: 0 auto;
}

.sg-projects-hero .sg-badge,
.sg-project-single-hero .sg-badge {
  margin-inline: auto;
}

.sg-projects-hero h1,
.sg-project-single-hero h1 {
  margin: 30px auto 22px;
  max-width: 980px;
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: .99;
  font-weight: 950;
  letter-spacing: normal;
}

.sg-projects-hero p,
.sg-project-single-hero .sg-lead {
  max-width: 780px;
  margin: 0 auto;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.sg-projects-hero .sg-hero-actions,
.sg-project-single-hero .sg-hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.sg-projects-stats,
.sg-project-single-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: -42px auto 34px;
  position: relative;
  z-index: 3;
}


.sg-projects-stat {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(7, 11, 22, .72);
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}

.sg-projects-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  font-weight: 950;
  word-break: break-word;
}

.sg-projects-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted2);
  line-height: 1.5;
  font-size: 14px;
}

.sg-section-head {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.sg-section-head .sg-badge {
  margin-inline: auto;
}

.sg-section-head h2 {
  margin: 22px 0 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  font-weight: 950;
}

.sg-section-head p {
  margin: 0;
  color: var(--muted2);
  line-height: 1.72;
}

.sg-project-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 28px;
  align-items: stretch;
}

.sg-project-map {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(190, 248, 90, .13), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(56, 189, 248, .12), transparent 26%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(255,255,255,.045);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
  box-shadow: var(--shadow);
}

.sg-project-map-shape {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  overflow: visible;
}

.sg-project-map-rays line {
  stroke: rgba(255,255,255,.16);
  stroke-width: .42;
  vector-effect: non-scaling-stroke;
}

.sg-project-map-outline {
  fill: rgba(255,255,255,.035);
  stroke: rgba(255,255,255,.16);
  stroke-width: .75;
  vector-effect: non-scaling-stroke;
}

.sg-project-map-value {
  fill: rgba(190, 248, 90, .13);
  stroke: var(--lime);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.sg-project-map-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(190,248,90,.38);
  border-radius: 50%;
  background: rgba(7,11,22,.78);
  color: #d9ff91;
  text-align: center;
  font-weight: 950;
  line-height: 1.08;
  box-shadow: 0 0 0 18px rgba(190,248,90,.045), 0 18px 55px rgba(0,0,0,.28);
}

.sg-project-map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(190,248,90,.11), 0 14px 34px rgba(0,0,0,.28);
}

.sg-project-map-pin__count {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border: 1px solid rgba(190,248,90,.4);
  border-radius: 999px;
  background: rgba(7,11,22,.92);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  transform: translate(16px, -16px);
}

.sg-project-map-pin__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  min-width: 200px;
  max-width: 260px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(7, 11, 22, .84);
  color: #fff;
  text-align: center;
  opacity: .96;
}

.sg-project-map-pin__label strong,
.sg-project-direction strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.sg-project-map-pin__label em,
.sg-project-direction span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.sg-project-map-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(190,248,90,.12), transparent 36%),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}

.sg-project-map-card h2 {
  margin: 24px 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.sg-project-map-card p {
  color: var(--muted2);
  line-height: 1.7;
}

.sg-project-map-help {
  border: 1px solid rgba(190,248,90,.2);
  border-radius: 18px;
  padding: 16px;
  background: rgba(190,248,90,.07);
}

.sg-project-directions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.sg-project-direction {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(0,0,0,.18);
}

.sg-project-map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  color: var(--muted2);
  text-align: center;
}

.sg-project-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.sg-project-filter a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--muted2);
  padding: 11px 15px;
  font-weight: 800;
  transition: .2s;
}

.sg-project-filter a:hover,
.sg-project-filter a.is-active {
  border-color: rgba(190, 248, 90, .35);
  background: rgba(190, 248, 90, .1);
  color: var(--lime);
}

.sg-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.sg-project-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  box-shadow: none;
  contain: paint;
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}

.sg-project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 248, 90, .36);
  background: rgba(255,255,255,.06);
}

.sg-project-card-media {
  display: block;
  padding: 18px;
  background: rgba(2, 6, 23, .48);
}

.sg-project-card-screen {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(190,248,90,.16), transparent 28%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    #020617;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.sg-project-card-image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.sg-project-card-lines {
  display: grid;
  gap: 12px;
  padding: 24px 22px 0;
}

.sg-project-card-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(190,248,90,.78), rgba(56,189,248,.42), rgba(255,255,255,.08));
}

.sg-project-card-chart {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 86px;
  border: 1px solid rgba(190,248,90,.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(190,248,90,.24) 35% 38%, transparent 39% 100%),
    rgba(255,255,255,.045);
}

.sg-project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.sg-project-card-tags,
.sg-project-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sg-project-card-tags span,
.sg-project-single-tags span {
  border: 1px solid rgba(190,248,90,.22);
  border-radius: 999px;
  background: rgba(190,248,90,.09);
  color: #d9ff91;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}


.sg-project-card h3 {
  margin: 18px 0 12px;
  font-size: 26px;
  line-height: 1.12;
}

.sg-project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.sg-project-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 24px;
}

.sg-project-card-details div {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 12px;
}

.sg-project-card-details span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.sg-project-card-details strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
}

.sg-project-card-link {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 14px 16px;
  font-weight: 900;
  text-align: center;
  transition: .2s;
}

.sg-project-card-link:hover {
  border-color: rgba(190,248,90,.38);
  background: rgba(190,248,90,.1);
  color: var(--lime);
}

.sg-project-process-grid,
.sg-project-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sg-project-process-card,
.sg-project-result-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 16px 50px rgba(0,0,0,.16);
}

.sg-project-process-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--lime);
  color: #07110b;
  font-weight: 950;
}

.sg-project-process-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
}

.sg-project-process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sg-projects-empty {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background: rgba(255,255,255,.045);
  text-align: center;
}

.sg-project-single-hero.has-image {
  background: #070b16;
}


.sg-project-single-hero.has-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,22,.84), rgba(7,11,22,.62), rgba(7,11,22,.92)),
    radial-gradient(circle at 50% 18%, rgba(190,248,90,.16), transparent 32%);
  z-index: 1;
}


.sg-project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}


.sg-project-result-card strong {
  display: block;
  color: var(--lime);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
}

.sg-project-result-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted2);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .sg-projects-stats,
  .sg-projects-grid,
  .sg-project-process-grid,
  .sg-project-results-grid,
  .sg-project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sg-project-map-grid,
  .sg-project-overview-grid,
  .sg-project-two-col {
    grid-template-columns: 1fr;
  }

  .sg-project-map {
    min-height: 640px;
  }
}

@media (max-width: 820px) {
  .sg-projects-hero,
  .sg-project-single-hero {
    min-height: 520px;
    padding: 64px 18px 72px;
  }

  .sg-projects-hero h1,
  .sg-project-single-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .sg-projects-stats,
  .sg-project-single-stats,
  .sg-projects-grid,
  .sg-project-process-grid,
  .sg-project-results-grid,
  .sg-project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sg-project-map {
    min-height: 720px;
  }

  .sg-project-map-shape {
    inset: 5%;
    width: 90%;
    height: 90%;
  }

  .sg-project-map-card {
    padding: 24px;
  }

  .sg-project-map-pin__label {
    min-width: 156px;
    max-width: 180px;
    padding: 10px 11px;
  }

  .sg-project-card-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .sg-project-map {
    min-height: 760px;
  }

  .sg-project-map-center {
    width: 96px;
    height: 96px;
    font-size: 13px;
  }
}


/* Project detail page v15 */
.sg-project-detail-page {
  overflow: visible;
}

.sg-project-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: 56px 0 70px;
}

.sg-project-detail-hero-copy {
  position: relative;
  z-index: 2;
}

.sg-project-detail-hero h1 {
  margin: 28px 0 22px;
  color: #fff;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1;
  font-weight: 950;
}

.sg-project-detail-hero p {
  margin: 0;
  max-width: 720px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
}

.sg-project-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.sg-project-detail-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  padding: 9px 12px;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 800;
}

.sg-project-detail-hero .sg-hero-actions {
  margin-top: 30px;
}

.sg-project-hero-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.sg-project-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.sg-project-hero-image.has-image > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  object-fit: fill;
  object-position: center;
}

.sg-project-image-placeholder {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 38px;
}

.sg-project-image-placeholder strong {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.sg-project-image-placeholder span {
  color: var(--muted);
  font-size: 18px;
}

.sg-project-hero-image.has-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7,11,22,.84));
  pointer-events: none;
}

.sg-project-photo-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(7, 11, 22, .78);
}

.sg-project-photo-note strong {
  display: block;
  color: #fff;
}

.sg-project-photo-note span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

.sg-project-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 34px;
}

.sg-project-detail-stat {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  padding: 22px;
}

.sg-project-detail-stat strong {
  display: block;
  color: var(--lime);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1;
}

.sg-project-detail-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted2);
  line-height: 1.45;
}

.sg-project-detail-section-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.sg-project-detail-title-card {
  position: sticky;
  top: 124px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 12%, rgba(190,248,90,.12), transparent 30%),
    rgba(255,255,255,.045);
  padding: 34px;
  box-shadow: var(--shadow);
}

.sg-project-detail-title-card h2,
.sg-project-gallery h2,
.sg-project-work h2,
.sg-project-result h2,
.sg-project-text-block h2 {
  margin: 24px 0 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 950;
}

.sg-project-detail-title-card p {
  color: var(--muted2);
  line-height: 1.7;
}

.sg-project-description {
  display: grid;
  gap: 18px;
}

.sg-project-description article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  padding: 26px;
}

.sg-project-description h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
}

.sg-project-description p {
  color: var(--muted2);
  line-height: 1.7;
}

.sg-project-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}

.sg-project-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.045);
}

.sg-project-gallery-item.is-large {
  grid-row: span 2;
  min-height: 660px;
}

.sg-project-gallery-item a,
.sg-project-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.sg-project-gallery-item img {
  object-fit: cover;
  transition: transform .32s ease;
}

.sg-project-gallery-item:hover img {
  transform: scale(1.04);
}

.sg-project-gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(7, 11, 22, .78);
}

.sg-project-gallery-caption b {
  display: block;
  color: #fff;
}

.sg-project-gallery-caption span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

.sg-project-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sg-project-work-card {
  position: relative;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(56,189,248,.08), transparent 48%),
    rgba(255,255,255,.045);
  padding: 26px;
  overflow: hidden;
}

.sg-project-work-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: var(--lime);
  color: #07110b;
  font-weight: 950;
}

.sg-project-work-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.sg-project-work-card p {
  color: var(--muted2);
  line-height: 1.65;
}

.sg-project-result-layout {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 24px;
  align-items: stretch;
}

.sg-project-result-card {
  border: 1px solid rgba(190,248,90,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(190,248,90,.13), transparent 34%),
    rgba(190,248,90,.075);
  padding: 36px;
  box-shadow: var(--shadow);
}

.sg-project-result-card p {
  color: var(--muted2);
  line-height: 1.75;
}

.sg-project-result-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.sg-project-result-list div {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  padding: 14px 16px 14px 42px;
  color: #e2e8f0;
}

.sg-project-result-list div:before {
  content: "";
  position: absolute;
  left: 17px;
  top: 1.2em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.sg-project-side-summary {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.045);
  padding: 30px;
}

.sg-project-side-summary h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 28px;
}

.sg-project-side-summary dl {
  margin: 0;
  display: grid;
}

.sg-project-side-summary div {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.sg-project-side-summary div:last-child {
  border-bottom: 0;
}

.sg-project-side-summary dt {
  color: var(--muted);
  font-size: 13px;
}

.sg-project-side-summary dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.sg-project-text-block {
  border-top: 1px solid rgba(255,255,255,.07);
}

.sg-project-text-block h2 {
  max-width: 820px;
}

.sg-project-text-columns {
  columns: 2;
  column-gap: 44px;
  color: var(--muted2);
  line-height: 1.75;
}

.sg-project-text-columns p:first-child {
  margin-top: 0;
}

.sg-project-related .sg-projects-grid {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .sg-project-detail-hero,
  .sg-project-detail-section-grid,
  .sg-project-result-layout {
    grid-template-columns: 1fr;
  }

  .sg-project-detail-title-card {
    position: relative;
    top: auto;
  }

  .sg-project-hero-image {
    min-height: 440px;
  }

  .sg-project-hero-image img,
  .sg-project-image-placeholder {
    min-height: 440px;
  }

  .sg-project-detail-stats,
  .sg-project-work-grid,
  .sg-project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sg-project-gallery-item.is-large {
    grid-row: span 1;
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .sg-project-detail-hero {
    padding: 30px 0 54px;
  }

  .sg-project-detail-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .sg-project-photo-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .sg-project-detail-stats,
  .sg-project-work-grid,
  .sg-project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sg-project-text-columns {
    columns: 1;
  }
}

/* V16: project polygon hover labels + project detail hero alignment */
.sg-project-map-pin {
  cursor: pointer;
}

.sg-project-map-pin__count,
.sg-project-map-pin__label {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.sg-project-map-pin__count {
  transform: translate(12px, -14px) scale(.86);
}

.sg-project-map-pin__label {
  transform: translateX(-50%) translateY(8px) scale(.96);
}

.sg-project-map-pin:hover,
.sg-project-map-pin:focus-visible {
  z-index: 5;
}

.sg-project-map-pin:hover .sg-project-map-pin__count,
.sg-project-map-pin:focus-visible .sg-project-map-pin__count,
.sg-project-map-pin:hover .sg-project-map-pin__label,
.sg-project-map-pin:focus-visible .sg-project-map-pin__label {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sg-project-map-pin:hover .sg-project-map-pin__count,
.sg-project-map-pin:focus-visible .sg-project-map-pin__count {
  transform: translate(18px, -18px) scale(1);
}

.sg-project-map-pin:hover .sg-project-map-pin__label,
.sg-project-map-pin:focus-visible .sg-project-map-pin__label {
  transform: translateX(-50%) translateY(0) scale(1);
}

.sg-project-hero-image {
  margin-left: 34px;
}

@media (max-width: 1180px) {
  .sg-project-hero-image {
    margin-left: 0;
  }
}
.sg-blog-page {
  overflow: visible;
}

.sg-blog-hero {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 106px 24px 88px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.sg-blog-hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
}

.sg-blog-hero-inner .sg-badge {
  margin-inline: auto;
}

.sg-blog-hero h1 {
  max-width: 960px;
  margin: 30px auto 22px;
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  font-weight: 950;
}

.sg-blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.sg-blog-search-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  width: min(900px, 100%);
  margin: 34px auto 0;
  border: 1px solid rgba(190, 248, 90, .18);
  border-radius: 28px;
  padding: 14px;
  background: rgba(15, 23, 42, .86);
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}

.sg-blog-search-panel input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 22px;
  color: #fff;
  background: rgba(2, 6, 23, .58);
  font: inherit;
  outline: none;
}

.sg-blog-search-panel input::placeholder {
  color: var(--muted);
}

.sg-blog-topics-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.sg-blog-topics-inline span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted2);
  background: rgba(255,255,255,.045);
  font-weight: 850;
  font-size: 13px;
}


.sg-featured-post-content h2,
.sg-blog-list h2,
.sg-blog-topics h2,
.sg-blog-subscribe h2 {
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}


.sg-blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.sg-blog-filter button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--muted2);
  background: rgba(255,255,255,.04);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.sg-blog-filter button.is-active {
  color: #07110b;
  border-color: var(--lime);
  background: var(--lime);
}

.sg-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.sg-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}

.sg-blog-card-image {
  display: block;
  min-height: 220px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}

.sg-blog-card-image img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.sg-blog-card:hover .sg-blog-card-image img {
  transform: scale(1.04);
}

.sg-blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.sg-blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.sg-blog-card-meta span {
  border: 1px solid rgba(190, 248, 90, .22);
  border-radius: 999px;
  padding: 7px 10px;
  color: #ecfccb;
  background: rgba(190, 248, 90, .07);
  font-size: 11px;
  font-weight: 900;
}

.sg-blog-card-meta em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.sg-blog-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
}

.sg-blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.sg-blog-card p {
  margin: 12px 0 18px;
  color: var(--muted2);
  line-height: 1.65;
}

.sg-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
}

.sg-blog-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted2);
  background: rgba(255,255,255,.035);
  font-size: 11px;
  font-weight: 900;
}

.sg-blog-read {
  color: var(--lime);
  text-decoration: none;
  font-weight: 950;
}

.sg-blog-topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.sg-blog-topic-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, .07), transparent 40%),
    rgba(255,255,255,.045);
}

.sg-blog-topic-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: #07110b;
  background: var(--lime);
  font-weight: 950;
}

.sg-blog-topic-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
}

.sg-blog-topic-card p {
  margin: 0;
  color: var(--muted2);
  line-height: 1.7;
}


@media (max-width: 1060px) {
  
  .sg-blog-grid,
  .sg-blog-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .sg-blog-hero {
    min-height: 560px;
    padding: 86px 18px 66px;
  }

  .sg-blog-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .sg-blog-search-panel,
  .sg-blog-grid,
  .sg-blog-topics-grid {
    grid-template-columns: 1fr;
  }

  .sg-blog-search-panel {
    margin-top: 28px;
    padding: 10px;
  }

  }

  

/* Article page */
.sg-article-page {
  overflow: visible;
}

.sg-article-hero {
  position: relative;
  padding: 72px 0 54px;
}

.sg-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 32px;
  align-items: center;
}

.sg-article-hero-copy h1 {
  margin: 28px 0 22px;
  color: #fff;
  font-size: clamp(44px, 6vw, 60px);
  line-height: 1;
  font-weight: 950;
}

.sg-article-hero-copy .lead {
  max-width: 760px;
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
}

.sg-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sg-article-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted2);
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 850;
}

.sg-article-hero-image {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sg-article-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.sg-article-hero-image.has-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 11, 22, .78));
  pointer-events: none;
}

.sg-article-cover-note {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 18px;
  background: rgba(7, 11, 22, .74);
}

.sg-article-cover-note strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.sg-article-cover-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.4;
}

.sg-article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.sg-article-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
}

.sg-article-toc,
.sg-article-author-mini {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: rgba(255,255,255,.045);
}

.sg-article-toc b,
.sg-article-author-mini b {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
}

.sg-article-toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted2);
  text-decoration: none;
  font-weight: 760;
  line-height: 1.4;
}

.sg-article-toc a:hover {
  color: var(--lime);
}

.sg-article-author-mini p {
  margin: 0 0 16px;
  color: var(--muted2);
  line-height: 1.6;
}

.sg-article-body {
  min-width: 0;
  max-width: 100%;
  font-size: 17px;
  line-height: 1.86;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 0, rgba(190, 248, 90, .08), transparent 32%),
    rgba(255,255,255,.04);
}

.sg-article-body h2 {
  margin: 46px 0 18px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
}

.sg-article-body h2:first-child {
  margin-top: 0;
}

.sg-article-body h3 {
  margin: 30px 0 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.14;
}

.sg-article-body p {
  margin: 0 0 20px;
  color: #cbd5e1;
  font-size: inherit;
  line-height: inherit;
}

.sg-article-body ul,
.sg-article-body ol {
  margin: 0 0 24px;
  padding-inline-start: 1.35em;
  list-style-position: outside;
}

.sg-article-body ul {
  list-style-type: disc;
}

.sg-article-body ol {
  list-style-type: decimal;
}

.sg-article-body li {
  display: list-item;
  margin: 0 0 12px;
  color: #dbeafe;
  line-height: 1.72;
}

.sg-article-body li:last-child {
  margin-bottom: 0;
}

.sg-article-body li::before {
  content: none;
}

.sg-article-quote {
  margin: 34px 0;
  border-left: 4px solid var(--lime);
  border-radius: 0 24px 24px 0;
  padding: 24px 28px;
  background: rgba(190, 248, 90, .065);
  color: #ecfccb;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 850;
}

.sg-article-image {
  margin: 38px 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
}

.sg-article-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.sg-article-image figcaption {
  border-top: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.55;
}

.sg-article-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.sg-article-checklist div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.045);
}

.sg-article-checklist b {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.sg-article-checklist span {
  color: var(--muted2);
  line-height: 1.55;
  font-size: 14px;
}

.sg-article-summary {
  border: 1px solid rgba(190, 248, 90, .3);
  border-radius: 30px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(190, 248, 90, .16), transparent 34%),
    rgba(190, 248, 90, .055);
}

.sg-article-summary h2 {
  margin-top: 0;
}

.sg-article-bottom {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 22px;
  margin-top: 28px;
}

.sg-article-cta,
.sg-article-share {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255,255,255,.045);
}

.sg-article-cta h3,
.sg-article-share h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.sg-article-cta p,
.sg-article-share p {
  color: var(--muted2);
  line-height: 1.7;
}

.sg-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sg-share-buttons a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  background: rgba(255,255,255,.04);
}

.sg-related-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.sg-related-article {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,.045);
}

.sg-related-article span {
  color: var(--lime);
  font-weight: 950;
  font-size: 13px;
}

.sg-related-article h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.sg-related-article p {
  margin: 0;
  color: var(--muted2);
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .sg-article-hero-grid,
  .sg-article-layout,
  .sg-article-bottom {
    grid-template-columns: 1fr;
  }

  .sg-article-sidebar {
    position: static;
  }

  .sg-article-hero-image,
  .sg-article-hero-image img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .sg-article-checklist,
  .sg-related-article-grid {
    grid-template-columns: 1fr;
  }

  .sg-article-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .sg-article-hero {
    padding-top: 48px;
  }
}


/* V23 clean blog compatibility fixes */
.sg-blog-filter a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--muted2);
  padding: 11px 15px;
  font-weight: 800;
  transition: .2s;
}
.sg-blog-filter a:hover,
.sg-blog-filter a.is-active {
  border-color: rgba(190, 248, 90, .35);
  background: rgba(190, 248, 90, .1);
  color: var(--lime);
}
.sg-blog-grid-featured {
  max-width: 880px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.sg-blog-card-placeholder,
.sg-article-hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--lime);
  font-weight: 950;
  text-align: center;
  padding: 24px;
}
.sg-blog-card-placeholder {
  background:
    radial-gradient(circle at 65% 20%, rgba(190,248,90,.2), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(56,189,248,.14), transparent 34%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    #020617;
  background-size: auto, auto, 42px 42px, 42px 42px;
}
.sg-article-hero-placeholder {
  min-height: 520px;
  border-radius: 24px;
}
.sg-pagination {
  margin-top: 34px;
}
.sg-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sg-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: var(--muted2);
  font-weight: 900;
  padding: 0 12px;
}
.sg-pagination .page-numbers.current,
.sg-pagination .page-numbers:hover {
  background: rgba(190,248,90,.1);
  color: var(--lime);
  border-color: rgba(190,248,90,.35);
}
.sg-article-toc a.is-child {
  padding-left: 16px;
  opacity: .82;
}
.sg-article-checklist ul {
  margin: 18px 0 0;
}
.sg-article-checklist li {
  list-style: none;
}
.sg-share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 0 14px;
  font-weight: 850;
}
.sg-share-buttons a:hover {
  border-color: rgba(190,248,90,.35);
  color: var(--lime);
  background: rgba(190,248,90,.08);
}


/* V24: blog archive search and homepage form alignment */
.sg-blog-search-panel {
  max-width: 900px;
  margin-inline: auto;
}

.sg-blog-search-panel input {
  text-align: left;
}

.sg-blog-order-section {
  margin-top: 0;
}

.sg-blog-order-section.sg-section {
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .sg-blog-search-panel {
    width: min(100%, 560px);
  }
}


/* Contact page v26: no-map design from contact HTML */
.sg-contact-page {
  overflow: visible;
}

.sg-contact-hero {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 104px 24px 88px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.sg-contact-hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
}

.sg-contact-hero-inner .sg-badge {
  margin-inline: auto;
}

.sg-contact-hero h1 {
  max-width: 920px;
  margin: 30px auto 22px;
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  font-weight: 950;
}

.sg-contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.sg-contact-hero .sg-hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.sg-contact-fast {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.sg-contact-fast-card {
  min-height: 132px;
  padding: 24px;
  background: rgba(15, 23, 42, .92);
}

.sg-contact-fast-card small {
  display: block;
  color: var(--lime);
  font-weight: 950;
  margin-bottom: 12px;
}

.sg-contact-fast-card b {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.18;
}

.sg-contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 24px;
  align-items: start;
}

.sg-contact-form-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 100% 0, rgba(190, 248, 90, .13), transparent 36%),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}

.sg-contact-form-card h2,
.sg-contact-methods h2,
.sg-contact-brief h2,
.sg-contact-faq h2 {
  margin: 18px 0 14px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.sg-contact-form-card p {
  margin: 0 0 26px;
  color: var(--muted2);
  line-height: 1.75;
}

.sg-contact-form {
  display: grid;
  gap: 14px;
}

.sg-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sg-contact-form input,
.sg-contact-form textarea,
.sg-contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(2,6,23,.62);
  color: #fff;
  font: inherit;
  outline: none;
}

.sg-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.sg-contact-form input::placeholder,
.sg-contact-form textarea::placeholder {
  color: var(--muted);
}

.sg-contact-form select {
  appearance: none;
  color: #dbeafe;
}

.sg-contact-form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sg-contact-side {
  display: grid;
  gap: 18px;
}

.sg-contact-side-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}

.sg-contact-side-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.sg-contact-side-card p {
  color: var(--muted2);
  line-height: 1.7;
  margin: 0 0 20px;
}

.sg-contact-list {
  display: grid;
  gap: 12px;
}

.sg-contact-list a,
.sg-contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255,255,255,.04);
  text-decoration: none;
  font-weight: 850;
}

.sg-contact-list small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.sg-contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.sg-contact-method {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, .07), transparent 40%),
    rgba(255,255,255,.045);
}

.sg-contact-method span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: #07110b;
  background: var(--lime);
  font-weight: 950;
}

.sg-contact-method h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
}

.sg-contact-method p {
  margin: 0;
  color: var(--muted2);
  line-height: 1.7;
}

.sg-contact-brief-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.sg-contact-brief-card {
  border: 1px solid rgba(190, 248, 90, .26);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 0 0, rgba(190, 248, 90, .14), transparent 34%),
    rgba(190, 248, 90, .045);
}

.sg-contact-brief-card p {
  color: #cbd5e1;
  line-height: 1.78;
}

.sg-contact-brief-list {
  display: grid;
  gap: 14px;
}

.sg-contact-brief-list article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.045);
}

.sg-contact-brief-list b {
  color: #fff;
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.sg-contact-brief-list p {
  color: var(--muted2);
  line-height: 1.65;
  margin: 0;
}

.sg-contact-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.sg-contact-faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  padding: 20px 22px;
}

.sg-contact-faq-list summary {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.sg-contact-faq-list p {
  color: var(--muted2);
  line-height: 1.7;
  margin: 16px 0 0;
}


@media (max-width: 1060px) {
  .sg-contact-main-grid,
  .sg-contact-brief-layout {
    grid-template-columns: 1fr;
  }

  .sg-contact-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .sg-contact-hero {
    min-height: 560px;
    padding: 86px 18px 66px;
  }

  .sg-contact-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .sg-contact-fast,
  .sg-contact-method-grid,
  .sg-contact-form-row {
    grid-template-columns: 1fr;
  }

  .sg-contact-fast {
    margin-top: 24px;
  }
}
.sg-contact-policy {display:flex; gap:10px; align-items:flex-start; margin:2px 0 0;}
.sg-contact-policy input {width:auto; margin-top:3px; flex:0 0 auto;}
.sg-contact-form .form-status {margin:0; text-align:left;}
.sg-contact-form .form-status.is-success, .sg-contact-form .form-status.is-ok {color:var(--lime);}
.sg-contact-form .form-status.is-error {color:#fb7185;}
.sg-contact-list a > span, .sg-contact-list span > span {min-width:0; overflow-wrap:anywhere;}

/* V27: unified image containment across cards, galleries and hero blocks */
.sg-project-card-screen,
.sg-project-gallery-card,
.sg-project-hero-image,
.sg-project-gallery-item,
.sg-featured-post-image,
.sg-blog-card-image,
.sg-article-hero-image,
.sg-article-image,
.sg-service-plain-hero.has-hero-image {
  overflow: hidden;
}

.sg-project-card-image,
.sg-project-card-screen img,
.sg-project-gallery-card img,
.sg-project-hero-image img,
.sg-project-gallery-item img,
.sg-featured-post-image img,
.sg-blog-card-image img,
.sg-article-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  object-position: center;
}

.sg-project-card-screen,
.sg-blog-card-image {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.sg-project-card-image,
.sg-project-card-screen img,
.sg-blog-card-image img {
  height: 100%;
  min-height: 0;
}

.sg-featured-post-image,
.sg-article-hero-image,
.sg-project-hero-image {
  min-height: 0;
  aspect-ratio: 16 / 11;
}

.sg-featured-post-image img,
.sg-article-hero-image img,
.sg-project-hero-image img {
  min-height: 0;
}

.sg-project-gallery-card,
.sg-project-gallery-item {
  min-height: 0;
}


.sg-project-gallery-item img {
  min-height: 320px;
}

.sg-project-gallery-item.is-large img {
  min-height: 660px;
}

.sg-article-image img,
.sg-article-body img,
.sg-page-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sg-article-image img {
  width: 100%;
  object-fit: contain;
  background: rgba(2, 6, 23, .45);
}

.sg-article-body figure,
.sg-page-content figure {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .sg-featured-post-image,
  .sg-article-hero-image,
  .sg-project-hero-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .sg-project-card-screen,
  .sg-blog-card-image,
  .sg-featured-post-image,
  .sg-article-hero-image,
  .sg-project-hero-image {
    aspect-ratio: 4 / 3;
  }

  .sg-project-gallery-item img,
  .sg-project-gallery-item.is-large img {
    min-height: 280px;
  }
}

/* V28: hierarchical services */
.sg-service-parent-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  margin: -8px 0 14px;
  border: 1px solid rgba(56, 189, 248, .2);
  border-radius: 999px;
  background: rgba(56, 189, 248, .08);
  padding: 7px 11px;
  color: #bae6fd;
  font-size: 12px;
  font-weight: 800;
}

.sg-service-parent-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sg-service-child-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 18px;
  border: 1px solid rgba(190, 248, 90, .16);
  border-radius: 18px;
  background: rgba(190, 248, 90, .055);
  padding: 14px;
}

.sg-service-child-list strong {
  color: #d9ff91;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: normal;
}

.sg-service-child-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .16);
  padding: 10px 12px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 800;
  transition: .2s;
}

.sg-service-child-list a:after {
  content: '→';
  color: var(--lime);
}

.sg-service-child-list a:hover {
  background: rgba(190, 248, 90, .1);
  color: #fff;
}


.sg-service-children-section {
  padding-top: 34px;
}

.sg-service-children-section .sg-section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.sg-service-children-section .sg-section-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.sg-service-children-section .sg-section-head p {
  color: var(--muted2);
  line-height: 1.7;
}

.sg-service-children-grid .sg-service-tile {
  min-height: 360px;
  isolation: isolate;
  contain: paint;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.sg-service-children-grid .sg-service-tile:hover {
  z-index: 3;
}

@media (max-width: 820px) {
  
  .sg-service-child-list a {
    font-size: 13px;
  }
}

/* Global breadcrumbs */
.sg-breadcrumbs-global {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin: 8px 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.sg-breadcrumbs-global a {
  color: #d9ff91;
  transition: .2s;
}

.sg-breadcrumbs-global a:hover {
  color: var(--lime);
}

.sg-breadcrumbs-global__sep {
  color: rgba(203, 213, 225, .55);
}

.sg-breadcrumbs-global__current {
  color: #fff;
}

.sg-service-plain-hero .sg-service-breadcrumbs {
  display: none !important;
}

@media (max-width: 820px) {
  .sg-breadcrumbs-global {
    margin: 0 0 22px;
    font-size: 12px;
  }
}

/* v68: full-width hero architecture without 100vw breakout. */
.sg-main--fullwidth {
  width: 100%;
}

.sg-main--fullwidth > .sg-breadcrumbs-wrap {
  position: relative;
  z-index: 5;
}

.sg-main--fullwidth .sg-breadcrumbs-global {
  position: relative;
  z-index: 5;
}

.sg-page-contained {
  margin-top: var(--sg-site-block-gap);
}

.sg-page-contained > section:first-child {
  margin-top: 0;
}

.sg-page-contained > section + section {
  margin-top: var(--sg-site-block-gap);
}

@media (max-width: 820px) {
  .sg-page-contained {
    margin-top: var(--sg-site-block-gap-mobile);
  }

  .sg-page-contained > section + section {
    margin-top: var(--sg-site-block-gap-mobile);
  }
}

/* v32: breadcrumbs on service catalog archive */
.sg-main.sg-container.sg-page-content > .sg-breadcrumbs-global {
  position: relative;
  z-index: 5;
}

.post-type-archive-universal_service .sg-main.sg-container.sg-page-content > .sg-breadcrumbs-global,
.tax-universal_service_category .sg-main.sg-container.sg-page-content > .sg-breadcrumbs-global {
  margin-top: 0;
  margin-bottom: 24px;
}

.post-type-archive-universal_service .sg-main--fullwidth > .sg-breadcrumbs-wrap .sg-breadcrumbs-global {
  margin-top: 0;
  margin-bottom: 24px;
}

.post-type-archive-universal_service .sg-catalog-banner-hero,
.tax-universal_service_category .sg-catalog-banner-hero {
  margin-top: 0;
}

/* v36: editable desktop header contacts and mobile bar icons */
.sg-header-contact-text {
  display: grid;
  gap: 2px;
  text-align: right;
  line-height: 1.35;
}

.sg-header-contact-link {
  display: block;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.25;
  transition: color .2s ease;
}

.sg-header-contact-link:hover {
  color: var(--lime);
}

.sg-header-contact-email {
  font-size: 13px;
}

.sg-header-hours {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.35;
}

.sg-header-messenger .sg-icon,
.sg-mobile-bar-item .sg-icon {
  overflow: hidden;
}

.sg-ui-icon-img {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
}

.sg-round .sg-ui-icon-img {
  width: 18px;
  height: 18px;
}

.sg-mobile-bar .sg-ui-icon-img {
  width: 19px;
  height: 19px;
}

.sg-mobile-bar button.sg-mobile-bar-item,
.sg-mobile-bar a.sg-mobile-bar-item {
  text-decoration: none;
}

@media (max-width: 1180px) {
  .sg-header-contact-text {
    display: none;
  }
}

/* V2.0.3: project result badge should stay compact; generic span styles in this card must not stretch it */
.sg-project-result-card .sg-badge {
  display: inline-flex;
  width: auto;
  max-width: max-content;
  align-items: center;
}

.sg-project-result-card .sg-badge span {
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 0;
  flex: 0 0 7px;
  color: inherit;
  line-height: 0;
}

.sg-project-result-card .sg-badge + h2 {
  margin-top: 26px;
}

/* V2.0.4: unified spacing between major site blocks */
:root {
  --sg-site-block-gap: 72px;
  --sg-site-block-gap-mobile: 44px;
}

.sg-main > section + section,
.sg-project-detail-page > section + section,
.sg-service-page > section + section,
.sg-contact-page > section + section,
.sg-blog-page > section + section {
  margin-top: var(--sg-site-block-gap);
}

.sg-section {
  padding-top: 0;
  padding-bottom: 0;
}

.sg-project-detail-stats {
  margin-bottom: 0;
}

.sg-project-text-block {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(30px, 5vw, 54px);
  background: radial-gradient(circle at 0 0, rgba(190, 248, 90, .12), transparent 34%), rgba(255,255,255,.045);
}

@media (max-width: 820px) {
  .sg-main > section + section,
  .sg-project-detail-page > section + section,
  .sg-service-page > section + section,
  .sg-contact-page > section + section,
  .sg-blog-page > section + section {
    margin-top: var(--sg-site-block-gap-mobile);
  }

  .sg-section {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Home process: remove service-step square badge conflict, keep circular step number */
.sg-home-process .sg-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sg-home-process .sg-process-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  grid-template-columns: none;
  min-height: 260px;
  padding: 30px;
  border-radius: 26px;
}

.sg-home-process .sg-process-step:before {
  content: none;
  display: none;
}

.sg-home-process .sg-process-step > div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 4px;
}

.sg-home-process .sg-process-step b {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 950;
}

.sg-home-process .sg-process-step span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--lime), rgba(56, 189, 248, .18));
}

.sg-home-process .sg-process-step h3 {
  margin: 0;
  max-width: 260px;
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.sg-home-process .sg-process-step p {
  margin: 0;
  color: var(--muted2);
  font-size: 16px;
  line-height: 1.7;
}

.sg-home-process .sg-process-step small {
  margin-top: auto;
  color: #d9ff91;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .sg-home-process .sg-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .sg-home-process .sg-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sg-home-process .sg-process-step {
    min-height: 0;
    padding: 24px;
    border-radius: 22px;
  }

  .sg-home-process .sg-process-step h3 {
    max-width: none;
    font-size: 24px;
  }

  .sg-home-process .sg-process-step p {
    font-size: 15px;
  }
}

/* V56: first project gallery image uses a responsive 16:9 frame up to 960x540 */
.sg-project-gallery-grid > .sg-project-gallery-item:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  justify-self: center;
  width: min(100%, 960px);
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.sg-project-gallery-grid > .sg-project-gallery-item:first-child a,
.sg-project-gallery-grid > .sg-project-gallery-item:first-child img,
.sg-project-gallery-grid > .sg-project-gallery-item:first-child.is-large img {
  width: 100%;
  height: 100%;
  min-height: 0;
}


/* Rich text from editable description fields. */
.sg-rich-text {
  min-width: 0;
  max-width: 100%;
  color: inherit;
  font: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
}

.sg-rich-text > :first-child {
  margin-top: 0;
}

.sg-rich-text > :last-child {
  margin-bottom: 0;
}

.sg-rich-text a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.sg-rich-text a:hover {
  color: var(--lime);
}

.sg-rich-text ul,
.sg-rich-text ol {
  margin: 1em 0;
  padding-left: 1.4em;
}

.sg-rich-text li + li {
  margin-top: .4em;
}

.sg-rich-text blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid rgba(190, 248, 90, .55);
}

.sg-hero-copy > .sg-home-hero-text {
  max-width: 660px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.sg-project-detail-hero-copy > .sg-project-hero-text {
  max-width: 720px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.sg-service-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  text-align: center;
}

.sg-project-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.sg-blog-card-text {
  margin: 12px 0 18px;
  color: var(--muted2);
  line-height: 1.65;
}

/* Minimal 404 page */
.sg-404 {
  min-height: clamp(440px, 64vh, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 0 72px;
}

.sg-404-code {
  margin: 0;
  color: var(--lime);
  font-size: clamp(132px, 22vw, 340px);
  font-weight: 950;
  line-height: .78;
  letter-spacing: -.075em;
  text-shadow: 0 20px 70px rgba(190, 248, 90, .12);
}

.sg-404-title {
  max-width: 760px;
  margin: 42px auto 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.sg-404-home {
  margin-top: 34px;
}

@media (max-width: 820px) {
  .sg-404 {
    min-height: 58vh;
    padding: 18px 0 80px;
  }

  .sg-404-code {
    font-size: clamp(120px, 42vw, 210px);
  }

  .sg-404-title {
    max-width: 520px;
    margin-top: 30px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .sg-404-home {
    width: 100%;
    max-width: 320px;
    margin-top: 28px;
  }
}

/* v74 performance: lighter visual effects on touch/mobile devices. */
@media (max-width: 820px), (hover: none), (pointer: coarse) {
  :root {
    --shadow: 0 14px 38px rgba(0, 0, 0, .28);
  }

  .sg-service-tile,
  .sg-project-card,
  .sg-project-gallery-item img,
  .sg-blog-card-image img,
  .sg-pricing-card,
  .sg-pricing-card .sg-price,
  .sg-pricing-card .sg-btn,
  .sg-faq-answer,
  .sg-faq-answer > * {
    transition: none;
  }

  .sg-service-tile:hover,
  .sg-project-card:hover,
  .sg-pricing-card:hover,
  .sg-project-gallery-item:hover img,
  .sg-blog-card:hover .sg-blog-card-image img {
    transform: none;
  }
}

/* v85: restore section rhythm where intervening markup bypasses generic sibling rules. */
.sg-main > #faq + script[type="application/ld+json"] + #contact-block,
.sg-article-bottom + .sg-related-posts {
  margin-top: var(--sg-site-block-gap);
}

/* v89: compact informational cookie notice; it does not gate analytics. */
.sg-cookie-notice {
  position: fixed;
  z-index: 10000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: #202124;
  color: #f5f5f5;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .4);
}

.sg-cookie-notice[hidden] {
  display: none;
}

.sg-cookie-notice__content {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  min-width: 0;
  font-size: 15px;
  line-height: 1.5;
}

.sg-cookie-notice__message {
  overflow-wrap: anywhere;
}

.sg-cookie-notice__link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sg-cookie-notice__link:hover,
.sg-cookie-notice__link:focus-visible {
  color: var(--lime);
}

.sg-cookie-notice__button {
  flex: 0 0 auto;
  min-width: 128px;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.sg-cookie-notice__button:hover,
.sg-cookie-notice__button:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  color: #111;
}

@media (max-width: 640px) {
  .sg-cookie-notice {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
    gap: 14px;
    width: calc(100% - 24px);
    padding: 16px;
    border-radius: 14px;
  }

  .sg-cookie-notice__content {
    font-size: 14px;
  }

  .sg-cookie-notice__button {
    min-width: 104px;
  }
}

@media (max-width: 820px) {
  .sg-main > #faq + script[type="application/ld+json"] + #contact-block,
  .sg-article-bottom + .sg-related-posts {
    margin-top: var(--sg-site-block-gap-mobile);
  }
}
