/* ============================================================
   GBONGOS CORPORATE WEBSITE — MASTER STYLESHEET
   Version: 1.0.0
   Author: Antigravity / Google DeepMind
   ============================================================ */

/* ============================================================
   0. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Core Colors — Deep Dark Mode */
  --bg-base:        #050505;
  --bg-surface:     #0C0C0E;
  --bg-raised:      #131316;
  --border:         rgba(255, 255, 255, 0.06);
  --border-hover:   rgba(255, 255, 255, 0.12);

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted:     #71717A;

  /* Accent — Premium Neonic Green */
  --accent:         #D9F036;
  --accent-dim:     #B0C61A;
  --accent-subtle:  rgba(217, 240, 54, 0.08);

  /* Status */
  --status-live:    #10B981;
  --status-progress:#F59E0B;
  --status-complete:#3B82F6;

  /* Typography — Inter + Perfect Fourth Scaling */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Sizing tokens */
  --space-3xs:  0.25rem;
  --space-2xs:  0.5rem;
  --space-xs:   0.75rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  5rem;
  
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  /* Transforms & Transitions */
  --transition: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --glass-bg: rgba(12, 12, 14, 0.6);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);

  /* Nav height */
  --nav-height: 64px;
  --safe-top:   64px;
}

[data-theme="light"] {
  --bg-base:        #FAFAFA;
  --bg-surface:     #FFFFFF;
  --bg-raised:      #F4F4F5;
  --border:         rgba(0, 0, 0, 0.08);
  --border-hover:   rgba(0, 0, 0, 0.16);
  --text-primary:   #09090B;
  --text-secondary: #52525B;
  --text-muted:     #A1A1AA;
  --accent:         #B0C61A;
  --accent-dim:     #8A9E11;
  --accent-subtle:  rgba(176, 198, 26, 0.08);
  --glass-bg:       rgba(255, 255, 255, 0.7);
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Always push content below the fixed nav.
     JS updates --nav-height dynamically; this ensures
     content is never hidden behind the nav bar. */
  padding-top: var(--nav-height);
}

img, svg, video {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ============================================================
   3. TYPOGRAPHY (Perfect Fourth Scale)
   ============================================================ */
.display {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.heading-1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.heading-2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.heading-3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.body-lg {
  font-size: 1.25rem;
  line-height: 1.75;
}

.body {
  font-size: 1rem;
  line-height: 1.75;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-primary   { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted     { color: var(--text-muted); }
.text-accent    { color: var(--accent); }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-sm {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ============================================================
   5. DIVIDERS & BORDERS
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
}

.section-label span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #09090B;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--bg-raised);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding-inline: 0.5rem;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ============================================================
   7. CARDS
   ============================================================ */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
}

.card-elevated:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  background: var(--bg-raised);
}

.card-accent:hover {
  border-color: rgba(232, 255, 71, 0.3);
}

/* ============================================================
   8. TAGS / BADGES
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-live {
  background: rgba(34, 197, 94, 0.1);
  color: var(--status-live);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.tag-live::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--status-live);
  box-shadow: 0 0 6px var(--status-live);
}

.tag-progress {
  background: rgba(245, 158, 11, 0.1);
  color: var(--status-progress);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag-complete {
  background: rgba(59, 130, 246, 0.1);
  color: var(--status-complete);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag-neutral {
  background: var(--bg-raised);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ============================================================
   9. NAVIGATION (Glass Pill)
   ============================================================ */
#nav {
  position: fixed;
  top: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--space-lg));
  max-width: var(--container-max);
  height: 64px;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.2);
}

#nav.scrolled {
  background: rgba(5, 5, 5, 0.85); /* Slightly darker on scroll */
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.4);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--space-md);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #09090B;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active {
  background: var(--bg-raised);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--accent);
  color: #09090B;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  text-decoration: none;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--accent-dim);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-hamburger:hover {
  background: var(--bg-raised);
}

.hamburger-line {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer — slides down from under the nav bar */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-base);
  z-index: 999;
  padding: 1.25rem var(--container-pad) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  /* Hidden state: slide up and fade */
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(0.16,1,0.3,1),
              opacity 200ms ease;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile .nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
  background: var(--bg-raised);
  color: var(--text-primary);
}

.nav-mobile .nav-cta {
  margin-top: 0.75rem;
  margin-left: 0;
  text-align: center;
  padding: 0.875rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: block;
}

/* Page offset — keeps content from hiding under the fixed nav.
   body already has padding-top: var(--nav-height) so this
   class is kept for backwards compatibility but adds no extra space. */
.page-offset {
  /* intentionally empty — offset is handled by body padding-top */
}

/* ============================================================
   10. FOOTER
   ============================================================ */
#footer {
  border-top: 1px solid var(--border);
  padding-block: 3rem 2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* ============================================================
   11. HERO SECTION
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Animated Aurora Gradient & Geometric Grid */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 10%, transparent 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(217, 240, 54, 0.15), rgba(12, 12, 14, 0) 60%),
              radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08), rgba(12, 12, 14, 0) 50%);
  filter: blur(80px);
  pointer-events: none;
  animation: auroraFlow 15s ease-in-out infinite alternate;
}

@keyframes auroraFlow {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(5%, 5%) scale(1.05); }
  100% { transform: translate(-5%, -2%) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: 5rem 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   12. WHAT WE DO — 3 COLUMNS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pillar {
  background: var(--bg-surface);
  padding: 2.5rem;
  transition: background var(--transition);
}

.pillar:hover {
  background: var(--bg-raised);
}

.pillar-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.pillar h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.pillar p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   13. COMPANY CARDS & BENTO
   ============================================================ */
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.company-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-slow);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.company-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.03), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.company-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px) scale(1.01);
  background: var(--bg-raised);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
}

.company-card:hover::before {
  opacity: 1;
}

.company-card-accent:hover {
  border-color: rgba(217, 240, 54, 0.3);
}

.company-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.company-icon-zaelo {
  background: rgba(232, 255, 71, 0.1);
  border: 1px solid rgba(232, 255, 71, 0.2);
  color: var(--accent);
}

.company-icon-wears {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.company-card h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.company-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.company-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.company-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.company-feature::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.company-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   14. PRODUCTS TABLE & BENTO ROWS
   ============================================================ */
.products-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.products-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.products-panel-header {
  padding: 1.25rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}

.products-panel-header h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.products-panel-header .count {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-raised);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.product-row {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background var(--transition);
}

.product-row:last-child {
  border-bottom: none;
}

.product-row:hover {
  background: var(--bg-raised);
}

.product-row-info {
  flex: 1;
}

.product-row-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.product-row-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   15. TEAM CAPABILITY GRID
   ============================================================ */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.capability-item {
  background: var(--bg-surface);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background var(--transition);
}

.capability-item:hover {
  background: var(--bg-raised);
}

.capability-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.capability-text h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.capability-text p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   16. TRUST SECTION & BENTO METRICS
   ============================================================ */
.trust-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  /* Full width bleeding grid effect */
  margin-inline: calc(var(--container-pad) * -1);
}

.trust-item {
  background: var(--bg-surface);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-slow);
}

.trust-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all var(--transition-slow);
}

.trust-item:hover {
  background: rgba(255,255,255,0.015);
}

.trust-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.trust-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(217, 240, 54, 0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================================
   17. SERVICES PAGE
   ============================================================ */
.services-category {
  margin-bottom: 4rem;
}

.services-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.services-category-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-subtle);
  border: 1px solid rgba(232, 255, 71, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-raised);
  transform: translateY(-2px);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.contact-method:hover {
  color: var(--text-primary);
}

.contact-method-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all var(--transition);
}

.contact-method:hover .contact-method-icon {
  background: var(--accent-subtle);
  border-color: rgba(232, 255, 71, 0.3);
  color: var(--accent);
}

.contact-form-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

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

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(232, 255, 71, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ============================================================
   19. ADMIN PAGE
   ============================================================ */
.admin-wrap {
  min-height: 100vh;
  background: var(--bg-base);
}

.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.admin-login-card h2 {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}

.admin-login-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.admin-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem var(--container-pad);
}

.admin-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

.admin-section-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
}

.admin-section-body {
  padding: 1.75rem;
}

.admin-project-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.admin-project-item:last-child {
  border-bottom: none;
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 2rem;
}

.about-stat {
  background: var(--bg-surface);
  padding: 1.5rem;
}

.about-stat h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.about-stat p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.about-structure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.structure-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.structure-card-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-hover);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.structure-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.structure-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   21. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  /* Inner pages: reduce the body's padding-top gift so the
     page-hero section doesn't get double-spaced at top.
     The body already cleared the nav; page-hero just needs
     its own visual breathing room. */
  padding-block: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.page-hero-breadcrumb a:hover {
  color: var(--text-secondary);
}

.page-hero-breadcrumb span {
  color: var(--border-hover);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 20ch;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 55ch;
  line-height: 1.7;
}

/* ============================================================
   22. RECENT PROJECTS (Admin-powered)
   ============================================================ */
.recent-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.recent-project-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.recent-project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.recent-project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.recent-project-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.recent-project-desc {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.recent-project-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.775rem;
  color: var(--text-muted);
}

.recent-project-footer svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.recent-project-link {
  margin-left: auto;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.recent-project-link:hover {
  color: var(--accent);
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.empty-state svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  opacity: 0.4;
}

.empty-state p {
  font-size: 0.875rem;
}

/* ============================================================
   23. STATEMENT SECTION
   ============================================================ */
.statement-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-block {
  max-width: 800px;
}

.statement-block p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

.statement-block p strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================================
   24. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  @keyframes scrollLine { }

  .btn:hover,
  .card:hover,
  .company-card:hover,
  .service-card:hover,
  .recent-project-card:hover {
    transform: none;
  }
}

/* ============================================================
   25. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .recent-projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger { display: flex; }

  #nav {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    width: 100%;
    left: 0;
    transform: none;
    padding-inline: var(--space-md);
  }

  .nav-inner {
    padding: 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .company-grid { grid-template-columns: 1fr; }

  .products-split { grid-template-columns: 1fr; }

  .about-intro { grid-template-columns: 1fr; gap: 2rem; }

  .about-stat-row { grid-template-columns: 1fr 1fr; }

  .about-structure { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 5rem);
  }

  .capability-grid { grid-template-columns: 1fr; }

  .recent-projects-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .about-stat-row { grid-template-columns: 1fr; }
}

/* ============================================================
   26. UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-balance { text-wrap: balance; }

.mt-auto { margin-top: auto; }

.accent-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border);
}

/* Selection color */
::selection {
  background: rgba(232, 255, 71, 0.2);
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ============================================================
   ADDITIONAL COMPONENTS (Enhancement Update)
   ============================================================ */

/* Cursor reset — use system default cursor site-wide */
*, *::before, *::after {
  cursor: auto;
}
a, button, [role="button"], label, select, [tabindex] {
  cursor: pointer;
}
input, textarea {
  cursor: text;
}

/* Gbongos Limited parent company card */
.company-card-parent {
  background: var(--bg-surface);
  border: 1px solid rgba(217, 240, 54, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all var(--transition-slow);
}

.company-card-parent:hover {
  border-color: rgba(217, 240, 54, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.company-card-parent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 240, 54, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.company-card-parent-inner {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* Guarantee strip */
.guarantee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg-surface);
}

.guarantee-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .guarantee-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guarantee-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 255, 71, 0.1);
  border: 1px solid rgba(232, 255, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

.guarantee-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.guarantee-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer company registration line */
.footer-registration {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.875rem var(--container-pad);
  border-top: 1px solid var(--border);
  letter-spacing: 0.01em;
}

/* Completed project tag */
.tag-complete {
  background: rgba(59, 130, 246, 0.1);
  color: var(--status-complete);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* Light mode overrides for new components */
[data-theme="light"] .company-card-parent {
  background: var(--bg-surface);
}

[data-theme="light"] .guarantee-strip {
  background: #F8F8F4;
}

[data-theme="light"] .footer-registration {
  color: var(--text-muted);
}

/* Full-width panel body grid — used when a products-panel is
   rendered standalone (not inside .products-split) so the rows
   flow into a responsive 2-column layout at wider viewports */
.products-panel-body-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.products-panel-body-grid .product-row {
  border-right: none;
}

/* Odd rows get a right border so visually they feel like columns */
.products-panel-body-grid .product-row:nth-child(odd) {
  border-right: 1px solid var(--border);
}

@media (max-width: 640px) {
  .products-panel-body-grid {
    grid-template-columns: 1fr;
  }
  .products-panel-body-grid .product-row:nth-child(odd) {
    border-right: none;
  }
}

/* Standalone .products-panel (outside .products-split)
   needs the same card border it gets from the split wrapper */
.products-panel:not(.products-split > .products-panel) {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  overflow: hidden;
}

/* ============================================================
   MOBILE-FIRST RESPONSIVE SYSTEM
   Breakpoints: 768px (tablet/mobile), 480px (small phone)
   ============================================================ */

/* ── 768px and below ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links          { display: none; }
  .nav-cta            { display: none; }
  .nav-hamburger      { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-block: 0;
  }
  .hero-content {
    padding-block: 3.5rem 3rem;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 1;
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-scroll { display: none; }

  /* Section spacing */
  .section { padding: 3rem 0; }

  /* Grids → single column */
  .pillars-grid         { grid-template-columns: 1fr; gap: 1px; }
  .company-grid         { grid-template-columns: 1fr; }
  .grid-3               { grid-template-columns: 1fr; }
  .grid-2               { grid-template-columns: 1fr; }
  .capability-grid      { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Trust metrics bar */
  .trust-bar            { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .trust-item           { padding: 1rem; border-right: none; }
  .trust-item:nth-child(odd)  { border-right: 1px solid var(--border); }

  /* Company cards */
  .company-card         { padding: 1.75rem; }
  .company-card-parent  { padding: 1.5rem; flex-direction: column; }

  /* Products split → stack */
  .products-split       { grid-template-columns: 1fr; }

  /* Products panel body grid → single col */
  .products-panel-body-grid               { grid-template-columns: 1fr; }
  .products-panel-body-grid .product-row:nth-child(odd) { border-right: none; }

  /* Testimonials → single column */
  .testimonials-grid    { grid-template-columns: 1fr; }

  /* Guarantee strip */
  .guarantee-items      { grid-template-columns: 1fr; }

  /* Footer → stack */
  .footer-inner         { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p       { max-width: 100%; }
  .footer-bottom        { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Headings */
  .heading-1            { font-size: clamp(2rem, 8vw, 3rem); }
  .heading-2            { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* About page specific — companies grid on companies.html */
  #gblGrid              { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Services page grid */
  .services-grid        { grid-template-columns: 1fr; }

  /* Case studies grid */
  .case-studies-grid    { grid-template-columns: 1fr; }

  /* CTA row → stack */
  [style*="justify-content:space-between"][style*="flex-wrap:wrap"] {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Announcement bar */
  #announcement-bar     { padding: 0.625rem var(--container-pad); font-size: 0.78rem; }
}

/* ── 480px and below (small phones) ─────────────────────── */
@media (max-width: 480px) {

  /* Hero */
  .hero h1              { font-size: clamp(2.2rem, 12vw, 3rem); }
  .hero-actions         { flex-direction: column; align-items: stretch; }
  .hero-actions .btn    { text-align: center; justify-content: center; }

  /* Buttons */
  .btn-lg               { padding: 0.8rem 1.25rem; font-size: 0.9rem; }

  /* Trust bar */
  .trust-bar            { grid-template-columns: 1fr 1fr; }
  .trust-item           { padding: 0.875rem 0.75rem; }
  .trust-number         { font-size: 1.75rem; }

  /* Capability grid → single col on tiny screens */
  .capability-grid      { grid-template-columns: 1fr; }

  /* Pillar padding */
  .pillar               { padding: 1.5rem; }

  /* Product rows */
  .product-row          { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .product-row .tag     { align-self: flex-start; }

  /* Footer */
  .footer-social-links  { flex-wrap: wrap; }
  .footer-bottom-links  { flex-wrap: wrap; gap: 1rem; }

  /* Section label */
  .section-label        { margin-bottom: 0.75rem; }

  /* Cards */
  .card                 { padding: 1.25rem; }
  .company-card         { padding: 1.5rem; }
}
