@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-top: 111px;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
p { margin-bottom: .85em; }
p:last-child { margin-bottom: 0; }
button { cursor: pointer; font-family: inherit; }
svg { display: inline-block; overflow: hidden; flex-shrink: 0; }
select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; color: #111; line-height: 1.2; }

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --green:  #3aaa6e;
  --green2: #2d9460;
  --black:  #111111;
  --dark:   #1a1a2e;
  --navy:   #111827;
  --border: #e0e0e0;
  --bg:     #f5f6f7;
  --white:  #ffffff;
  --fh:     'Montserrat', sans-serif;
  --fb:     'Open Sans', sans-serif;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.sgg-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}
.sgg-label {
  display: block;
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.sgg-center { text-align: center; }
.sgg-section { padding: 80px 0; }
.sgg-section-bg { background: #f7f8f7; }
.sgg-section-head { margin-bottom: 48px; }
.sgg-section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  margin-top: 8px;
}
.sgg-section-head.sgg-center h2 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
============================================================ */
.sgg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--fh);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: all .22s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.sgg-btn-outline {
  color: var(--green);
  border-color: var(--green);
  background: transparent;
}
.sgg-btn-outline:hover { background: var(--green); color: #fff; }
.sgg-btn-green {
  background: var(--green);
  color: #fff !important;
  border-color: var(--green);
}
.sgg-btn-green:hover { background: var(--green2); border-color: var(--green2); }

/* ============================================================
   HEADER
============================================================ */
#sgg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 1px 0 #e8e8e8;
}

/* Top bar */
.sgg-topbar {
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
  padding: 7px 0;
}
.sgg-topbar .sgg-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.sgg-topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .77rem;
  color: #555;
  transition: color .2s;
}
.sgg-topbar-item svg { width: 13px; height: 13px; color: var(--green); }
.sgg-topbar-item a { color: #555; }
.sgg-topbar-item:hover, .sgg-topbar-item a:hover { color: var(--green); }

/* Header main row */
.sgg-header-main .sgg-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 20px;
}

/* Logo */
.sgg-logo img { height: 36px; width: auto; display: block; }
.sgg-logo .custom-logo { height: 36px; width: auto; }

/* Nav */
.sgg-nav-wrap { display: flex; align-items: center; gap: 0; }
.sgg-nav { display: flex; align-items: center; list-style: none; }
.sgg-nav > li { position: relative; }
.sgg-nav > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 10px 13px;
  font-family: var(--fh);
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.sgg-nav > li > a:hover,
.sgg-nav > li.current-menu-item > a,
.sgg-nav > li.current-page-ancestor > a {
  color: var(--green);
  border-bottom-color: var(--green);
}
.sgg-nav > li.menu-item-has-children > a::after {
  content: '▾';
  font-size: .6rem;
  opacity: .6;
  margin-left: 2px;
}
/* Dropdown */
.sgg-nav .sub-menu {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 230px;
  border-top: 2px solid var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: all .18s;
  z-index: 100;
  list-style: none;
}
.sgg-nav > li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sgg-nav .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--fh);
  font-size: .77rem;
  font-weight: 500;
  color: #444;
  border-bottom: 1px solid #f3f3f3;
  transition: all .15s;
}
.sgg-nav .sub-menu li a:hover { color: var(--green); padding-left: 22px; background: #f9fdf9; }

/* Header CTA */
.sgg-header-cta {
  margin-left: 16px;
  padding: 11px 20px;
  background: var(--green);
  color: #fff !important;
  font-family: var(--fh);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  flex-shrink: 0;
  transition: background .2s;
  white-space: nowrap;
}
.sgg-header-cta:hover { background: var(--green2); color: #fff !important; }

/* Mobile toggle */
.sgg-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.sgg-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: all .2s; }
.sgg-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sgg-menu-toggle.open span:nth-child(2) { opacity: 0; }
.sgg-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
============================================================ */
/* ── HERO ── */
#sgg-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 600px;
  overflow: hidden;
}
.sgg-hero-text-col {
  background: #eff2ef;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 600px;
}
/* Diagonal edge into photo */
.sgg-hero-text-col::after {
  content: '';
  position: absolute;
  top: 0; right: -40px; bottom: 0;
  width: 80px;
  background: #eff2ef;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  z-index: 3;
}
.sgg-hero-content {
  padding: 70px 56px 70px 64px;
  max-width: 520px;
  margin-left: auto;
  position: relative;
  z-index: 4;
  width: 100%;
}
.sgg-hero-h1 {
  font-family: var(--fh);
  font-size: 4.6rem;
  font-weight: 900;
  color: var(--black);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.sgg-hero-h1 .dot { color: var(--green); }
.sgg-hero-sub {
  font-size: .94rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}
/* Badges — horizontal row matching screenshot */
.sgg-hero-badges {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.sgg-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sgg-badge svg { color: var(--green); }
.sgg-badge-label {
  font-family: var(--fh);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  color: #555;
  line-height: 1.4;
}
/* Hero photo — fills full column height using background */
.sgg-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.sgg-hero-photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ============================================================
   PRODUCTS SECTION (homepage grid)
============================================================ */
#sgg-products {
  padding: 80px 0;
  background: #fff;
}
#sgg-products .sgg-section-head {
  text-align: center;
  margin-bottom: 48px;
}
#sgg-products .sgg-section-head h2 { font-size: 2rem; font-weight: 800; }
.sgg-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.sgg-product-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s;
  background: #fff;
}
.sgg-product-card:last-child { border-right: 1px solid var(--border); }
.sgg-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.10); z-index: 2; }
.sgg-product-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.sgg-product-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sgg-product-card:hover .sgg-product-img img { transform: scale(1.05); }
.sgg-product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sgg-product-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.sgg-product-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.sgg-product-title-row h3 {
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--black);
  line-height: 1.35;
}
.sgg-product-body p {
  font-size: .81rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.sgg-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: auto;
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.sgg-product-link span {
  display: inline-block;
  transition: transform .2s;
}
.sgg-product-link:hover { gap: 12px; color: var(--green); }
.sgg-product-link:hover span { transform: translateX(4px); }

/* ============================================================
   ABOUT SECTION
============================================================ */
#sgg-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.sgg-about-text {
  background: #fff;
  display: flex;
  align-items: center;
}
.sgg-about-inner {
  padding: 80px 60px 80px 80px;
  max-width: 560px;
}
.sgg-about-inner h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.sgg-about-inner > p {
  color: #555;
  font-size: .93rem;
  margin-bottom: 24px;
}
.sgg-checklist { margin-bottom: 32px; }
.sgg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #444;
  padding: 5px 0;
}
.sgg-checklist li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.sgg-about-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.sgg-about-photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ============================================================
   STATS SECTION
============================================================ */
#sgg-stats {
  background: #f7f8f7;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sgg-stats-standalone { padding: 60px 0; background: #f7f8f7; border-top: 1px solid var(--border); }
.sgg-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sgg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid #ddd;
}
.sgg-stat:last-child { border-right: none; }
.sgg-stat svg { color: var(--green); margin-bottom: 14px; }
.sgg-stat-number {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.sgg-stat-label {
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #666;
}

/* ============================================================
   CTA SECTION
============================================================ */
#sgg-cta {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background-color: #111827;
}
.sgg-cta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(17,24,39,.90) 0%, rgba(17,24,39,.80) 50%, rgba(17,24,39,.65) 100%);
  z-index: 1;
}
.sgg-cta-body {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
.sgg-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sgg-cta-left .sgg-label { color: var(--green); }
.sgg-cta-left h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.sgg-cta-left p { color: rgba(255,255,255,.75); font-size: .93rem; max-width: 420px; }
.sgg-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.sgg-cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.sgg-cta-phone svg { color: var(--green); }
.sgg-cta-phone a { color: #fff; font-weight: 700; }
.sgg-cta-phone a:hover { color: var(--green); }

/* ============================================================
   FOOTER
============================================================ */
#sgg-footer { background: #111; color: #aaa; }

/* ── Product cards strip ─────────────────────────────────── */
.sgg-footer-products {
  background: #0e0e0e;
  padding: 60px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sgg-fp-header {
  text-align: center;
  margin-bottom: 36px;
}
.sgg-fp-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.sgg-fp-title {
  font-family: var(--fh);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.sgg-fp-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* card grid */
.sgg-fp-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.sgg-fp-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.sgg-fp-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(58,170,110,.3);
}
.sgg-fp-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sgg-fp-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
}
.sgg-fp-card-body {
  padding: 10px 12px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sgg-fp-card-name {
  font-size: .72rem;
  font-weight: 700;
  color: #e8e8e8;
  line-height: 1.3;
  letter-spacing: .01em;
}
.sgg-fp-card-arrow {
  color: var(--green);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
}
.sgg-fp-card:hover .sgg-fp-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Main footer info row ────────────────────────────────── */
.sgg-footer-main {
  background: #111;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sgg-footer-main-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.sgg-fm-logo {
  filter: brightness(0) invert(1);
  opacity: .88;
  display: block;
  margin-bottom: 18px;
}
.sgg-fm-brand p {
  font-size: .84rem;
  color: rgba(255,255,255,.42);
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 300px;
}
.sgg-fm-certs {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.sgg-fm-cert {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.sgg-fm-cert svg { color: var(--green); flex-shrink: 0; }
.sgg-fm-socials { display: flex; gap: 9px; }
.sgg-fm-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.45);
  transition: all .2s;
}
.sgg-fm-socials a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.sgg-fm-heading {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sgg-fm-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sgg-fm-nav ul li a {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .18s;
}
.sgg-fm-nav ul li a::before {
  content: '';
  display: inline-block;
  width: 14px; height: 1px;
  background: var(--green);
  flex-shrink: 0;
  opacity: .4;
  transition: opacity .18s;
}
.sgg-fm-nav ul li a:hover { color: #fff; }
.sgg-fm-nav ul li a:hover::before { opacity: 1; }
.sgg-fm-contact-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.sgg-fm-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.sgg-fm-contact-list li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.sgg-fm-contact-list li a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
.sgg-fm-contact-list li a:hover { color: var(--green); }
.sgg-fm-hours {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.sgg-fm-hours strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}
.sgg-fm-hours strong svg { color: var(--green); }
.sgg-fm-hours p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
}
.sgg-fm-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sgg-fm-cta .sgg-btn { text-align: center; justify-content: center; }
.sgg-fm-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .18s;
}
.sgg-fm-directions svg { color: var(--green); }
.sgg-fm-directions:hover { color: var(--green); }

/* ── Footer bottom ───────────────────────────────────────── */
.sgg-footer-bottom {
  background: #0a0a0a;
  padding: 16px 0;
}
.sgg-footer-bottom .sgg-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sgg-footer-copy { font-size: .76rem; color: rgba(255,255,255,.25); margin: 0; }
.sgg-footer-legal { display: flex; gap: 14px; align-items: center; }
.sgg-footer-sep { color: rgba(255,255,255,.18); margin: 0 2px; }
.sgg-footer-legal a { font-size: .76rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .18s; }
.sgg-footer-legal a:hover { color: var(--green); }


/* ============================================================
   PAGE BANNER (inner pages)
============================================================ */
.sgg-page-banner {
  background: var(--navy);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.sgg-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,170,110,.15) 0%, transparent 60%);
  pointer-events: none;
}
.sgg-page-banner .sgg-label { color: var(--green); }
.sgg-page-banner h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.sgg-page-banner p { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 560px; margin: 0; }

/* ============================================================
   PRODUCT BANNER (single product)
============================================================ */
.sgg-product-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0 70px;
}
.sgg-product-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,24,39,.88) 0%, rgba(17,24,39,.65) 100%);
}
.sgg-product-banner .sgg-container { position: relative; z-index: 2; }
.sgg-product-banner .sgg-label { color: var(--green); }
.sgg-product-banner h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.sgg-product-banner p { color: rgba(255,255,255,.75); font-size: .93rem; max-width: 520px; margin: 0; }

/* ============================================================
   BREADCRUMBS
============================================================ */
.sgg-breadcrumbs {
  padding: 13px 0;
  background: #f9f9f9;
  border-bottom: 1px solid #ebebeb;
  font-size: .82rem;
}
.sgg-breadcrumbs-inner { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.sgg-breadcrumbs a { color: #666; }
.sgg-breadcrumbs a:hover { color: var(--green); }
.sgg-breadcrumbs .sep { color: #bbb; }
.sgg-breadcrumbs .current { color: var(--green); font-weight: 600; }

/* ============================================================
   PRODUCT ARCHIVE GRID
============================================================ */
.sgg-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 56px 0;
}
.sgg-archive-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: all .22s;
  display: flex;
  flex-direction: column;
}
.sgg-archive-card:hover { box-shadow: 0 6px 36px rgba(0,0,0,.12); transform: translateY(-3px); }
.sgg-archive-card-img {
  display: block;
  height: 250px;
  overflow: hidden;
}
.sgg-archive-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sgg-archive-card:hover .sgg-archive-card-img img { transform: scale(1.05); }
.sgg-archive-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.sgg-archive-card-body .sgg-product-title-row { margin-bottom: 12px; }
.sgg-archive-card-body h2 {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
}
.sgg-archive-card-body p { font-size: .86rem; color: #666; flex: 1; margin-bottom: 18px; }

/* ============================================================
   SINGLE PRODUCT
============================================================ */
.sgg-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 56px 0;
  align-items: start;
}

/* Gallery */
.sgg-gallery-main {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.sgg-gallery-main img { width: 100%; height: 440px; object-fit: cover; transition: opacity .25s; }
.sgg-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.sgg-thumb {
  width: 100%; height: 72px; object-fit: cover;
  cursor: pointer; border: 2px solid transparent;
  border-radius: 3px; opacity: .65; transition: all .2s;
}
.sgg-thumb.active, .sgg-thumb:hover { border-color: var(--green); opacity: 1; }

/* Downloads */
.sgg-product-downloads { margin-top: 20px; }
.sgg-product-downloads h4 {
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}
.sgg-download-links { display: flex; gap: 10px; flex-wrap: wrap; }
.sgg-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 600;
  color: #444;
  transition: all .2s;
}
.sgg-download-btn:hover { border-color: var(--green); color: var(--green); background: #f9fdf9; }
.sgg-download-btn svg { color: var(--green); }

/* Product info */
.sgg-product-info h2 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.sgg-product-content { margin-bottom: 28px; font-size: .9rem; color: #555; line-height: 1.8; }
.sgg-product-content p { margin-bottom: 14px; }

/* Features */
.sgg-features { margin-bottom: 28px; }
.sgg-features h3 {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  margin-bottom: 14px;
}
.sgg-features ul { display: flex; flex-direction: column; }
.sgg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: #555;
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
}
.sgg-features li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}

/* Product CTAs */
.sgg-product-ctas { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }

/* Trust bar */
.sgg-product-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px;
  background: #f9fdf9;
  border: 1px solid #d4edda;
  border-radius: 4px;
}
.sgg-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: #2d7a4f;
}
.sgg-trust-item svg { color: var(--green); }

/* Specs table */
.sgg-specs-section {
  padding: 0 0 56px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.sgg-specs-section h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.sgg-specs-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.sgg-specs-table tr:nth-child(even) td { background: #f9f9f9; }
.sgg-specs-table td { padding: 10px 16px; border: 1px solid #eee; }
.sgg-specs-table td:first-child { font-weight: 700; color: var(--black); width: 40%; }

/* ============================================================
   RELATED PRODUCTS
============================================================ */
.sgg-related {
  background: #f7f8f7;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.sgg-related .sgg-section-head { text-align: center; }
.sgg-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.sgg-related-grid .sgg-related-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 220px;
  max-width: 380px;
}
.sgg-related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .22s;
}
.sgg-related-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.sgg-related-img { display: block; height: 200px; overflow: hidden; }
.sgg-related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sgg-related-card:hover .sgg-related-img img { transform: scale(1.04); }
.sgg-related-body { padding: 20px; }
.sgg-related-body h4 {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}
.sgg-related-body p { font-size: .83rem; color: #666; margin-bottom: 14px; }

/* ============================================================
   INNER CTA STRIP
============================================================ */
.sgg-inner-cta {
  background: var(--navy);
  padding: 52px 0;
}
.sgg-inner-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.sgg-inner-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.sgg-inner-cta-content p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }
.sgg-inner-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE — Two col layout
============================================================ */
.sgg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sgg-two-col-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
.sgg-two-col-text p { font-size: .9rem; color: #555; margin-bottom: 14px; }
.sgg-two-col-img { border-radius: 4px; overflow: hidden; }
.sgg-two-col-img img { width: 100%; height: 480px; object-fit: cover; border-radius: 4px; }

/* Features grid */
.sgg-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sgg-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow .22s;
}
.sgg-feature-card:hover { box-shadow: 0 4px 28px rgba(0,0,0,.08); }
.sgg-feature-icon {
  width: 60px; height: 60px;
  background: #f0faf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
}
.sgg-feature-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.sgg-feature-card p { font-size: .86rem; color: #666; margin: 0; }

/* Steps grid */
.sgg-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sgg-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 24px;
  position: relative;
}
.sgg-step-num {
  font-family: var(--fh);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  opacity: .2;
  line-height: 1;
  margin-bottom: 12px;
}
.sgg-step-card h3 { font-size: .95rem; font-weight: 800; margin-bottom: 10px; }
.sgg-step-card p { font-size: .85rem; color: #666; margin: 0; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.sgg-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 56px 0;
  align-items: start;
}
.sgg-contact-form-col h2,
.sgg-contact-info-col h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.sgg-contact-form-col > p,
.sgg-contact-info-col > p { font-size: .88rem; color: #666; margin-bottom: 28px; }

.sgg-contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 28px; }
.sgg-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sgg-contact-detail-icon {
  width: 44px; height: 44px;
  background: #f0faf5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.sgg-contact-detail-item strong {
  display: block;
  font-family: var(--fh);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}
.sgg-contact-detail-item p { font-size: .88rem; color: #555; margin: 0; }
.sgg-contact-detail-item a { color: #555; }
.sgg-contact-detail-item a:hover { color: var(--green); }
.sgg-map-embed { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }

/* ============================================================
   QUOTE PAGE
============================================================ */
.sgg-quote-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  padding: 56px 0;
  align-items: start;
}
.sgg-quote-form-col h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.sgg-quote-form-col > p { font-size: .88rem; color: #666; margin-bottom: 28px; }
.sgg-form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.sgg-quote-why {
  background: #f7fdf9;
  border: 1px solid #c8e6d4;
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 24px;
}
.sgg-quote-why h3 { font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.sgg-quote-contact-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 24px;
}
.sgg-quote-contact-card h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sgg-quote-contact-card p { font-size: .86rem; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.sgg-opening-note { font-size: .78rem; color: rgba(255,255,255,.4) !important; margin-top: 10px !important; margin-bottom: 0 !important; }
.sgg-quote-products-list h4 {
  font-family: var(--fh);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sgg-quote-products-list ul { display: flex; flex-direction: column; gap: 8px; }
.sgg-quote-products-list li a { font-size: .86rem; color: #444; }
.sgg-quote-products-list li a:hover { color: var(--green); }

/* ============================================================
   FORMS
============================================================ */
.sgg-form { width: 100%; }
.sgg-form-group { margin-bottom: 20px; }
.sgg-form-group label {
  display: block;
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 7px;
}
.sgg-form-group input,
.sgg-form-group textarea,
.sgg-form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: .9rem;
  color: var(--black);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-family: var(--fb);
  -webkit-appearance: none;
  appearance: none;
}
.sgg-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.sgg-form-group input:focus,
.sgg-form-group textarea:focus,
.sgg-form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,170,110,.1);
}
.sgg-form-group textarea { min-height: 130px; resize: vertical; }
.sgg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sgg-form-msg {
  padding: 14px 18px;
  border-radius: 3px;
  font-size: .88rem;
  margin-top: 16px;
  display: none;
}
.sgg-form-msg.ok { background: #e8f7ef; color: #1e6c44; border: 1px solid #b3d9c6; display: block; }
.sgg-form-msg.err { background: #fdf3f3; color: #c0392b; border: 1px solid #f5b7b1; display: block; }

/* ============================================================
   GALLERY PAGE
============================================================ */
.sgg-gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-top: 40px;
}
.sgg-filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fff;
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  transition: all .2s;
}
.sgg-filter-btn:hover,
.sgg-filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.sgg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-bottom: 56px;
}
.sgg-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.sgg-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sgg-gallery-item:hover img { transform: scale(1.06); }
.sgg-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(17,24,39,.6);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .25s;
}
.sgg-gallery-item:hover .sgg-gallery-overlay { opacity: 1; }
.sgg-gallery-overlay span {
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
}
.sgg-gallery-item.hidden { display: none; }

/* ============================================================
   DEFAULT PAGE (page.php)
============================================================ */
.sgg-default-page { padding: 56px 0 80px; }
.sgg-default-page-content { max-width: 840px; }
.sgg-default-page-content h1 { font-size: 2rem; font-weight: 900; margin-bottom: 24px; }
.sgg-default-page-content h2 { font-size: 1.4rem; font-weight: 800; margin: 32px 0 12px; }
.sgg-default-page-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; }
.sgg-default-page-content p { font-size: .92rem; color: #555; margin-bottom: 18px; line-height: 1.8; }
.sgg-default-page-content ul, .sgg-default-page-content ol { padding-left: 20px; margin-bottom: 18px; }
.sgg-default-page-content li { font-size: .92rem; color: #555; margin-bottom: 6px; }

/* ============================================================
   ELEMENTOR COMPATIBILITY
============================================================ */
.elementor-page #sgg-elementor-main { padding: 0; margin: 0; }
.elementor-section.elementor-section-stretched { width: 100% !important; max-width: 100% !important; left: auto !important; }
.elementor h1, .elementor h2, .elementor h3 { font-family: 'Montserrat', sans-serif; }
.elementor-column > .elementor-column-wrap { height: 100%; }
.sgg-hero-img {
  position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: 100% !important; height: 100% !important; overflow: hidden;
}
.sgg-hero-img .elementor-image, .sgg-hero-img a, .sgg-hero-img img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: center 25% !important;
  display: block !important; margin: 0 !important; padding: 0 !important;
}
.elementor-column:has(.sgg-hero-img) { position: relative !important; overflow: hidden !important; min-height: 500px !important; }
.sgg-about-img {
  position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: 100% !important; height: 100% !important; overflow: hidden;
}
.sgg-about-img .elementor-image, .sgg-about-img a, .sgg-about-img img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: center 30% !important;
  display: block !important; margin: 0 !important; padding: 0 !important;
}
.elementor-column:has(.sgg-about-img) { position: relative !important; overflow: hidden !important; min-height: 400px !important; }

/* ============================================================
   RESPONSIVE — 1200px
============================================================ */
@media (max-width: 1200px) {
  .sgg-fp-grid { grid-template-columns: repeat(4, 1fr); }
  .sgg-footer-main-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sgg-fm-brand { grid-column: 1 / -1; }
  .sgg-fm-brand p { max-width: 100%; }
  .sgg-hero-h1 { font-size: 3.8rem; }
  .sgg-hero-content { padding: 50px 40px 50px 50px; }
  .sgg-hero-text-col { min-height: 560px; }
  .sgg-hero-photo { min-height: 560px; }
  .sgg-products-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================================
   RESPONSIVE — 1100px
============================================================ */
@media (max-width: 1100px) {
  .sgg-nav > li > a { padding: 10px 10px; font-size: .75rem; }
  .sgg-products-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .sgg-products-grid .sgg-product-card:nth-child(3) { border-right: 1px solid var(--border); }
  .sgg-products-grid .sgg-product-card:nth-child(n+4) { border-top: none; }
  .sgg-cta-left h2 { font-size: 2.1rem; }
}

/* ============================================================
   RESPONSIVE — 960px
============================================================ */
@media (max-width: 960px) {
  .sgg-menu-toggle { display: flex; }
  .sgg-nav-wrap {
    display: none;
    position: fixed;
    top: 111px; left: 0; right: 0; bottom: 0;
    background: #fff;
    overflow-y: auto;
    padding: 20px 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 9998;
    border-top: 1px solid #eee;
  }
  .sgg-nav-wrap.open { display: flex; }
  .sgg-nav { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .sgg-nav > li { width: 100%; border-bottom: 1px solid #f0f0f0; }
  .sgg-nav > li > a { padding: 14px 0; font-size: .9rem; border-bottom: none; }
  .sgg-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding-left: 16px; min-width: 0; }
  .sgg-header-cta { margin: 16px 0 0; width: 100%; justify-content: center; }
  .sgg-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .sgg-related-grid .sgg-related-card { flex: 0 1 calc(50% - 12px); }
  .sgg-contact-layout { grid-template-columns: 1fr; }
  .sgg-quote-layout { grid-template-columns: 1fr; }
  .sgg-features-grid { grid-template-columns: repeat(2, 1fr); }
  .sgg-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .sgg-two-col { grid-template-columns: 1fr; }
  .sgg-two-col-img img { height: 360px; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  body { padding-top: 100px; }
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .sgg-container { padding: 0 20px; }
  #sgg-hero { grid-template-columns: 1fr; min-height: auto; }
  .sgg-hero-text-col { padding: 40px 20px; order: 2; min-height: auto; }
  .sgg-hero-text-col::after { display: none; }
  .sgg-hero-photo {
    order: 1;
    min-height: 0;
    position: relative;
    aspect-ratio: 1/1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
    background: #0d1117;
  }
  .sgg-hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }
  .sgg-hero-content { padding: 0; max-width: 100%; margin: 0; }
  .sgg-hero-h1 { font-size: 3rem; }
  .sgg-hero-badges { gap: 20px; }
  .sgg-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sgg-products-grid .sgg-product-card { border: 1px solid var(--border); border-radius: 6px; }
  .sgg-products-grid .sgg-product-card:last-child { border-right: 1px solid var(--border); }
  .sgg-products-grid .sgg-product-img { height: 160px; }
  .sgg-product-body { padding: 14px 14px 16px; }
  .sgg-product-title-row h3 { font-size: .78rem; }
  .sgg-product-body p { font-size: .77rem; margin-bottom: 10px; }
  .sgg-product-link { font-size: .73rem; }
  #sgg-about { grid-template-columns: 1fr; }
  .sgg-about-photo {
    min-height: 0;
    height: auto;
    position: relative;
    order: -1;
    aspect-ratio: 1/1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
    background: #0d1117;
  }
  .sgg-about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }
  .sgg-about-inner { padding: 48px 24px; max-width: 100%; }
  .sgg-stats-row { grid-template-columns: repeat(2, 1fr); }
  .sgg-stat:nth-child(2) { border-right: none; }
  .sgg-stat:nth-child(3), .sgg-stat:nth-child(4) { border-top: 1px solid #ddd; }
  .sgg-stat:nth-child(4) { border-right: none; }
  .sgg-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .sgg-fp-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .sgg-footer-main-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sgg-fm-brand { grid-column: 1 / -1; }
  .sgg-product-layout { grid-template-columns: 1fr; }
  .sgg-archive-grid { grid-template-columns: 1fr 1fr; }
  .sgg-form-row { grid-template-columns: 1fr; }
  .sgg-inner-cta-content { flex-direction: column; align-items: flex-start; }
  .sgg-related-grid .sgg-related-card { flex: 0 1 100%; max-width: 100%; }
  .sgg-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sgg-page-banner h1 { font-size: 2.1rem; }
  .sgg-product-banner h1 { font-size: 1.9rem; }
  .sgg-section-head h2 { font-size: 1.7rem; }
  .elementor-column:has(.sgg-hero-img) {
    position: relative !important;
    min-height: 0 !important;
    aspect-ratio: 1/1 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    background: #0d1117 !important;
  }
  .sgg-hero-img {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .sgg-hero-img .elementor-widget-container,
  .sgg-hero-img .elementor-image,
  .sgg-hero-img a,
  .sgg-hero-img picture {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .sgg-hero-img img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
  .elementor-column:has(.sgg-about-img) {
    position: relative !important;
    min-height: 0 !important;
    aspect-ratio: 1/1 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    background: #0d1117 !important;
  }
  .sgg-about-img {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .sgg-about-img .elementor-widget-container,
  .sgg-about-img .elementor-image,
  .sgg-about-img a,
  .sgg-about-img picture {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .sgg-about-img img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .sgg-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sgg-products-grid .sgg-product-card { border: 1px solid var(--border) !important; border-radius: 6px !important; }
  .sgg-products-grid .sgg-product-img { height: 130px; }
  .sgg-stats-row { grid-template-columns: 1fr; }
  .sgg-stat { border-right: none !important; border-bottom: 1px solid #ddd; }
  .sgg-fp-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sgg-footer-main-inner { grid-template-columns: 1fr; gap: 28px; }
  .sgg-footer-bottom .sgg-container { flex-direction: column; align-items: flex-start; }
  .sgg-archive-grid { grid-template-columns: 1fr; }
  .sgg-hero-h1 { font-size: 2.5rem; }
  .sgg-gallery-grid { grid-template-columns: 1fr 1fr; }
  .sgg-features-grid { grid-template-columns: 1fr; }
  .sgg-steps-grid { grid-template-columns: 1fr; }
  .sgg-product-ctas { flex-direction: column; }
  .sgg-product-ctas .sgg-btn { width: 100%; justify-content: center; }

  /* Mobile: centre logo by making it position:absolute centred; button stays in normal flow on the right */
  .sgg-header-main .sgg-container { justify-content: flex-end; position: relative; gap: 0; }
  .sgg-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .sgg-menu-toggle { position: relative; z-index: 1; }

  /* Mobile: centre all footer content */
  .sgg-fm-brand,
  .sgg-fm-nav,
  .sgg-fm-contact { text-align: center; align-items: center; }
  .sgg-fm-brand p { margin-top: 16px; }
  .sgg-fm-certs { justify-content: center; }
  .sgg-fm-cert { justify-content: center; }
  .sgg-fm-socials { justify-content: center; }
  .sgg-fm-nav ul { padding-left: 0; align-items: center; }
  .sgg-fm-nav ul li { text-align: center; width: 100%; }
  .sgg-fm-nav ul li a { justify-content: center; }
  .sgg-fm-nav ul li a::before { display: none; }
  .sgg-fm-contact-list li { justify-content: center; }
  .sgg-fm-hours { text-align: center; }
  .sgg-fm-hours strong { justify-content: center; }
  .sgg-fm-hours p { text-align: center; }
  .sgg-fm-cta { align-items: center; }
  .sgg-fm-directions { justify-content: center; }
  .sgg-fm-logo { display: block; margin: 0 auto; }
  .sgg-footer-bottom .sgg-container { align-items: center; text-align: center; }
  .sgg-footer-legal { justify-content: center; }
  .sgg-footer-copy { text-align: center; }
}

/* footer sep — kept for any residual use */


/* ── Why Choose section ──────────────────────────────────────── */
.sgg-why-choose {
  background: #f7f8f6;
  padding: 72px 0;
}
.sgg-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.sgg-why-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.sgg-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #2e7d32;
}
.sgg-why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.sgg-why-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ── Process steps ───────────────────────────────────────────── */
.sgg-process {
  padding: 72px 0;
  background: #fff;
}
.sgg-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 40px;
  counter-reset: steps;
}
.sgg-process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sgg-step-number {
  font-size: 32px;
  font-weight: 900;
  color: #e0e0e0;
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  min-width: 48px;
}
.sgg-step-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1a1a1a;
}
.sgg-step-body p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ── FAQs ────────────────────────────────────────────────────── */
.sgg-faqs {
  background: #f7f8f6;
  padding: 72px 0;
}
.sgg-faq-list {
  max-width: 780px;
  margin: 40px auto 0;
}
.sgg-faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.sgg-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.sgg-faq-q:hover { color: #2e7d32; }
.sgg-faq-chevron {
  flex-shrink: 0;
  transition: transform .2s;
  color: #888;
}
.sgg-faq-q[aria-expanded="true"] .sgg-faq-chevron {
  transform: rotate(180deg);
  color: #2e7d32;
}
.sgg-faq-a {
  padding: 0 20px 18px;
  border-top: 1px solid #f0f0f0;
}
.sgg-faq-a p {
  margin: 14px 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ── Section head centred variant ────────────────────────────── */
.sgg-section-head.sgg-center { text-align: center; }

@media (max-width: 600px) {
  /* footer responsive handled above */
  .sgg-why-grid { grid-template-columns: 1fr; }
  .sgg-process-steps { grid-template-columns: 1fr; }
}

/* ── Custom page prose content ─────────────────────────────── */
.sgg-prose { max-width: 860px; margin: 0 auto; font-size: 16px; line-height: 1.75; color: #333; }
.sgg-prose h2 { font-size: 1.7rem; font-weight: 700; margin: 1.8em 0 .6em; color: #1a1a1a; }
.sgg-prose h3 { font-size: 1.25rem; font-weight: 700; margin: 1.4em 0 .5em; color: #1a1a1a; }
.sgg-prose p { margin: 0 0 1.2em; }
.sgg-prose ul, .sgg-prose ol { padding-left: 1.5em; margin: 0 0 1.2em; }
.sgg-prose li { margin-bottom: .4em; }
.sgg-prose strong { font-weight: 700; color: #1a1a1a; }
.sgg-prose a { color: #2e7d32; text-decoration: underline; }
.sgg-prose img { max-width: 100%; border-radius: 6px; margin: 1.2em 0; }
.sgg-prose blockquote { border-left: 4px solid #2e7d32; padding-left: 1em; margin: 1.5em 0; color: #555; font-style: italic; }
