@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:       #1A3A6B;
  --navy-dark:  #0F2544;
  --navy-mid:   #1E4580;
  --green:      #1A6B3A;
  --green-light:#22874A;
  --green-pale: #E6F4EC;
  --sky:        #2878B4;
  --off-white:  #F4F6F9;
  --white:      #ffffff;
  --charcoal:   #1E1E2E;
  --gray:       #64748B;
  --gray-light: #E2E8F0;
  --purple:     #5C3D8F;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', sans-serif; color: var(--charcoal); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── TOPBAR ── */
.topbar { background: var(--navy-dark); padding: 6px 0; font-size: 12px; color: rgba(255,255,255,0.6); }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; }
.tb-pulse { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }

/* ── NAVBAR ── */
nav { background: var(--navy); position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; height: 66px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; margin-right: 32px; }
.logo-mark svg { width: 38px; height: 38px; }
.logo-brand { font-size: 18px; font-weight: 600; color: #fff; letter-spacing: 2px; line-height: 1; display: block; }
.logo-sub { font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 0.8px; text-transform: uppercase; margin-top: 3px; display: block; }

/* Nav links */
.nav-menu { display: flex; align-items: center; flex: 1; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 13.5px; padding: 0 14px; height: 66px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a { color: #fff; background: rgba(255,255,255,0.08); }
.nav-item > a .chevron { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.nav-item.active > a .chevron { transform: rotate(180deg); opacity: 1; }

/* Mega menu */
.mega-menu {
  position: absolute; top: 66px; left: 0;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 24px; display: none; min-width: 520px; z-index: 200;
}
.nav-item:hover .mega-menu { display: grid; }
.mega-cols-2 { grid-template-columns: 1fr 1fr; gap: 8px; }
.mega-cols-3 { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mega-cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 8px; min-width: 740px; }
.mega-group-title {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy);
  border-bottom: 2px solid var(--navy); padding-bottom: 8px; margin-bottom: 8px;
}
.mega-link {
  display: flex; align-items: flex-start; gap: 6px;
  padding: 5px 8px; border-radius: 6px;
  text-decoration: none; color: var(--gray); font-size: 12.5px;
  transition: background 0.15s, color 0.15s; line-height: 1.4;
}
.mega-link::before { content: '→'; color: var(--green); font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.mega-link:hover { background: var(--off-white); color: var(--navy); }

/* Nav CTA */
.nav-cta {
  margin-left: auto; background: var(--green); color: #fff !important;
  padding: 0 20px !important; height: 38px; border-radius: 8px;
  font-size: 13px !important; font-weight: 500 !important;
  display: inline-flex !important; align-items: center !important;
  gap: 6px !important; transition: background 0.2s !important;
  text-decoration: none; flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-light) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; margin-right: 8px; }
.hamburger span { width: 20px; height: 1.5px; background: #fff; border-radius: 2px; display: block; }

/* Mobile drawer */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 150; }
.mobile-drawer {
  position: fixed; top: 0; left: 0; height: 100%; width: 85vw; max-width: 340px;
  background: var(--navy-dark); z-index: 200; display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-overlay.open { display: block; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.drawer-close { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 18px; border-radius: 8px; cursor: pointer; }
.drawer-body { flex: 1; overflow-y: auto; }
.drawer-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.drawer-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; background: none; border: none; cursor: pointer; text-align: left; }
.drawer-toggle .arrow { color: rgba(255,255,255,0.4); font-size: 18px; transition: transform 0.2s; }
.drawer-toggle.expanded .arrow { transform: rotate(180deg); }
.drawer-sub { display: none; padding: 4px 12px 12px; }
.drawer-sub.open { display: block; }
.drawer-sub-title { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(110,231,163,0.8); padding: 8px 8px 4px; }
.drawer-sub a { display: flex; align-items: center; gap: 6px; padding: 7px 8px; border-radius: 8px; color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; transition: background 0.15s, color 0.15s; }
.drawer-sub a::before { content: '→'; color: #4ADE80; font-size: 11px; }
.drawer-sub a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.drawer-footer { padding: 16px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 10px; }
.drawer-cta-primary { display: block; background: var(--green); color: #fff; text-align: center; padding: 12px; border-radius: 12px; text-decoration: none; font-size: 14px; font-weight: 500; }
.drawer-cta-secondary { display: block; background: rgba(255,255,255,0.08); color: #fff; text-align: center; padding: 12px; border-radius: 12px; text-decoration: none; font-size: 14px; }

/* ── HERO ── */
.hero { background: var(--navy-dark); min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 32px; }
.hero-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-glow1 { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(26,107,58,0.2) 0%,transparent 65%); pointer-events: none; }
.hero-glow2 { position: absolute; bottom: -80px; left: 5%; width: 350px; height: 350px; background: radial-gradient(circle,rgba(40,120,180,0.15) 0%,transparent 65%); pointer-events: none; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(26,107,58,0.15); border: 1px solid rgba(26,107,58,0.35); color: #86EFAC; font-size: 11.5px; font-weight: 500; padding: 5px 14px; border-radius: 100px; margin-bottom: 22px; }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: 52px; line-height: 1.1; color: #fff; margin-bottom: 20px; font-weight: 400; }
.hero h1 em { font-style: normal; color: #86EFAC; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 480px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--green); color: #fff; text-decoration: none; padding: 13px 28px; border-radius: 10px; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.85); text-decoration: none; padding: 13px 28px; border-radius: 10px; font-size: 14px; border: 1px solid rgba(255,255,255,0.25); display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

/* Hero cards */
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; transition: all 0.2s; cursor: default; }
.hero-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); border-color: rgba(255,255,255,0.2); }
.hero-card-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.hc-green  { background: rgba(26,107,58,0.3); }
.hc-blue   { background: rgba(40,120,180,0.3); }
.hc-purple { background: rgba(92,61,143,0.3); }
.hc-amber  { background: rgba(180,83,9,0.3); }
.hero-card h3 { font-size: 13.5px; font-weight: 500; color: #fff; margin-bottom: 5px; }
.hero-card p { font-size: 11.5px; color: rgba(255,255,255,0.5); line-height: 1.55; margin-bottom: 12px; }
.hero-card-stat { font-size: 24px; font-weight: 600; color: #fff; line-height: 1; }
.hero-card-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); overflow-x: auto; }
.trust-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; min-width: max-content; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 18px 28px; border-right: 1px solid rgba(255,255,255,0.08); flex: 1; min-width: 150px; }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.trust-num { font-size: 17px; font-weight: 600; color: #fff; line-height: 1; }
.trust-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 84px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy-dark); }
.eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 10px; }
.section-heading { font-family: 'DM Serif Display', serif; font-size: 36px; font-weight: 400; color: var(--navy-dark); margin-bottom: 12px; line-height: 1.2; }
.section-sub { font-size: 15.5px; color: var(--gray); line-height: 1.75; max-width: 540px; font-weight: 300; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.view-all { font-size: 13px; font-weight: 500; color: var(--navy); text-decoration: none; border-bottom: 1.5px solid var(--navy); padding-bottom: 1px; transition: color 0.2s; }
.view-all:hover { color: var(--green); border-color: var(--green); }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 14px; overflow: hidden; transition: box-shadow 0.25s, transform 0.2s; }
.product-card:hover { box-shadow: 0 12px 40px rgba(26,58,107,0.12); transform: translateY(-4px); }
.product-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 44px; position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.product-badge { position: absolute; top: 10px; right: 10px; font-size: 9.5px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; background: rgba(255,255,255,0.15); color: #fff; }
.product-body { padding: 18px; }
.product-tag { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; display: block; }
.product-body h3 { font-size: 15px; font-weight: 500; color: var(--navy-dark); margin-bottom: 7px; line-height: 1.3; }
.product-body p { font-size: 12.5px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; font-weight: 300; }
.product-link { font-size: 12.5px; font-weight: 500; color: var(--green); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.15s; }
.product-link:hover { gap: 8px; }

/* Filter tabs */
.filter-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.filter-tab { background: var(--white); border: 1px solid var(--gray-light); color: var(--gray); font-size: 12.5px; font-weight: 500; padding: 7px 16px; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.filter-tab:hover, .filter-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative; background: var(--off-white); border: 1px solid var(--gray-light); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,37,68,0.85)); color: #fff; padding: 20px 12px 10px; font-size: 12px; font-weight: 500; transform: translateY(100%); transition: transform 0.25s; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--gray); font-size: 14px; }

/* ── HIGHLIGHT BANNER ── */
.highlight-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.highlight-card { padding: 56px 40px; border-right: 1px solid rgba(255,255,255,0.07); transition: background 0.2s; }
.highlight-card:last-child { border-right: none; }
.highlight-card:hover { background: rgba(255,255,255,0.03); }
.highlight-tag { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.highlight-icon { font-size: 28px; margin-bottom: 14px; }
.highlight-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.highlight-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.highlight-link { font-size: 13px; font-weight: 500; color: #86EFAC; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.highlight-link:hover { gap: 10px; }

/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feat-card { background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 12px; padding: 22px; transition: box-shadow 0.2s, transform 0.2s; }
.feat-card:hover { box-shadow: 0 8px 24px rgba(26,58,107,0.08); transform: translateY(-3px); }
.feat-card.a-green  { border-top: 3px solid var(--green); }
.feat-card.a-navy   { border-top: 3px solid var(--navy); }
.feat-card.a-sky    { border-top: 3px solid var(--sky); }
.feat-card.a-purple { border-top: 3px solid var(--purple); }
.feat-icon { font-size: 24px; margin-bottom: 12px; }
.feat-card h4 { font-size: 14px; font-weight: 500; color: var(--navy-dark); margin-bottom: 6px; }
.feat-card p { font-size: 12.5px; color: var(--gray); line-height: 1.6; font-weight: 300; }
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--gray-light); }
.stat-card { background: var(--off-white); border-radius: 12px; padding: 16px; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 40px; color: var(--navy); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 300; }

/* ── CLIENTS ── */
.client-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.client-pill { background: var(--white); border: 1px solid var(--gray-light); color: var(--gray); font-size: 13px; padding: 9px 20px; border-radius: 100px; transition: all 0.2s; cursor: default; }
.client-pill:hover { border-color: var(--navy); color: var(--navy); background: #EEF3FB; }
.sector-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-badge { font-size: 11px; font-weight: 500; padding: 5px 14px; border-radius: 6px; background: var(--navy); color: rgba(255,255,255,0.8); }

/* ── SERVICES ── */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { border: 1px solid var(--gray-light); border-radius: 14px; padding: 28px 22px; transition: all 0.2s; text-decoration: none; display: block; background: var(--white); }
.service-card:hover { border-color: var(--navy); box-shadow: 0 8px 28px rgba(26,58,107,0.1); transform: translateY(-3px); }
.service-icon { font-size: 28px; margin-bottom: 14px; }
.service-card h3 { font-size: 15px; font-weight: 500; color: var(--navy-dark); margin-bottom: 8px; }
.service-card p { font-size: 12.5px; color: var(--gray); line-height: 1.65; font-weight: 300; }
.service-arrow { font-size: 18px; color: var(--green); display: block; margin-top: 16px; transition: transform 0.15s; }
.service-card:hover .service-arrow { transform: translateX(4px); }

/* ── CONTACT CTA ── */
.cta-section { background: var(--green); padding: 72px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px); background-size: 50px 50px; }
.cta-section h2 { font-family: 'DM Serif Display', serif; font-size: 38px; font-weight: 400; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.78); margin-bottom: 32px; position: relative; z-index: 1; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }
.btn-cta-white { background: #fff; color: var(--green); text-decoration: none; padding: 13px 28px; border-radius: 10px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; transition: transform 0.15s, box-shadow 0.15s; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-cta-outline { background: transparent; color: #fff; text-decoration: none; padding: 13px 28px; border-radius: 10px; font-size: 14px; border: 1.5px solid rgba(255,255,255,0.4); display: inline-flex; align-items: center; gap: 7px; transition: all 0.2s; }
.btn-cta-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 60px 32px 0; color: rgba(255,255,255,0.55); }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-name { font-size: 18px; font-weight: 600; color: #fff; letter-spacing: 2px; margin-bottom: 12px; }
.footer-brand p { font-size: 12.5px; line-height: 1.75; max-width: 240px; font-weight: 300; margin-bottom: 20px; }
.footer-contact div { font-size: 12.5px; margin-bottom: 7px; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 0 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy-dark); padding: 60px 32px 56px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size: 60px 60px; }
.page-hero-glow { position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; background: radial-gradient(circle,rgba(26,107,58,0.18) 0%,transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: 44px; font-weight: 400; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 580px; line-height: 1.75; font-weight: 300; margin-bottom: 28px; }

/* Sub-nav pills */
.sub-nav { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 32px; position: sticky; top: 66px; z-index: 90; overflow-x: auto; }
.sub-nav-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 0; min-width: max-content; }
.sub-nav a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; padding: 14px 20px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.sub-nav a:hover { color: #fff; }
.sub-nav a.active { color: #fff; border-bottom-color: #4ADE80; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 56px 20px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 36px; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { padding: 0 16px; }
  .section { padding: 56px 20px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .highlight-inner { grid-template-columns: 1fr; }
  .highlight-card { padding: 36px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cta-section { padding: 56px 20px; }
  .cta-section h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 40px 20px; }
  .page-hero h1 { font-size: 32px; }
  .sub-nav { padding: 0 16px; top: 60px; }
  .section-heading { font-size: 28px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
