/* ============================================================
   RS&O Group — Public Website Shared CSS
   Brand: Navy #0c2340, Teal #17a2b8, Gold #c49a28
   Framework: Bootstrap 5.3.2 + Inter font
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy:         #0c2340;
  --navy-light:   #1a3a5a;
  --navy-mid:     #112b4e;
  --teal:         #17a2b8;
  --teal-light:   #20c9e0;
  --teal-dark:    #128293;
  --gold:         #c49a28;
  --gold-light:   #d4af37;
  --gold-dark:    #9e7c1a;
  /* Division accent colours */
  --cc-color:     #17a2b8;
  --sm-color:     #1a7a55;
  --cp-color:     #c49a28;
  /* Neutrals */
  --white:        #ffffff;
  --gray-50:      #f8f9fa;
  --gray-100:     #f1f3f5;
  --gray-200:     #e9ecef;
  --gray-300:     #dee2e6;
  --gray-400:     #ced4da;
  --gray-500:     #adb5bd;
  --gray-600:     #6c757d;
  --gray-700:     #495057;
  --gray-800:     #343a40;
  --gray-900:     #212529;
  --section-py:   96px;
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s; }

/* ── Navigation ─────────────────────────────────────────── */
.g-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(12, 35, 64, 0.07);
}
.g-nav .container-fluid,
.g-nav .container { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.g-nav .navbar-brand img { height: 38px; width: auto; }
.g-nav .nav-link {
  color: var(--gray-700) !important;
  font-weight: 500;
  font-size: 0.935rem;
  padding: 0.5rem 0.875rem !important;
  transition: color 0.2s;
  white-space: nowrap;
}
.g-nav .nav-link:hover { color: var(--navy) !important; }
.g-nav .nav-link.active { color: var(--teal) !important; font-weight: 600; }

/* Customer Login button */
.g-nav-login {
  color: var(--gray-700) !important;
  border: 1px solid var(--gray-300);
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem !important;
  transition: border-color 0.2s, color 0.2s !important;
  text-decoration: none;
  white-space: nowrap;
}
.g-nav-login:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
}

/* Navbar dividers */
.g-nav .nav-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
  align-self: center;
  margin: 0 0.25rem;
}

/* Dropdown */
.g-nav .dropdown-menu {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(12, 35, 64, 0.10);
  padding: 0.5rem 0;
  min-width: 210px;
  margin-top: 0.3rem;
}
.g-nav .dropdown-item {
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  transition: color 0.15s, background 0.15s;
}
.g-nav .dropdown-item:hover { color: var(--teal); background: var(--gray-50); }
.g-nav .dropdown-divider { border-color: var(--gray-200); margin: 0.3rem 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-g-primary {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 0.8rem 2.1rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.975rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1;
}
.btn-g-primary:hover,
.btn-g-primary:focus {
  background: var(--navy-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 35, 64, 0.2);
  text-decoration: none;
}
.btn-g-teal {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 0.8rem 2.1rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.975rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1;
}
.btn-g-teal:hover,
.btn-g-teal:focus {
  background: var(--teal-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 162, 184, 0.25);
  text-decoration: none;
}
.btn-g-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.78rem 2rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.975rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.btn-g-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
  text-decoration: none;
}
.btn-g-outline-navy {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 0.78rem 2rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.975rem;
  text-decoration: none;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.btn-g-outline-navy:hover {
  background: var(--navy);
  color: white;
  text-decoration: none;
}
/* Size variants */
.btn-g-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 8px;
}
.btn-g-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
}

/* Division link buttons */
.btn-div-cc { color: var(--cc-color) !important; }
.btn-div-sm { color: var(--sm-color) !important; }
.btn-div-cp { color: var(--cp-color) !important; }

/* ── Sections ─────────────────────────────────────────────── */
.g-section { padding: var(--section-py) 0; }
.g-section-sm { padding: 64px 0; }
.g-section-gray { background: var(--gray-50); }
.g-section-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
}
.g-section-navy h2, .g-section-navy h3, .g-section-navy h4 { color: white; }
.g-section-navy p, .g-section-navy li { color: rgba(255, 255, 255, 0.85); }

/* ── Eyebrow / Typography ─────────────────────────────────── */
.g-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.g-eyebrow-cc { color: var(--cc-color); }
.g-eyebrow-sm { color: var(--sm-color); }
.g-eyebrow-cp { color: var(--cp-color); }

.g-section-label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.g-section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.g-section-intro {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 720px;
}
.g-section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.g-text-center-block { text-align: center; margin-bottom: 3.5rem; }

/* ── Hero (homepage) ─────────────────────────────────────── */
.g-hero {
  background: linear-gradient(150deg, var(--navy) 0%, #0e2a4a 55%, var(--navy-light) 100%);
  color: white;
  padding: 120px 0 108px;
  position: relative;
  overflow: hidden;
}
.g-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 55%, rgba(23, 162, 184, 0.13) 0%, transparent 45%),
    radial-gradient(circle at 88% 20%, rgba(32, 201, 224, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(196, 154, 40, 0.05) 0%, transparent 35%);
  pointer-events: none;
}
.g-hero-content { position: relative; z-index: 2; }

.g-hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.13;
  color: white;
  margin-bottom: 1.5rem;
}
.g-hero h1 .h-accent { color: var(--teal-light); }
.g-hero .g-hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.g-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.g-hero-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
}

/* ── Page header (inner pages) ─────────────────────────────── */
.g-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.g-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(23, 162, 184, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(32, 201, 224, 0.07) 0%, transparent 40%);
  pointer-events: none;
}
.g-page-header-inner { position: relative; z-index: 2; }
.g-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.25rem;
}
.g-page-header .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.83);
  max-width: 680px;
  line-height: 1.78;
  margin-bottom: 0;
}
/* Division colour bar at bottom */
.g-page-header.hdr-cc::after,
.g-page-header.hdr-sm::after,
.g-page-header.hdr-cp::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
}
.g-page-header.hdr-cc::after { background: var(--cc-color); }
.g-page-header.hdr-sm::after { background: var(--sm-color); }
.g-page-header.hdr-cp::after { background: var(--cp-color); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.g-breadcrumb {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.65rem 0;
}
.g-breadcrumb .breadcrumb { margin: 0; font-size: 0.875rem; }
.g-breadcrumb .breadcrumb-item a { color: var(--teal-dark); text-decoration: none; }
.g-breadcrumb .breadcrumb-item a:hover { text-decoration: underline; }
.g-breadcrumb .breadcrumb-item.active { color: var(--gray-600); }

/* ── Division Cards (homepage) ───────────────────────────── */
.div-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  height: 100%;
  border: 1px solid var(--gray-200);
  border-top: 4px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 10px rgba(12, 35, 64, 0.05);
  display: flex;
  flex-direction: column;
}
.div-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(12, 35, 64, 0.11);
}
.div-card.cc { border-top-color: var(--cc-color); }
.div-card.sm { border-top-color: var(--sm-color); }
.div-card.cp { border-top-color: var(--cp-color); }

.div-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.div-card.cc .div-card-icon { background: rgba(23, 162, 184, 0.1); }
.div-card.sm .div-card-icon { background: rgba(26, 122, 85, 0.1); }
.div-card.cp .div-card-icon { background: rgba(196, 154, 40, 0.12); }

.div-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}
.div-card.cc .div-card-label { color: var(--cc-color); }
.div-card.sm .div-card-label { color: var(--sm-color); }
.div-card.cp .div-card-label { color: var(--cp-color); }

.div-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.div-card p {
  color: var(--gray-600);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 1.75rem;
  font-size: 0.97rem;
}
.div-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}
.div-card.cc .div-card-cta { color: var(--cc-color); }
.div-card.sm .div-card-cta { color: var(--sm-color); }
.div-card.cp .div-card-cta { color: var(--cp-color); }
.div-card .div-card-cta:hover { gap: 0.7rem; text-decoration: none; }

/* ── Feature Cards ─────────────────────────────────────────── */
.g-feature {
  background: white;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.g-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.09);
  border-color: var(--teal);
}
.g-feature-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  line-height: 1;
}
.g-feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.g-feature p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.72;
  margin: 0;
}

/* ── Check list ───────────────────────────────────────────── */
.g-check-list { list-style: none; padding: 0; margin: 0; }
.g-check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.97rem;
}
.g-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── Process Steps ─────────────────────────────────────────── */
.g-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.g-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.g-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.2rem;
}
.g-step-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.g-step-body p {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ── Testimonials ─────────────────────────────────────────── */
.g-testimonial {
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.g-testimonial::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(23, 162, 184, 0.13) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(45%, -45%);
  pointer-events: none;
}
.g-test-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(32, 201, 224, 0.28);
  border-radius: 4px;
  padding: 0.22rem 0.65rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.g-test-quote {
  font-size: 3.5rem;
  font-family: Georgia, serif;
  line-height: 0.7;
  color: var(--teal-light);
  opacity: 0.55;
  display: block;
  margin-bottom: 1.25rem;
}
.g-test-body {
  flex: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.82;
  font-style: italic;
}
.g-test-body p { margin-bottom: 0.85rem; }
.g-test-body p:last-child { margin-bottom: 0; }
.g-test-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.g-test-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}
.g-test-company {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

/* ── Screenshot frames ─────────────────────────────────────── */
.g-screenshot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(12, 35, 64, 0.13);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.g-screenshot:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(12, 35, 64, 0.18);
}
.g-screenshot img { width: 100%; height: auto; display: block; }

/* ── Story / About block ───────────────────────────────────── */
.g-story-block {
  background: white;
  border-radius: 20px;
  padding: 3.5rem 4rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.06);
}
.g-story-block p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 1.3rem;
}
.g-story-block p:last-child { margin-bottom: 0; }
.g-story-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Info rows (horizontal icon + text) ─────────────────────── */
.g-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.g-info-row:last-child { border-bottom: none; }
.g-info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
  margin-top: 0.1rem;
}
.g-info-row h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.g-info-row p {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.65;
}

/* ── Contact form ──────────────────────────────────────────── */
.g-contact-form {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 36px rgba(12, 35, 64, 0.08);
  border: 1px solid var(--gray-200);
}
.g-contact-form .form-control {
  padding: 0.875rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--gray-800);
}
.g-contact-form .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
  outline: none;
}
.g-contact-form label {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: block;
}

/* ── Stats row ─────────────────────────────────────────────── */
.g-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}
.g-stat-item {
  padding: 2.25rem 2rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.g-stat-item:last-child { border-right: none; }
.g-stat-value {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.g-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ── Accent divider ────────────────────────────────────────── */
.g-accent-bar {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--teal);
  margin-bottom: 2rem;
}
.g-accent-bar.centered { margin-left: auto; margin-right: auto; }
.g-accent-bar.cc { background: var(--cc-color); }
.g-accent-bar.sm { background: var(--sm-color); }
.g-accent-bar.cp { background: var(--cp-color); }

/* ── CTA band ──────────────────────────────────────────────── */
.g-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.g-cta-band h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 1.25rem; color: white; }
.g-cta-band p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.82); margin-bottom: 2.25rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── Notice / callout box ──────────────────────────────────── */
.g-callout {
  background: rgba(23, 162, 184, 0.06);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 2rem;
}
.g-callout p { margin: 0; font-size: 1rem; color: var(--gray-700); line-height: 1.75; }
.g-callout.sm { border-left-color: var(--sm-color); background: rgba(26, 122, 85, 0.06); }
.g-callout.cp { border-left-color: var(--cp-color); background: rgba(196, 154, 40, 0.07); }

/* ── Partnership card (CP page) ────────────────────────────── */
.g-partner-card {
  background: white;
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  box-shadow: 0 2px 10px rgba(12, 35, 64, 0.05);
}
.g-partner-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.g-partner-card p { font-size: 0.94rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ── Industry grid ─────────────────────────────────────────── */
.g-industry-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, border-color 0.2s;
}
.g-industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}
.g-industry-icon { font-size: 2.5rem; margin-bottom: 0.875rem; display: block; }
.g-industry-card h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin: 0; }

/* ── Footer ────────────────────────────────────────────────── */
.g-footer {
  background: var(--navy);
  color: white;
  padding: 72px 0 36px;
}
.g-footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}
.g-footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}
.g-footer h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}
.g-footer ul { list-style: none; padding: 0; margin: 0; }
.g-footer ul li { margin-bottom: 0.6rem; }
.g-footer a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.18s;
}
.g-footer a:hover { color: white; }
.g-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 3rem;
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.g-footer-bottom a { color: rgba(255, 255, 255, 0.38); font-size: 0.82rem; }
.g-footer-bottom a:hover { color: rgba(255, 255, 255, 0.7); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .g-nav .navbar-collapse {
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
  }
  .g-nav-login { margin-top: 0.75rem; display: inline-block; }
  .g-stat-row { grid-template-columns: 1fr 1fr; }
  .g-stat-item:nth-child(2) { border-right: none; }
  .g-stat-item:nth-child(3) { border-top: 1px solid var(--gray-200); }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .g-hero { padding: 80px 0 70px; }
  .g-hero-btns { flex-direction: column; align-items: flex-start; }
  .g-hero-btns > * { min-width: 200px; text-align: center; }
  .g-story-block { padding: 2.5rem 2rem; }
  .g-contact-form { padding: 2rem 1.75rem; }
  .g-page-header { padding: 60px 0 56px; }
  .g-footer { padding: 56px 0 28px; }
  .g-stat-row { grid-template-columns: 1fr; }
  .g-stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .g-stat-item:last-child { border-bottom: none; }
  .g-cta-band { padding: 60px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
