/* ============================================
   SITE GUARDIAN — THEME CSS
   Design system: SiteGuardian_Design_System.md
   ============================================ */


/* 1. CSS CUSTOM PROPERTIES
   ============================================ */

:root {
  /* Deep blue — trust, authority, security */
  --sg-blue-900: #0A1628;
  --sg-blue-800: #0F2140;
  --sg-blue-700: #152D58;
  --sg-blue-600: #1B3A70;
  --sg-blue-500: #1E4D8C;
  --sg-blue-400: #2563A8;
  --sg-blue-300: #4A8BC4;
  --sg-blue-200: #7FAFE0;
  --sg-blue-100: #B4D3F0;
  --sg-blue-50:  #E6F0FA;

  /* White and grays */
  --sg-white:    #FFFFFF;
  --sg-gray-50:  #F8F9FA;
  --sg-gray-100: #F1F3F5;
  --sg-gray-200: #E9ECEF;
  --sg-gray-300: #DEE2E6;
  --sg-gray-400: #ADB5BD;
  --sg-gray-500: #6C757D;
  --sg-gray-600: #495057;
  --sg-gray-700: #343A40;
  --sg-gray-800: #212529;

  /* Orange — CTAs only, never decorative */
  --sg-orange-500: #E85D04;
  --sg-orange-600: #D35400;
  --sg-orange-400: #F07A30;
  --sg-orange-hover: #C74E00;

  /* Supporting */
  --sg-green-500: #2D8A4E;
  --sg-red-500:   #C0392B;
}


/* 2. BASE
   ============================================ */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--sg-gray-700);
}

textarea:hover, input:hover, textarea:active, input:active, textarea:focus, input:focus,
button:focus, button:active, button:hover, label:focus, .btn:active, .btn.active {
  outline: 0px !important;
  box-shadow: none !important;
}

.svg-white { filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
.text-shadow { text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6); }
img.img-auto { width: auto !important; }


/* 3. TYPOGRAPHY
   ============================================ */

h1, .h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--sg-blue-900);
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--sg-gray-800);
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--sg-blue-900);
}

h4, .h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sg-blue-600);
}

h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sg-blue-600);
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong,
.h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong, .h6 strong {
  font-weight: 700;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--sg-gray-600);
}

.text-sm { font-size: 0.875rem; line-height: 1.5; }

p.byline {
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--sg-gray-700);
  position: relative;
}

.text-bg-dark p.byline { color: var(--sg-white); }

/* Section-level heading overrides — hero and dark contexts */
.title-overlay h1,
h2.section-header,
.box-home h1, .box-home h2,
.box-products h2,
.box-services h2,
.box-industries h2,
.box-video h2,
.box-form h2,
.section-sub-title h1,
.box-cta h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.box-form h2, .box-cta h2 { font-size: 3rem; }

h2.section-header strong,
.box-home h1 strong,
.box-home h2 strong,
.section-sub-title h1 strong,
.box-cta h2 strong { color: var(--sg-blue-300); }

.text-bg-dark h1,
.text-bg-dark h2,
.text-bg-dark h3,
.text-bg-dark h4,
.text-bg-dark h5,
.text-bg-dark h6 { color: var(--sg-white) !important; }

.multi-column-text h2 { font-weight: 600; }
.multi-column-text h2, .normal-pages h2 { font-size: 2rem; }
.multi-column-text h3, .normal-pages h3 { color: var(--sg-blue-400); font-weight: 600; }
.multi-column-text h3 em, .normal-pages h3 em { color: var(--sg-gray-800); font-size: 1.1rem; font-weight: 400; }
.multi-column-text h2, .normal-pages h2,
.multi-column-text h3, .normal-pages h3,
.multi-column-text h4, .normal-pages h4 { margin-top: 1.8rem; margin-bottom: 0.9rem; }


/* 4. LINKS
   ============================================ */

a { color: var(--sg-blue-400); }
a:hover, a:focus, .text-success { color: var(--sg-blue-700); }


/* 5. UTILITY CLASSES
   ============================================ */

.bg-dark, .text-bg-dark { background-color: var(--sg-blue-900) !important; }
.bg-custom     { background-color: var(--sg-blue-400) !important; }
.bg-custom-1   { background-color: var(--sg-blue-600) !important; }
.bg-custom-2, .logo-wrap-sub { background-color: var(--sg-blue-900) !important; }
.bg-light-custom { background-color: var(--sg-blue-50) !important; }
.bg-light      { background-color: var(--sg-gray-50) !important; }
.text-custom   { color: var(--sg-blue-400) !important; }
.border-custom { border-color: var(--sg-blue-400) !important; }
.border-custom-1 { border-color: var(--sg-gray-800) !important; }


/* 6. LAYOUT
   ============================================ */

.section { padding: 100px 0; }

.section-dark {
  background: var(--sg-blue-900);
  color: var(--sg-white);
}
.section-dark h2,
.section-dark h3 { color: var(--sg-white); }
.section-dark p { color: rgba(255, 255, 255, 0.75); }

.card {
  background: var(--sg-white);
  border: 1px solid var(--sg-gray-200);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo-wrap { position: absolute; left: 0; top: 0; width: 100%; z-index: 100; }
.header-logo { margin-bottom: -29%; }
.dmax-70mob100 { width: 70%; margin-left: auto; margin-right: auto; }


/* 7. BUTTONS
   ============================================ */

.btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border-radius: 8px;
  font-size: 1rem;
  padding: 14px 32px;
  line-height: 1.4;
  font-weight: 600;
  border-width: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-lg { line-height: 1.6; }
.btn-sm { font-size: 0.875rem; padding: 8px 16px; line-height: 1.4; }

/* Primary CTA — Orange. One per viewport max. */
.btn-primary,
.btn-head {
  background-color: var(--sg-orange-500) !important;
  border-color: var(--sg-orange-500) !important;
  color: var(--sg-white) !important;
}
.btn-primary:hover, .btn-primary:focus,
.btn-head:hover, .btn-head:focus {
  background-color: var(--sg-orange-hover) !important;
  border-color: var(--sg-orange-hover) !important;
  color: var(--sg-white) !important;
}

/* Blue filled — secondary action */
.btn-custom {
  background-color: var(--sg-blue-500) !important;
  border-color: var(--sg-blue-500) !important;
  color: var(--sg-white) !important;
}
.btn-custom:hover, .btn-custom:focus {
  background-color: var(--sg-blue-700) !important;
  border-color: var(--sg-blue-700) !important;
  color: var(--sg-white) !important;
}

/* Dark blue filled */
.btn-custom-1 {
  background-color: var(--sg-blue-700) !important;
  border-color: var(--sg-blue-700) !important;
  color: var(--sg-white) !important;
}
.btn-custom-1:hover, .btn-custom-1:focus {
  background-color: var(--sg-blue-900) !important;
  border-color: var(--sg-blue-900) !important;
  color: var(--sg-white) !important;
}

/* Form submit */
.btn-form {
  background-color: var(--sg-orange-500) !important;
  border-color: var(--sg-orange-500) !important;
  color: var(--sg-white) !important;
  padding: 14px 3rem !important;
}
.btn-form:hover, .btn-form:focus {
  background-color: var(--sg-orange-hover) !important;
  border-color: var(--sg-orange-hover) !important;
}

/* Outlined — on light backgrounds */
.btn-secondary {
  background: transparent !important;
  color: var(--sg-blue-700) !important;
  border: 2px solid var(--sg-blue-700) !important;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--sg-blue-700) !important;
  color: var(--sg-white) !important;
}

/* Outlined — on dark backgrounds */
.btn-secondary-light {
  background: transparent !important;
  color: var(--sg-white) !important;
  border: 2px solid var(--sg-white) !important;
}
.btn-secondary-light:hover, .btn-secondary-light:focus {
  background: var(--sg-white) !important;
  color: var(--sg-blue-900) !important;
}


/* 8. HEADER
   ============================================ */

.topbar.sub-top { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: transparent !important; transition: background-color 0.3s ease; }
.topbar.sub-top.scrolled { background-color: var(--sg-blue-900) !important; }
.topbar.fixed-top { position: fixed; top: 0; background-color: var(--sg-blue-900); }
.topbar.sub-top.fixed-top { left: 0; }
.topbar.fixed-top .navbar-brand img { width: auto; height: 80px; }
.topbar.fixed-top { border-bottom: var(--sg-blue-800) 1px solid; }


/* 9. HERO / TITLE MODULE
   ============================================ */

/* sg_hero component */
.sg-hero {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    background-color: var(--sg-blue-900);
}
.sg-hero img[aria-hidden="true"] { display: block; }

.sg-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(13,27,42,0.92) 0%,
        rgba(13,27,42,0.6) 35%,
        rgba(13,27,42,0.2) 70%,
        rgba(13,27,42,0.05) 100%
    );
}

.sg-hero__content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sg-hero__text {
    max-width: 640px;
}

@media (max-width: 767.98px) {
    .sg-hero { min-height: 70vh; }
    .sg-hero__content { bottom: 48px; padding: 0 24px; }
}

/* Compact hero — used when no background image is set */
.sg-hero-compact {
    min-height: 40vh !important;
    padding: 80px 0 60px !important;
}

/* Hero button group */
.sg-hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sg-hero-buttons .btn-primary,
.sg-hero-buttons .btn-secondary-light {
    min-width: 200px;
    text-align: center;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    border-radius: 6px !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

/* Secondary hover: fill orange */
.sg-hero-buttons .btn-secondary-light:hover,
.sg-hero-buttons .btn-secondary-light:focus {
    background: #FF6B00 !important;
    border-color: #FF6B00 !important;
    color: #ffffff !important;
}

/* When hovering secondary, revert primary to outline */
.sg-hero-buttons:has(.btn-secondary-light:hover) .btn-primary {
    background-color: transparent !important;
    border-color: rgba(255,255,255,0.5) !important;
    color: #ffffff !important;
}

@media (max-width: 600px) {
    .sg-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .sg-hero-buttons .btn-primary,
    .sg-hero-buttons .btn-secondary-light {
        width: 100%;
        min-width: unset;
    }
}

.site-img-overlay { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 50; }
.section-sub-title,
.bg-sub { background: var(--sg-blue-900) url(images/bg-title.jpg) center center no-repeat; background-size: 100% auto; }
.section-sub-title h1, .section-sub-title h2,
.section-sub-title h3, .section-sub-title h4,
.section-sub-title h5 { color: var(--sg-white) !important; margin: 1rem 0 !important; font-weight: 600; }

.title-img { z-index: 1; }
.title-overlay { top: 15%; height: 80%; }
.title-overlay h1 { color: var(--sg-white); margin-bottom: 1rem; line-height: 1.1; font-weight: 700; text-transform: uppercase; }
.title-overlay p { margin: 0 0 1rem; color: var(--sg-white); font-size: 1.25rem; font-weight: 400; }
.title-overlay p.byline { font-size: 1.5rem; }
.title-overlay p strong { font-weight: 700; }
.title-slide-nav { position: absolute; left: 0; top: 50%; width: 94%; margin: -28px 3% 0; z-index: 51; }

.packages { position: absolute; bottom: 2%; right: 2%; width: 15%; z-index: 100; }
.title-slide-item { border: rgba(255, 255, 255, 0.1) 1px solid; color: var(--sg-white); }
.title-slide-item:hover, .title-slide-item:focus { background-color: var(--sg-blue-500); }


/* 10. MODULE STYLES
   ============================================ */

/* SG Solution Section */
.sg-solution {
    padding-top: 40px;
    padding-bottom: 100px;
    background: #ffffff;
    margin-top: 0 !important;
}

.sg-problem-section + .sg-solution {
    margin-top: 0 !important;
}

.sg-solution .sg-solution-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sg-solution .sg-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF6B00;
    margin-bottom: 16px;
    margin-top: 0;
}

.sg-solution h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 520px;
    color: #0D1B2A;
    margin-bottom: 28px;
    margin-top: 0;
}

.sg-solution .sg-solution-body p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 20px;
}

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

.sg-solution .sg-solution-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .sg-solution .sg-solution-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .sg-solution {
        padding: 60px 0;
    }
    .sg-solution h2 {
        font-size: 28px;
    }
    .sg-solution .sg-solution-image img {
        height: auto;
    }
}

/* Solution — Dark Variant */
.sg-solution.sg-solution-dark {
    background: #0D1B2A !important;
    padding: 120px 0;
}

.sg-solution.sg-solution-dark h2 {
    color: #ffffff;
}

.sg-solution.sg-solution-dark .sg-eyebrow {
    color: #FF6B00;
}

.sg-solution.sg-solution-dark .sg-solution-body p {
    color: rgba(255,255,255,0.8);
}

/* How It Works */
.sg-how-it-works {
    padding: 120px 0;
    background: #0D1B2A;
}

.sg-how-it-works .sg-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.sg-how-it-works .sg-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.sg-how-it-works .sg-section-header p {
    font-size: 18px;
    color: #94A3B8;
    margin: 0;
}

/* HOW IT WORKS — OPTION A — Reusable across all pages */

.sg-hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.sg-hiw-step {
    position: relative;
    padding: 48px 32px;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-top: 2px solid rgba(255,107,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.sg-hiw-step:last-child {
    border-right: none;
}

.sg-hiw-step__icon {
    width: 48px;
    height: 48px;
    color: #FF6B00;
    flex-shrink: 0;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-hiw-step__icon svg {
    width: 100%;
    height: 100%;
    stroke: #FF6B00;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sg-hiw-step__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.sg-hiw-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.sg-hiw-step__text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.sg-hiw-step__label {
    display: none;
}

.sg-hiw-step__stat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF6B00;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border: 1px solid rgba(255,107,0,0.3);
    border-radius: 50px;
    background: rgba(255,107,0,0.06);
    white-space: nowrap;
    align-self: center;
    margin-top: auto;
}

/* Step 4 — prevention climax */
.sg-hiw-step--climax .sg-hiw-step__title {
    color: #FF6B00;
    text-shadow: 0 0 40px rgba(255,107,0,0.3);
}

.sg-hiw-step--climax .sg-hiw-step__stat,
.sg-hiw-step:last-child .sg-hiw-step__stat {
    background: rgba(255,107,0,0.12);
    border-color: rgba(255,107,0,0.5);
}

/* Background step number — subtle depth */
.sg-hiw-step__number {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.03);
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .sg-hiw-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(255,255,255,0.06);
    }
    .sg-hiw-step {
        background: #0D1B2A;
        border-right: none;
        padding: 32px 24px;
    }
    .sg-how-it-works {
        padding: 60px 0;
    }
    .sg-how-it-works .sg-section-header h2 {
        font-size: 28px;
    }
}

/* Proof Section */
.sg-proof-section {
    background: #F8F9FA;
    padding: 64px 0 100px;
}

.sg-proof-section .sg-proof-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.sg-proof-section .sg-proof-heading {
    text-align: center;
    margin-bottom: 40px;
}

.sg-proof-section .sg-proof-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0D1B2A;
    margin: 0;
}

.sg-proof-section .sg-stats-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(13,27,42,0.1);
}

.sg-proof-section .sg-stat-item {
    text-align: center;
    flex: 1;
}

.sg-proof-section .sg-stat-item + .sg-stat-item {
    border-left: 1px solid rgba(13,27,42,0.1);
    padding-left: 40px;
}

.sg-proof-section .stat-number {
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    color: #FF6B00 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em;
    display: block;
    white-space: nowrap;
}

.sg-proof-section .stat-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #6B7280 !important;
    display: block;
    margin-top: 8px;
}

.sg-proof-section .sg-proof-quote {
    max-width: 680px;
    margin: 60px auto 0;
    padding: 0;
    border: none;
    text-align: center;
    background: none !important;
    box-shadow: none !important;
}


.sg-proof-section .sg-proof-quote blockquote,
.sg-proof-section .sg-proof-quote blockquote * {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sg-proof-section .sg-proof-quote blockquote p,
.sg-proof-section .sg-proof-quote p {
    font-size: 1.0625rem !important;
    font-weight: 400;
    line-height: 1.75 !important;
    color: #2a2a3a !important;
    font-style: normal;
    text-transform: none !important;
    text-align: center;
    margin: 0 !important;
}

.sg-proof-section .sg-proof-quote .quote-author,
.sg-proof-section .sg-proof-quote cite {
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: #FF6B00 !important;
    font-style: normal !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 12px !important;
}

@media (max-width: 768px) {
    .sg-proof-section .sg-stats-row {
        flex-direction: column;
        gap: 32px;
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
    .sg-proof-section {
        padding: 60px 0;
    }
    .sg-proof-section .sg-proof-inner {
        padding: 0 20px;
    }
}

.sg-territory-section {
    padding: 120px 0;
    background: #0D1B2A;
    position: relative;
    overflow: hidden;
}

.sg-territory-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sg-territory-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sg-territory-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF6B00;
}

.sg-territory-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0;
}

.sg-territory-content p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin: 0;
}

.sg-territory-stats {
    display: flex;
    gap: 32px;
    padding-top: 8px;
}

.sg-territory-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sg-territory-stat__number {
    font-size: 2rem;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1;
    letter-spacing: -0.02em;
}

.sg-territory-stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.sg-territory-map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-territory-map svg {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 48px rgba(255,107,0,0.1));
}

.sg-map-marker {
    cursor: default;
}

.sg-map-marker circle.marker-ring {
    animation: pulse 2.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; r: 8; }
    50% { opacity: 0.1; r: 12; }
}

@media (max-width: 900px) {
    .sg-territory-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .sg-territory-map {
        order: -1;
    }
    .sg-territory-content h2 {
        font-size: 1.875rem;
    }
}

/* Buttons */
.sg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.sg-btn--primary {
    background: #FF6B00;
    color: #ffffff;
}

.sg-btn--primary:hover {
    background: #e55f00;
    color: #ffffff;
}

.sg-btn--primary svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.sg-btn--primary:hover svg {
    transform: translateX(3px);
}

.sg-btn--secondary {
    background: transparent;
    color: #0D1B2A;
    border: 2px solid #0D1B2A;
}

.sg-btn--secondary:hover {
    background: #0D1B2A;
    color: #ffffff;
}

/* On dark navy sections — secondary button inverts */
.sg-section--dark .sg-btn--secondary,
.sg-cta-band .sg-btn--secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
}

.sg-section--dark .sg-btn--secondary:hover,
.sg-cta-band .sg-btn--secondary:hover {
    background: #ffffff;
    color: #0D1B2A;
    border-color: #ffffff;
}

/* Hero sits on dark — secondary button white outline */
.sg-hero .sg-btn--secondary {
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
}

.sg-hero .sg-btn--secondary:hover {
    background: #ffffff;
    color: #0D1B2A;
    border-color: #ffffff;
}

.sg-btn svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* Paired button group — base layout */
.sg-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* Smooth transition on all buttons inside a group */
.sg-btn-group .sg-btn {
    transition: background 0.2s ease, color 0.2s ease,
                border-color 0.2s ease;
}

/* Paired button swap effect — secondary hover only */

/* Hovering secondary: secondary goes orange, primary inverts to outline */
.sg-btn-group:has(.sg-btn--secondary:hover) .sg-btn--secondary {
    background: #FF6B00;
    color: #ffffff;
    border-color: #FF6B00;
}

.sg-btn-group:has(.sg-btn--secondary:hover) .sg-btn--primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
}

.sg-founder-cta {
    margin-top: 32px;
}

/* Founder → CTA gap fix */
.sg-founder-section {
    margin-bottom: 0 !important;
    padding-bottom: 100px;
}

.sg-cta-band {
    margin-top: 0 !important;
}

/* CTA Band */
.sg-cta-band {
    background: #0D1B2A;
    padding: 80px 0;
    text-align: center;
}

.sg-cta-band-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

.sg-cta-band h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    margin-top: 0;
}

.sg-cta-subtext {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    margin-top: 0;
}

.sg-cta-band .sg-cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .sg-cta-band .sg-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .sg-cta-band .sg-cta-buttons .sg-btn {
        width: 100%;
        min-width: unset;
        justify-content: center;
    }
}

.sg-cta-phone {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.sg-cta-phone a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
}

.sg-cta-phone a:hover {
    color: #FF6B00;
}

@media (max-width: 768px) {
    .sg-cta-band {
        padding: 60px 0;
    }
    .sg-cta-band h2 {
        font-size: 32px;
    }
    .sg-cta-band-inner {
        padding: 0 20px;
    }
}

/* Founder Trust Section */
.sg-founder-section {
    background: #ffffff;
    padding: 100px 0;
}

.sg-founder-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sg-founder-media {
    border-radius: 12px;
    overflow: hidden;
    background: #0D1B2A;
}

.sg-founder-video {
    position: relative;
    aspect-ratio: 16/9;
}

.sg-founder-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.sg-founder-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.sg-founder-video-placeholder {
    aspect-ratio: 16/9;
    background: #0D1B2A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 12px;
}

.sg-play-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,107,0,0.15);
    border: 2px solid #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-founder-video-placeholder p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin: 0;
}

.sg-founder-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF6B00;
    margin-bottom: 12px;
    margin-top: 0;
}

.sg-founder-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 8px;
    margin-top: 0;
}

.sg-founder-title {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 36px;
    margin-top: 0;
}

.sg-founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.sg-credential {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sg-credential-icon {
    color: #FF6B00;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sg-credential span:last-child {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.sg-founder-link {
    font-size: 15px;
    font-weight: 600;
    color: #0D1B2A;
    text-decoration: none;
    border-bottom: 2px solid #FF6B00;
    padding-bottom: 2px;
}

.sg-founder-link:hover {
    color: #FF6B00;
}

@media (max-width: 768px) {
    .sg-founder-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .sg-founder-section {
        padding: 60px 0;
    }
    .sg-founder-content h2 {
        font-size: 28px;
    }
}

/* FAQ Section */
.sg-faq-section {
    background: #F8F9FA !important;
    padding: 100px 0;
    margin-top: 0 !important;
}

.sg-founder-section {
    margin-bottom: 0 !important;
    padding-bottom: 100px;
}

.sg-faq-section h2 {
    color: #0D1B2A;
    font-size: 38px;
    font-weight: 700;
}

.sg-faq-section .accordion-item {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.sg-faq-section .accordion-button {
    background: #ffffff;
    color: #0D1B2A;
    font-size: 17px;
    font-weight: 600;
    padding: 20px 24px;
    box-shadow: none;
}

.sg-faq-section .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #0D1B2A;
    box-shadow: none;
}

.sg-faq-section .accordion-button:focus {
    box-shadow: none;
}

.sg-faq-section .accordion-body {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    padding: 0 24px 24px 24px;
}

@media (max-width: 768px) {
    .sg-faq-section {
        padding: 60px 0;
    }
    .sg-faq-section h2 {
        font-size: 28px;
    }
}

/* Industries Grid */
.sg-industries-section {
    padding: 100px 0 48px;
    background: #ffffff;
}

.sg-industries-section .sg-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.sg-industries-section .sg-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 12px;
}

.sg-industries-section .sg-section-header p {
    font-size: 18px;
    color: #6B7280;
}

.sg-industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sg-industry-card {
    position: relative;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    text-decoration: none;
}

.sg-industry-card--farming {
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1200&q=80');
}

.sg-industry-card--construction {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&q=80');
}

.sg-industry-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.2) 60%, transparent 100%);
}

.sg-industry-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
    max-width: 480px;
}

.sg-industry-card__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 8px;
}

.sg-industry-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.25;
}

.sg-industry-card__desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 16px;
    line-height: 1.5;
}

.sg-industry-card__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #FF6B00;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.sg-industry-card:hover .sg-industry-card__link {
    color: #e55f00;
}

.sg-industries-also {
    margin-top: 32px;
}

.sg-industries-also__label {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(13,27,42,0.4);
    margin-bottom: 16px;
}

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

.sg-industries-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(13,27,42,0.12);
    border-radius: 50px;
    background: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0D1B2A;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.sg-industries-pill:hover {
    border-color: rgba(255,107,0,0.3);
    background: rgba(255,107,0,0.04);
}

.sg-industries-pill svg {
    width: 16px;
    height: 16px;
    stroke: #FF6B00;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

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

    .sg-industry-card {
        height: 320px;
    }

    .sg-industries-also__pills {
        gap: 8px;
    }

    .sg-industries-pill {
        font-size: 0.8125rem;
        padding: 8px 14px;
    }
}

/* Problem grid cards */
.sg-problem-item { transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.sg-problem-item:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); border-color: rgba(255, 255, 255, 0.25) !important; }

/* Problem — image card redesign */
.sg-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.sg-problem-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sg-problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
}

.sg-problem-card__image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.sg-problem-card__body {
    background: rgba(255,255,255,0.05);
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sg-problem-card__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 10px;
}

.sg-problem-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sg-problem-card__text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0;
    margin-top: auto;
}

@media (max-width: 768px) {
    .sg-problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Features */
.feature-item { border-left: var(--sg-gray-200) 1px solid; }
.feature-items div.col-12:first-child .feature-item { border-left: none; }

/* Home / Overview */
.box-home { background: var(--sg-blue-50) url(images/bg-solar-tower.jpg) center center no-repeat; background-size: cover; }
.box-home h2 { color: var(--sg-gray-800); }
.box-home h3 { color: var(--sg-blue-600); font-size: 2.5rem; text-transform: uppercase; }
.box-home h3 em { font-style: normal; font-size: 1.25rem; }

/* Products */
.box-products h2 { color: var(--sg-white); }
.product-item .product-img { display: block; }
.product-item:hover .product-img { display: none; }
.product-item .product-img-hov { display: none; }
.product-item:hover .product-img-hov { display: block; }
.product-item h3 { color: var(--sg-white); font-size: 1.25rem; }
.product-item p { color: rgba(255, 255, 255, 0.8); font-size: 1rem; }

/* Services */
.box-contact { background: var(--sg-blue-400) url(images/contact-bg.png) right bottom no-repeat; background-size: 12% auto; }
.service-item { background-color: var(--sg-blue-50); }
.service-item .serv-img { display: block; }
.service-item:hover { background-color: var(--sg-blue-500); }
.service-item:hover .serv-img { display: none; }
.service-item .serv-img-hov { display: none; }
.service-item:hover .serv-img-hov { display: block; }
.service-item h3, .service-item p { color: var(--sg-gray-800) !important; }
.service-item:hover h3, .service-item:hover p { color: var(--sg-white) !important; }
.service-item span.btn-custom-1:hover,
.service-item span.btn-custom-1:focus { background-color: var(--sg-blue-700) !important; border-color: var(--sg-blue-700) !important; color: var(--sg-white) !important; }

/* Industries */
.industry-item h3 { position: absolute; left: 0; bottom: 0; margin: 0; font-size: 1.25rem; }

/* Video */
.box-video h2 { color: var(--sg-gray-800); }
.box-video ul { list-style: none; }
.box-video ul li { padding: 0.5rem 0 0.5rem 4rem; background: url(images/icon-adv-features.png) left center no-repeat; background-size: 50px auto; font-size: 1.5rem; margin-top: 0.5rem; }
.bg-video, .bg-video-1 { position: absolute; left: 0; top: 5%; max-width: 14%; z-index: -1; }
.bg-video-1 { left: auto; right: 0; top: auto; bottom: 5%; max-width: 20%; }

/* Form section */
.box-form { background: url(images/bg-form.png) left bottom no-repeat; background-size: 27% auto; }
.form-text { min-height: 900px; }
.form-form h3 { font-weight: 400; }

/* CTA band */
.box-cta { background: url(images/bg-cta.jpg) center center no-repeat; background-size: cover; }
.box-cta h2 { color: var(--sg-white); }

/* Projects */
.project-item { position: relative; }
.project-item .project-text { position: absolute; left: 0; bottom: 0; }
.project-item .project-text h3 { color: var(--sg-white); margin-bottom: 1px; }
.project-item .project-text p { color: var(--sg-blue-100); margin-bottom: 0; }

/* Cert logos */
.cert-logos img { width: auto !important; max-height: 160px; }


/* 11. COMPONENTS
   ============================================ */

/* Stats bar */
.stats-bar { background: var(--sg-blue-50); padding: 2rem 0; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--sg-blue-700); }
.stat-label { font-size: 0.875rem; color: var(--sg-gray-500); text-transform: uppercase; letter-spacing: 0.05em; }

/* Accordion */
.box-accordion { font-size: 1.1rem !important; }
.box-accordion .accordion { border: none !important; }
.multi-column-text .box-accordion h2.accordion-header { margin: 0 !important; }
.box-accordion button.accordion-button { color: var(--sg-gray-800) !important; background-color: var(--sg-white); padding: 1.5rem 2rem; font-size: 1.125rem; font-weight: 600; }
.box-accordion button.accordion-button::after { content: '+'; font-weight: 500; display: inline-block; border: none; font-size: 1.5rem; line-height: 30px; background-image: none; width: 32px; height: 32px; border-radius: 16px; text-align: center; }
.box-accordion button.accordion-button:not(.collapsed)::after { content: '–'; background-image: none; line-height: 27px; }
.box-accordion .accordion-button:not(.collapsed) { box-shadow: none !important; }
.box-accordion .accordion-body { padding: 1.5rem 2rem; padding-top: 0; }
.box-accordion .accordion-body p:last-child { margin-bottom: 0 !important; }
.accordion-item { margin-top: 0.5rem; border-radius: 8px !important; border: var(--sg-gray-200) 1px solid !important; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--sg-gray-200); padding: 1.25rem 0; }
.faq-question { font-size: 1.125rem; font-weight: 600; color: var(--sg-gray-800); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { font-size: 1rem; color: var(--sg-gray-600); line-height: 1.7; padding-top: 0.75rem; }

/* Testimonials */
.testimonial-item { background: var(--sg-gray-50); border: 1px solid var(--sg-gray-200); border-radius: 12px; padding: 1.5rem; }
.review-box { min-height: 250px; background: var(--sg-blue-500); font-size: 0.9rem; }
.review-box h3 { color: var(--sg-white); }
.review-text p:last-child { margin-bottom: 0; }
.review-author, .review-author h3 { color: var(--sg-blue-600); }
.review-footer { left: 0; width: 100%; text-align: center; }
.review-name { color: var(--sg-white); font-size: 0.9rem; }
.review-name strong { font-weight: 700; }
.review-img { max-width: 80px; }
.review-icon { float: right; max-width: 40px; }

blockquote { background: var(--sg-blue-50); font-style: italic; font-weight: 700; padding: 1rem 1.25rem; border-radius: 8px; border-left: var(--sg-blue-400) 4px solid; display: inline-block; }
blockquote p:last-child { margin-bottom: 0; }
.box-home blockquote { margin-bottom: 1.5rem; }
.author-testimonial { color: var(--sg-blue-500); font-style: normal; }

/* News / blog */
.news-image { height: 300px; background-size: 100% auto; background-repeat: no-repeat; }
.search .news-image { background-size: auto 100%; }
.news-image img { height: 100%; }

/* Carousel — retained for existing templates */
.owl-nav { position: absolute; left: 0; top: 0; width: 100%; margin-top: 3px; height: 0; overflow: visible; }
.owl-prev { float: left; margin-left: -10%; }
.owl-next { float: right; margin-right: -10%; }
#owl-title .owl-prev { float: left; margin-left: 0; }
#owl-title .owl-next { float: right; margin-right: 0; }
.owl-prev span, .owl-next span { font-size: 0; border-radius: 0; background: url(images/arrow-prev.png) 0 0 no-repeat; background-size: 100% auto; width: 30px; height: 30px; display: inline-block; opacity: 0.5; }
.owl-next span { background-image: url(images/arrow-next.png); }
.owl-prev:hover span, .owl-next:hover span,
.owl-prev:focus span, .owl-next:focus span { opacity: 1; }
#owl-title .owl-dots { display: none; }
.owl-dots { display: block; width: 100%; text-align: center; line-height: 0; margin-top: 2rem; }
.owl-dots .owl-dot { width: 20px; height: 5px; display: inline-block; background-color: rgba(0, 0, 0, 0.2) !important; margin: 0 0.1rem; }
.owl-dots .owl-dot.active { background-color: var(--sg-blue-600) !important; }
#owl-products .owl-nav { position: relative; left: auto; top: auto; width: auto; margin-top: 1rem; height: auto; float: right; }
#owl-products .owl-dots { display: block; width: 50%; text-align: left; line-height: 0; margin-top: 4rem; }
#owl-products .owl-dots .owl-dot { width: 10px; height: 10px; border-radius: 5px; }
#owl-products .owl-dots .owl-dot.active { width: 30px; background-color: var(--sg-blue-400) !important; }
#owl-products .owl-prev span, #owl-products .owl-next span { background: url(images/arrow-prev-b.png) 0 0 no-repeat; width: 40px; height: 40px; background-size: 100% auto; }
#owl-products .owl-next span { background-image: url(images/arrow-next-b.png); }

/* Back to top */
#back-top { z-index: 110; }


/* 12. FOOTER
   ============================================ */

footer { font-size: 1rem; }
.border-footer-1 { border-left: rgba(255, 255, 255, 0.1) 1px solid; }
footer ul li { margin: 10px 0 0; }
.box-footer a, .box-footer ul li a { text-decoration: none; color: var(--sg-white) !important; }
.box-footer a:hover, .box-footer a:focus,
.box-footer ul li a:hover, .box-footer ul li a:focus { text-decoration: none; color: var(--sg-blue-300) !important; }
.footer-btm-menu li { display: inline; margin: 0 5px; }
.footer-contact { font-weight: 600; font-size: 1rem; }
.footer-credits { background: var(--sg-gray-50); border-top: var(--sg-gray-200) 1px solid; }
.footer-credits a { color: var(--sg-gray-800); text-decoration: none; }
.footer-credits a:focus, .footer-credits a:hover { color: var(--sg-blue-400) !important; }
.footer-logo { max-width: 70%; }


/* 13. RESPONSIVE
   ============================================ */

@media (max-width: 1400px) {
  .title-overlay h1,
  h2.section-header,
  .box-home h1, .box-home h2,
  .box-products h2, .box-services h2,
  .box-industries h2, .box-video h2,
  .box-form h2, .section-sub-title h1,
  .box-cta h2 { font-size: 3rem; }
  .box-form h2, .box-cta h2 { font-size: 2.5rem; }
}

@media (max-width: 1200px) {
  .title-overlay { height: 100%; }
  .btn { font-size: 1rem; padding: 12px 24px; }
  .border-footer-1 { border: none !important; }
  .title-overlay h1,
  h2.section-header,
  .box-home h1, .box-home h2,
  .box-products h2, .box-services h2,
  .box-industries h2, .box-video h2,
  .box-form h2, .section-sub-title h1,
  .box-cta h2 { font-size: 2.5rem; }
  .box-form h2, .box-cta h2 { font-size: 2rem; }
  .footer-address li { justify-content: center; }
  .box-form { background-image: none; }
  .form-text { min-height: 100px; }
}

@media (max-width: 991.98px) {
  .topbar { position: relative; top: auto; left: auto; width: 100%; background-color: var(--sg-blue-900); }
  .topbar.fixed-top { position: fixed; }
  .site-img-overlay { position: relative; left: auto; top: auto; width: 100%; height: auto; }
  .box-image-over-text-overlay { position: relative; }
  .title-box { background-image: none; width: 100%; max-width: 100%; }
  .container { max-width: 94% !important; }
  .foot-boxes, .foot-logo { max-width: 500px !important; margin: 0 auto; }
  .mobile-overlay { background-color: var(--sg-blue-900); }
  .feature-item { border: none; }
  .bg-video, .bg-video-1 { display: none; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 767.98px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.75rem; }
  h3, .h3 { font-size: 1.25rem; }
  p { font-size: 1rem; }

  .title-overlay h1,
  h2.section-header,
  .box-home h1, .box-home h2,
  .box-products h2, .box-services h2,
  .box-industries h2, .box-video h2,
  .box-form h2, .section-sub-title h1,
  .box-cta h2 { font-size: 2rem; }
  .box-form h2, .box-cta h2 { font-size: 1.75rem; }

  .custom-overlay { background-image: none; }
  footer .list-group { justify-content: center; }
  .dmax-70mob100 { width: 100%; }
  .box-home, .box-tb { background-image: none; }
  footer h4 { font-size: 1.25rem !important; }
  .box-featured .container, .box-icons .container, .box-footer .container { max-width: 100% !important; margin: 0 auto; }
  .box-accordion button.accordion-button { padding: 1rem 1.5rem; }
  .section-sub-title h3 { font-size: 1.25rem; }
  .packages { position: relative; width: 100%; background-color: var(--sg-blue-900); right: auto; bottom: auto; padding-bottom: 1.5rem; }
  .packages-top { display: none; }
  #owl-packages { max-width: 250px; margin: 0 auto; }
  .btn-phone { padding-right: 1.5rem; padding-left: 1.5rem; }
  .box-video ul li { font-size: 1.1rem; }
  .form-form h3 { font-size: 1.2rem; }
  .header-logo { width: 85px; }
  .footer-logo { width: 180px; }
  .section { padding: 3rem 0; }
}

@media (max-width: 600px) {
  h2 br { display: none; }
  .soc-f-icon { width: 30px; }
}

@media (max-width: 420px) {
  .title-overlay h1,
  h2.section-header,
  .box-home h1, .box-home h2,
  .box-products h2, .box-services h2,
  .box-industries h2, .box-video h2,
  .box-form h2, .section-sub-title h1,
  .box-cta h2 { font-size: 1.75rem; }
}

/* Founder Trust — Expanded Variant (Territory, About pages) */
.sg-founder-expanded {
    background: #ffffff;
    padding: 100px 0;
    margin-top: 0 !important;
}

.sg-founder-expanded-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sg-founder-expanded-photo {
    position: sticky;
    top: 40px;
}

.sg-founder-expanded-photo img,
.sg-founder-photo-placeholder {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    display: block;
    background: #1a2e45;
}

.sg-founder-expanded .sg-founder-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF6B00;
    margin-bottom: 12px;
    margin-top: 0;
}

.sg-founder-expanded h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 8px;
    margin-top: 0;
}

.sg-founder-expanded .sg-founder-title {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 24px;
    margin-top: 0;
}

.sg-founder-expanded .sg-founder-bio {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 32px;
}

.sg-founder-expanded .sg-founder-bio p {
    margin-bottom: 16px;
    color: #374151 !important;
}

.sg-founder-expanded .sg-founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
    border-top: 1px solid #E5E7EB;
    padding-top: 24px;
}

.sg-founder-expanded .sg-founder-credentials .sg-credential {
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.sg-founder-expanded .sg-founder-credentials .sg-credential:last-child {
    border-bottom: none;
}

.sg-founder-expanded .sg-credential {
    display: flex;
    align-items: flex-start;
}

.sg-founder-expanded .sg-credential span {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.sg-founder-expanded .sg-founder-link {
    font-size: 15px;
    font-weight: 600;
    color: #0D1B2A;
    text-decoration: none;
    border-bottom: 2px solid #FF6B00;
    padding-bottom: 2px;
}

.sg-founder-expanded .sg-founder-link:hover {
    color: #FF6B00;
    border-color: #FF6B00;
}

@media (max-width: 900px) {
    .sg-founder-expanded-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .sg-founder-expanded {
        padding: 60px 0;
    }
    .sg-founder-expanded-photo img,
    .sg-founder-photo-placeholder {
        height: 360px;
    }
    .sg-founder-expanded h2 {
        font-size: 28px;
    }
}

/* Contact Form Section */
.sg-contact-form-section {
    background: #ffffff;
    padding: 80px 0;
}

.sg-contact-form-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 40px;
}

.sg-contact-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #6B7280;
    text-align: center;
    margin-bottom: 48px;
}

/* HubSpot form overrides to match Site Guardian design */
.sg-contact-form-inner .hs-form-frame {
    width: 100%;
}

.sg-contact-form-inner input[type="text"],
.sg-contact-form-inner input[type="email"],
.sg-contact-form-inner input[type="tel"],
.sg-contact-form-inner select,
.sg-contact-form-inner textarea {
    width: 100% !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    font-family: Inter, sans-serif !important;
    color: #0D1B2A !important;
    margin-bottom: 8px !important;
}

.sg-contact-form-inner input[type="submit"],
.sg-contact-form-inner .hs-button {
    background: #FF6B00 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: Inter, sans-serif !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 8px !important;
}

.sg-contact-form-inner input[type="submit"]:hover,
.sg-contact-form-inner .hs-button:hover {
    background: #e55f00 !important;
}

.sg-contact-form-inner .hs-error-msg {
    color: #DC2626 !important;
    font-size: 13px !important;
}

.sg-contact-form-inner label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0D1B2A !important;
    margin-bottom: 6px !important;
    display: block !important;
}

@media (max-width: 768px) {
    .sg-contact-form-inner {
        padding: 0 20px;
    }
    .sg-contact-form-section {
        padding: 60px 0;
    }
}

/* Hide HubSpot free tier watermark — scoped */
.sg-contact-form-inner .hs-form__virality-link,
.sg-contact-form-inner .hs-form__virality-link-cell,
.sg-contact-form-inner [class*="virality"],
.sg-contact-form-inner .legal-consent-container ~ div,
.hs-form-frame + p,
.hs-form-iframe + p {
    display: none !important;
}

/* Hide HubSpot free tier watermark — global (catches injected markup outside wrapper) */
.hs-form__virality-link,
.hs-form__virality-link-cell,
[class*="hs-form__virality"] {
    display: none !important;
}

/* ── sg_differentiators ─────────────────────────────────────────────── */

.sg-diff-section {
    padding: 120px 0;
    background: #0D1B2A;
    position: relative;
}
.sg-diff-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sg-diff-header {
    text-align: center;
    margin-bottom: 64px;
}
.sg-diff-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.15;
}
.sg-diff-subheading {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.sg-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.06);
}
.sg-diff-card {
    position: relative;
    background: #0D1B2A;
    padding: 48px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sg-diff-card:hover {
    border-left-color: #FF6B00;
}
.sg-diff-card__number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 24px;
    right: 24px;
    letter-spacing: -4px;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
    user-select: none;
}
.sg-diff-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sg-diff-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}
.sg-diff-card__text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}
.sg-diff-card__stat {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .sg-diff-grid {
        grid-template-columns: 1fr;
    }
    .sg-diff-card {
        padding: 36px 28px;
    }
    .sg-diff-card__number {
        font-size: 4rem;
    }
}