/* ============================================
   STG Design Build - Design System V2
   Palette: Forest Black + Sand + Muted Gold
   Premium Architectural Brand Identity
   ============================================ */

:root {
  /* ── Core Brand Palette ── */
  --color-bg-dark:        #1B2A23;
  --color-surface-dark:   #24372E;
  --color-sand:           #D6C3A5;
  --color-gold:           #A8842C;
  --color-gold-hover:     #926F22;
  --color-light:          #F8F6F2;
  --color-text-dark:      #18201B;
  --color-text-light:     #F8F6F2;
  --color-text-muted-dark:#CBBCA3;
  --color-border-soft:    rgba(168, 132, 44, 0.28);

  /* ── Token mapping (backwards-compat with class names) ── */
  --green-50:  #F8F6F2;
  --green-100: #EDE8DF;
  --green-200: #D6C3A5;
  --green-300: #C4A96E;
  --green-400: #BF9A45;
  --green-500: #A8842C;
  --green-600: #926F22;
  --green-700: #76591D;
  --green-800: #1B2A23;
  --green-900: #111C16;

  --neutral-50:  #FAF9F7;
  --neutral-100: #F5F3EF;
  --neutral-200: #E8E4DD;
  --neutral-300: #D6D1C9;
  --neutral-400: #B8B2A7;
  --neutral-500: #968F82;
  --neutral-600: #706961;
  --neutral-700: #564F47;
  --neutral-800: #3A352F;
  --neutral-900: #242018;
  --neutral-950: #151210;

  /* Semantic */
  --clr-primary:       var(--color-gold);
  --clr-primary-dark:  var(--color-gold-hover);
  --clr-primary-darker:#1B2A23;
  --clr-primary-light: var(--color-sand);
  --clr-primary-50:    var(--color-light);
  --clr-accent:        var(--color-sand);
  --clr-surface:       var(--color-light);
  --clr-surface-alt:   #F0EDE7;
  --clr-dark:          var(--color-bg-dark);
  --clr-darker:        #111C16;

  /* Text */
  --text-primary:         var(--color-text-dark);
  --text-secondary:       #4A5550;
  --text-muted:           #7A8480;
  --text-light:           var(--color-text-light);
  --text-light-secondary: var(--color-text-muted-dark);
  --text-light-muted:     rgba(203,188,163,0.55);
  --text-on-green:        var(--color-text-light);

  /* Typography */
  --ff-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-body:    'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-light: 300; --fw-normal: 400; --fw-medium: 500; --fw-semibold: 600; --fw-bold: 700;

  /* Spacing */
  --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem;
  --space-xl: 2rem; --space-2xl: 3rem; --space-3xl: 4rem; --space-4xl: 6rem;

  /* Layout */
  --container-max: 1140px;
  --container-padding: 24px;
  --section-py: 80px;
  --section-py-sm: 50px;

  /* Radius */
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px; --radius-xl: 16px; --radius-full: 9999px;

  /* Shadows (forest tint) */
  --shadow-sm:  0 1px 3px rgba(27,42,35,0.06);
  --shadow-md:  0 4px 12px rgba(27,42,35,0.08);
  --shadow-lg:  0 8px 30px rgba(27,42,35,0.10);
  --shadow-xl:  0 12px 40px rgba(27,42,35,0.14);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Gradients */
  --gradient-dark:       linear-gradient(135deg, #111C16 0%, #1B2A23 100%);
  --gradient-green:      linear-gradient(135deg, #926F22 0%, #A8842C 100%);
  --gradient-green-dark: linear-gradient(135deg, #1B2A23 0%, #24372E 100%);
  --gradient-surface:    linear-gradient(180deg, #FAF9F7 0%, #F0EDE7 100%);
  --gradient-hero:       linear-gradient(135deg, #0D1510 0%, #1B2A23 50%, #24372E 100%);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-normal);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--color-light);
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-dark); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-primary); font-weight: var(--fw-bold);
  color: var(--text-primary); line-height: 1.25; margin: 0 0 var(--space-md);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin: 0 0 var(--space-md); line-height: 1.8; }

.text-large  { font-size: 1.125rem; line-height: 1.8; }
.text-small  { font-size: 0.875rem; }
.text-xs     { font-size: 0.8rem; }
.text-muted  { color: var(--text-muted); }
.text-light  { color: var(--text-light); }
.text-green  { color: var(--clr-primary); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.subtitle {
  font-family: var(--ff-primary);
  font-size: 0.9rem; font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

/* ── Layout ── */
.stg-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); width: 100%; }
.stg-section { padding: var(--section-py) 0; }

/* Dark section = forest-black */
.stg-section--dark {
  background: var(--gradient-dark);
  color: var(--color-text-light);
}
.stg-section--dark h1, .stg-section--dark h2, .stg-section--dark h3, .stg-section--dark h4 { color: #fff; }
.stg-section--dark p { color: var(--color-text-muted-dark); }

/* Green section = gold gradient (used sparingly) */
.stg-section--green {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.stg-section--green h1, .stg-section--green h2, .stg-section--green h3 { color: #fff; }

.stg-section--surface { background: var(--color-light); }
.stg-section--surface-alt { background: var(--clr-surface-alt); }

/* Grid */
.stg-grid { display: grid; gap: var(--space-xl); }
.stg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.stg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.stg-grid--4 { grid-template-columns: repeat(4, 1fr); }

.stg-flex { display: flex; gap: var(--space-xl); }
.stg-flex--center { align-items: center; }
.stg-flex--between { justify-content: space-between; }
.stg-flex--wrap { flex-wrap: wrap; }

/* ── Navigation ── */
.stg-nav {
  position: sticky; top: 0; z-index: 10000;
  background: rgba(248,246,242,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
  transition: box-shadow var(--transition);
}
.stg-nav.scrolled { box-shadow: var(--shadow-md); }

.stg-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; max-width: var(--container-max); margin: 0 auto;
  padding-left: var(--container-padding); padding-right: var(--container-padding);
  position: relative;
}

.stg-nav__logo img {
  height: 60px; width: auto;
  background: var(--color-bg-dark);
  border-radius: 8px; padding: 4px;
  box-shadow: 0 2px 8px rgba(27,42,35,0.15);
}

.stg-nav__menu {
  display: flex; align-items: center; gap: var(--space-xs);
  list-style: none; margin: 0; padding: 0;
}

.stg-nav__link {
  font-family: var(--ff-primary); font-size: 0.9rem; font-weight: var(--fw-medium);
  color: var(--text-primary); padding: 8px 14px; border-radius: var(--radius-md);
  transition: all var(--transition); text-decoration: none; position: relative;
}
.stg-nav__link:hover,
.stg-nav__link--active {
  color: var(--color-gold);
  background: rgba(168,132,44,0.06);
}

.stg-nav__dropdown { position: relative; }
.stg-nav__dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0; z-index: 100; list-style: none;
}
.stg-nav__dropdown:hover .stg-nav__dropdown-menu { display: block; }
.stg-nav__dropdown-item {
  display: block; padding: 8px 20px; font-size: 0.88rem;
  color: var(--text-secondary); transition: all var(--transition);
}
.stg-nav__dropdown-item:hover {
  background: rgba(168,132,44,0.06);
  color: var(--color-gold); padding-left: 24px;
}

/* CTA button — gold accent */
.stg-nav__cta {
  font-family: var(--ff-primary); font-size: 0.85rem; font-weight: var(--fw-semibold);
  color: var(--color-text-light) !important;
  background: var(--color-gold);
  padding: 8px 20px; border-radius: var(--radius-full);
  text-decoration: none; transition: all var(--transition); white-space: nowrap;
}
.stg-nav__cta:hover {
  background: var(--color-gold-hover);
  box-shadow: 0 4px 15px rgba(168,132,44,0.3);
  transform: translateY(-1px); color: #fff !important;
}

/* Mobile nav toggle */
.stg-nav__toggle {
  display: none; background: none; border: none; padding: 10px; cursor: pointer;
  z-index: 10001; position: relative; min-width: 44px; min-height: 44px;
}
.stg-nav__toggle span {
  display: block; width: 24px; height: 3px; background: var(--text-primary);
  margin: 5px 0; transition: all var(--transition); border-radius: 2px;
}

/* ── Hero ── dark forest background */
.stg-hero {
  background: var(--gradient-hero);
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.stg-hero--page { padding: 90px 0 44px; }
.stg-hero h1 { color: var(--color-text-light); margin-bottom: var(--space-lg); }
.stg-hero p { color: var(--color-text-muted-dark); font-size: 1.1rem; max-width: 600px; }
.stg-hero .subtitle { color: var(--color-gold); }

/* ── Breadcrumb Bar ── */
.stg-breadcrumb-bar { background: var(--clr-surface-alt); border-bottom: 1px solid var(--neutral-200); padding: 10px 0; font-size: 0.92rem; }
.stg-breadcrumb-bar .stg-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.stg-breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.stg-breadcrumb-bar a { color: var(--color-gold); text-decoration: none; font-weight: var(--fw-medium); }
.stg-breadcrumb-bar a:hover { text-decoration: underline; }
.stg-breadcrumb-bar span { color: var(--text-secondary); }

/* ── Check List ── */
.check-list { list-style: none; }
.check-list li { padding: 6px 0 6px 28px; position: relative; color: var(--text-secondary); line-height: 1.7; }
.check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-gold); font-weight: 700; }

/* ── Buttons ── */
.stg-btn {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  font-family: var(--ff-primary); font-size: 0.9rem; font-weight: var(--fw-semibold);
  padding: 12px 28px; border-radius: var(--radius-md); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); text-decoration: none; line-height: 1.4;
}

/* Primary = gold */
.stg-btn--primary {
  background: var(--color-gold); color: var(--color-text-light);
  border-color: var(--color-gold);
}
.stg-btn--primary:hover {
  background: var(--color-gold-hover);
  box-shadow: 0 6px 20px rgba(168,132,44,0.25);
  transform: translateY(-2px); color: #fff;
}

/* Outline = gold border */
.stg-btn--outline {
  background: transparent; color: var(--color-gold); border-color: var(--color-gold);
}
.stg-btn--outline:hover {
  background: rgba(168,132,44,0.12); color: var(--color-gold);
}

.stg-btn--white {
  background: var(--color-light); color: var(--color-bg-dark);
  border-color: var(--color-light);
}
.stg-btn--white:hover {
  background: #fff; box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}

.stg-btn--dark {
  background: var(--color-bg-dark); color: var(--color-text-light);
  border-color: var(--color-bg-dark);
}
.stg-btn--dark:hover { background: var(--color-surface-dark); }

.stg-btn--sm { font-size: 0.8rem; padding: 8px 18px; }
.stg-btn--lg { font-size: 1rem; padding: 16px 36px; }

/* ── Cards ── */
.stg-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--neutral-200);
}
.stg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stg-card__img { width: 100%; height: 220px; object-fit: cover; }
.stg-card__body { padding: var(--space-xl); }
.stg-card__title { font-size: 1.2rem; font-weight: var(--fw-semibold); margin-bottom: var(--space-sm); }
.stg-card__text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* Service card — deeper forest surface with gold icon */
.stg-service-card {
  background: var(--color-surface-dark);
  border-radius: var(--radius-lg); padding: var(--space-2xl); text-align: center;
  border: 1px solid rgba(168,132,44,0.12); transition: all var(--transition);
}
.stg-service-card:hover {
  border-color: var(--color-border-soft);
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.stg-service-card__icon {
  width: 64px; height: 64px; margin: 0 auto var(--space-lg);
  background: rgba(168,132,44,0.12); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); font-size: 1.5rem;
}
.stg-service-card h3 { font-size: 1.15rem; margin-bottom: var(--space-sm); color: var(--color-text-light); }
.stg-service-card .stg-card__text { color: var(--color-text-muted-dark); }

/* ── Stats Bar ── gold numbers on dark */
.stg-stats { display: flex; flex-wrap: wrap; gap: var(--space-xl); justify-content: center; text-align: center; }
.stg-stat { flex: 1; min-width: 150px; }
.stg-stat__number {
  font-family: var(--ff-primary); font-size: 2.5rem; font-weight: var(--fw-bold);
  color: var(--color-gold); line-height: 1.2;
}
.stg-stat__label {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--color-text-muted-dark); margin-top: var(--space-xs);
}

/* ── Testimonial ── */
.stg-testimonial {
  background: #fff; border-radius: var(--radius-lg); padding: var(--space-2xl);
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--color-gold);
}
.stg-testimonial__quote { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); font-style: italic; margin-bottom: var(--space-lg); }
.stg-testimonial__author { display: flex; align-items: center; gap: var(--space-md); }
.stg-testimonial__avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.stg-testimonial__name { font-family: var(--ff-primary); font-weight: var(--fw-semibold); font-size: 0.95rem; }
.stg-testimonial__role { font-size: 0.8rem; color: var(--text-muted); }

/* ── Footer ── darkest forest */
.stg-footer {
  background: linear-gradient(135deg, #0D1510 0%, #1B2A23 100%);
  color: var(--color-text-muted-dark);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.stg-footer h5 {
  color: var(--color-text-light); font-size: 1.1rem;
  margin-bottom: var(--space-lg); position: relative; padding-bottom: var(--space-sm);
}
.stg-footer h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background: var(--color-gold); border-radius: 2px;
}
.stg-footer a { color: var(--color-text-muted-dark); transition: all var(--transition); }
.stg-footer a:hover { color: var(--color-gold); padding-left: 3px; }
.stg-footer p { font-size: 0.92rem; line-height: 1.8; }

.stg-footer__bottom {
  border-top: 1px solid rgba(168,132,44,0.15);
  padding-top: var(--space-lg); margin-top: var(--space-2xl);
  font-size: 0.85rem; color: rgba(203,188,163,0.45); text-align: center;
}

.stg-footer__social { display: flex; gap: var(--space-md); margin-top: var(--space-md); }
.stg-footer__social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(168,132,44,0.1);
  color: var(--color-text-muted-dark); transition: all var(--transition); padding: 0;
}
.stg-footer__social a:hover { background: var(--color-gold); color: #fff; padding: 0; }

/* ── Forms ── */
.stg-form-group { margin-bottom: var(--space-lg); }
.stg-form-group label {
  display: block; font-family: var(--ff-primary); font-size: 0.88rem;
  font-weight: var(--fw-medium); color: var(--text-primary); margin-bottom: var(--space-xs);
}
.stg-input, .stg-textarea, .stg-select {
  width: 100%; font-family: var(--ff-body); font-size: 0.95rem; padding: 12px 16px;
  border: 1px solid var(--neutral-300); border-radius: var(--radius-md);
  background: #fff; color: var(--text-primary); transition: all var(--transition);
}
.stg-input:focus, .stg-textarea:focus, .stg-select:focus {
  outline: none; border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(168,132,44,0.1);
}
.stg-textarea { resize: vertical; min-height: 120px; }

/* ── Divider ── gold accent bar */
.stg-divider { width: 60px; height: 4px; background: var(--color-gold); border-radius: 2px; margin: var(--space-md) 0; }
.stg-divider--center { margin-left: auto; margin-right: auto; }
.stg-divider--light { background: var(--color-sand); }

/* ── CTA Banner ── dark forest with gold accents */
.stg-cta-banner {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0; text-align: center;
}
.stg-cta-banner h2 { color: var(--color-text-light); margin-bottom: var(--space-md); }
.stg-cta-banner p { color: var(--color-text-muted-dark); max-width: 600px; margin: 0 auto var(--space-xl); }

/* ── Gallery ── */
.stg-gallery { display: grid; gap: var(--space-md); }
.stg-gallery--masonry { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.stg-gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius-md); transition: all var(--transition); }
.stg-gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* ── Feature Row ── */
.stg-feature { display: flex; gap: var(--space-lg); align-items: flex-start; margin-bottom: var(--space-xl); }
.stg-feature__icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: rgba(168,132,44,0.1); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); font-size: 1.2rem;
}
.stg-feature h4 { font-size: 1.1rem; margin-bottom: var(--space-xs); }
.stg-feature p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; }

/* ── Process Steps ── */
.stg-process {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl); counter-reset: step;
}
.stg-process__step { position: relative; padding-left: var(--space-2xl); }
.stg-process__step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 32px; height: 32px;
  background: var(--color-gold); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-primary); font-size: 0.85rem; font-weight: var(--fw-bold);
}

/* ── Scroll-to-top ── */
.stg-scroll-top {
  position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
  background: var(--color-gold); color: #fff; border: none; border-radius: 50%;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 999; transition: all var(--transition); font-size: 1.2rem;
}
.stg-scroll-top.visible { display: flex; }
.stg-scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--color-gold-hover); }

/* ── Powered By ── */
#fms-poweredby, #fms-poweredby .poweredby { background: transparent !important; }
#fms-poweredby .poweredby span { color: rgba(203,188,163,0.3) !important; }

@keyframes stg-ken-burns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }

/* ── Responsive ── */
@media (max-width: 991px) {
  :root { --section-py: 60px; --container-padding: 20px; }
  .stg-grid--2, .stg-grid--3, .stg-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stg-nav__menu { display: none !important; }
  .stg-nav__toggle { display: block !important; }
  .stg-nav__cta { display: none; }
  .stg-nav__menu.active {
    display: flex !important; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--color-light);
    padding: 0; box-shadow: var(--shadow-xl); border-top: 2px solid var(--neutral-200);
    z-index: 9999; list-style: none;
  }
  .stg-nav__menu.active > li { border-bottom: 1px solid var(--neutral-200); }
  .stg-nav__menu.active > li:last-child { border-bottom: none; }
  .stg-nav__menu.active .stg-nav__link {
    padding: 14px 24px; display: block; width: 100%;
    color: var(--text-primary); font-size: 0.95rem; border-radius: 0; background: transparent;
  }
  .stg-nav__menu.active .stg-nav__link:hover,
  .stg-nav__menu.active .stg-nav__link--active {
    background: rgba(168,132,44,0.06); color: var(--color-gold);
  }
  .stg-nav__menu.active .stg-nav__dropdown-menu {
    position: static; box-shadow: none; border-radius: 0; padding: 8px 0; margin: 0;
    background: var(--clr-surface-alt); display: none; min-width: 100%;
    list-style: none; border-top: 1px solid var(--neutral-200);
  }
  .stg-nav__menu.active .stg-nav__dropdown:hover .stg-nav__dropdown-menu,
  .stg-nav__menu.active .stg-nav__dropdown.open .stg-nav__dropdown-menu { display: block; }
  .stg-nav__menu.active .stg-nav__dropdown-menu li { border-bottom: none; }
  .stg-nav__menu.active .stg-nav__dropdown-item {
    color: var(--text-secondary); padding: 10px 24px 10px 44px; font-size: 0.88rem;
    display: flex; align-items: center; gap: 8px;
  }
  .stg-nav__menu.active .stg-nav__dropdown-item::before { content: '\203A'; color: var(--color-gold); font-size: 1.1rem; font-weight: 700; }
  .stg-nav__menu.active .stg-nav__dropdown-item:hover { color: var(--color-gold); background: rgba(168,132,44,0.06); }
  .stg-nav__menu.active .stg-nav__dropdown.open > .stg-nav__link i { transform: rotate(180deg); transition: transform 0.3s ease; }
  .stg-hero { padding: 100px 0 60px; }
  .stg-hero--page { padding: 72px 0 36px; }
}

@media (max-width: 767px) {
  .stg-grid--2, .stg-grid--3, .stg-grid--4 { grid-template-columns: 1fr; }
  .stg-flex { flex-direction: column; }
  .stg-nav__logo img { height: 51px; }
  .stg-hero { padding: 90px 0 50px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .stg-stats { gap: var(--space-lg); }
  .stg-stat { min-width: 120px; }
  .stg-stat__number { font-size: 2rem; }
}

@media (max-width: 480px) {
  :root { --section-py: 40px; --container-padding: 16px; }
  .stg-btn { width: 100%; justify-content: center; }
  .stg-card__body { padding: var(--space-lg); }
}

/* ── Utilities ── */
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: var(--space-sm) !important; }
.mb-2 { margin-bottom: var(--space-md) !important; } .mb-3 { margin-bottom: var(--space-lg) !important; }
.mb-4 { margin-bottom: var(--space-xl) !important; } .mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: var(--space-md) !important; } .mt-4 { margin-top: var(--space-xl) !important; }
.pt-0 { padding-top: 0 !important; } .pb-0 { padding-bottom: 0 !important; }
.w-100 { width: 100%; } .mx-auto { margin-left: auto; margin-right: auto; }
.d-none { display: none; } .d-flex { display: flex; }
.gap-1 { gap: var(--space-sm); } .gap-2 { gap: var(--space-md); } .gap-3 { gap: var(--space-lg); }
