/* ============================================================
   VIBELUBE INC. — SHARED STYLESHEET
   Fonts: Oswald (headings) + Open Sans (body)
   Colors: Navy #004890 · Gold #fedd01 · Red #dd3d61 · White #fff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', sans-serif; background: #fff; color: #1e2d3d; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }
ul { list-style: none; }

/* ---- CSS VARIABLES ---- */
:root {
  --navy:      #004890;
  --navy-dk:   #002f5f;
  --navy-lt:   #e8f0f9;
  --gold:      #fedd01;
  --gold-dk:   #c9ae00;
  --red:       #dd3d61;
  --red-dk:    #b82f50;
  --white:     #ffffff;
  --bg:        #f4f7fb;
  --dark:      #0d1824;
  --text:      #1e2d3d;
  --muted:     #5c7089;
  --border:    #d1dce8;
  --font-h:    'Oswald', sans-serif;
  --font-b:    'Open Sans', sans-serif;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f4f8; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ---- UTILITY ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 84px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark-2 { background: var(--dark); color: #fff; }

.eyebrow {
  font-family: var(--font-h); font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-muted { color: var(--muted); }

.section-heading {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700; line-height: 1.08;
  color: var(--dark); margin-bottom: 14px;
}
.section-heading-white { color: #fff; }
.section-heading-navy { color: var(--navy); }

.underline-gold {
  display: block; width: 52px; height: 4px;
  background: var(--gold); margin-bottom: 20px;
  border-radius: 2px;
}
.underline-red { background: var(--red); }
.underline-white { background: rgba(255,255,255,0.5); }

.lead {
  font-size: 17px; color: var(--muted);
  line-height: 1.8; max-width: 600px;
  margin-top: 14px;
}
.lead-white { color: rgba(255,255,255,0.75); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-weight: 600;
  font-size: 15px; letter-spacing: 0.5px;
  padding: 13px 28px; border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dk); border-color: var(--navy-dk); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ---- TAGS / BADGES ---- */
.badge {
  display: inline-block; font-family: var(--font-h);
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 3px; border: 1px solid transparent;
}
.badge-navy { background: var(--navy-lt); color: var(--navy); border-color: #c5d8ee; }
.badge-gold { background: #fffbe6; color: #7a6200; border-color: #f0d800; }
.badge-red { background: #fdedf1; color: var(--red); border-color: #f2b8c5; }

/* ===== NAVIGATION ===== */
#topbar {
  background: var(--navy-dk); color: rgba(255,255,255,0.7);
  font-size: 12px; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-contact { display: flex; gap: 24px; }
.topbar-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar-contact a:hover { color: var(--gold); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; }
.topbar-social a:hover { color: var(--gold); }

#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 2px solid var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 0; }
.nav-links { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-h); font-size: 15px; font-weight: 500;
  color: var(--dark); padding: 0 18px; height: 74px;
  letter-spacing: 0.3px; transition: color 0.2s, background 0.2s;
}
.nav-item > a:hover, .nav-item.active > a { color: var(--navy); background: var(--navy-lt); }
.nav-item > a .caret { font-size: 10px; opacity: 0.5; }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 240px;
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s ease;
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 20px;
  font-family: var(--font-b); font-size: 14px; color: var(--text);
  border-bottom: 1px solid #f0f4f8;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--navy-lt); color: var(--navy); padding-left: 26px; }
.dropdown-section {
  padding: 8px 20px 4px;
  font-family: var(--font-h); font-size: 10px; font-weight: 600;
  color: var(--muted); letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid #f0f4f8;
}
.nav-cta {
  background: var(--red); color: #fff;
  font-family: var(--font-h); font-size: 14px; font-weight: 600;
  padding: 11px 24px; border-radius: 4px; border: none;
  margin-left: 20px; letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dk); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; margin-left: 16px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ===== PAGE BANNER (non-home pages) ===== */
.page-banner {
  background: var(--navy);
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/field/analyst-hero.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.banner-inner { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: var(--font-h); font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== HERO (homepage) ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark); overflow: hidden;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background: url('../images/field/analyst-hero.jpg') center 25%/cover no-repeat;
  opacity: 0.18;
}
.hero-navy-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,47,95,0.94) 0%, rgba(13,24,36,0.82) 60%, rgba(0,72,144,0.25) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,72,144,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,72,144,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
#hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 100px 28px 60px;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(254,221,1,0.1); border: 1px solid rgba(254,221,1,0.3);
  border-radius: 30px; padding: 6px 16px;
  font-family: var(--font-h); font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.2;transform:scale(0.6)} }
.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.05;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .red { color: var(--red); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 440px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-label { font-family: var(--font-h); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.trust-logos { display: flex; gap: 10px; align-items: center; }
.trust-logos img { height: 36px; width: auto; background: rgba(255,255,255,0.9); border-radius: 4px; padding: 3px 8px; object-fit: contain; }

/* Oscilloscope panel */
.scope-panel {
  background: #06101e;
  border: 1px solid rgba(0,72,144,0.5);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 48px rgba(0,72,144,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}
.scope-header {
  background: rgba(0,47,95,0.7);
  border-bottom: 1px solid rgba(0,72,144,0.4);
  padding: 11px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.scope-title-text { font-family: 'Oswald', monospace; font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.scope-live { display: flex; align-items: center; gap: 6px; font-family: monospace; font-size: 11px; color: #00e676; }
.scope-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #00e676; animation: pulse 1.2s infinite; }
.scope-body { padding: 14px 16px; }
.scope-screen {
  background: #02080f; border: 1px solid rgba(0,72,144,0.3);
  border-radius: 6px; overflow: hidden; position: relative; margin-bottom: 12px;
}
.scope-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,160,70,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,160,70,0.06) 1px, transparent 1px);
  background-size: 20% 25%; pointer-events: none;
}
#scope-canvas { display: block; width: 100%; }
.fft-screen {
  background: #02080f; border: 1px solid rgba(0,72,144,0.3);
  border-radius: 6px; overflow: hidden; position: relative; margin-bottom: 12px;
}
.fft-tag { position: absolute; top: 4px; left: 8px; font-family: monospace; font-size: 9px; color: rgba(254,221,1,0.5); letter-spacing: 1px; z-index:1; }
#fft-canvas { display: block; width: 100%; }
.scope-readings { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.reading-box { background: rgba(0,72,144,0.12); border: 1px solid rgba(0,72,144,0.25); border-radius: 6px; padding: 8px 10px; text-align: center; }
.reading-label { font-family: monospace; font-size: 8px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.reading-val { font-family: 'Oswald', monospace; font-size: 20px; font-weight: 700; line-height: 1; }
.reading-unit { font-family: monospace; font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.scope-alert {
  display: none; margin-top: 10px;
  background: rgba(221,61,97,0.1); border: 1px solid rgba(221,61,97,0.35);
  border-radius: 5px; padding: 7px 12px;
  font-family: monospace; font-size: 10px;
  display: flex; align-items: center; gap: 8px;
}
.alert-dot-anim { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 0.8s infinite; flex-shrink: 0; }
.alert-msg { color: #ff8fa8; }
.alert-code { color: rgba(255,255,255,0.3); font-size: 9px; margin-left: auto; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--navy); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { text-align: center; position: relative; padding: 8px 16px; }
.stat-cell:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%; height: 80%;
  width: 1px; background: rgba(255,255,255,0.12);
}
.stat-num { font-family: var(--font-h); font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -1px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 6px; text-transform: uppercase; letter-spacing: 1.2px; font-family: var(--font-h); font-weight: 400; }

/* ===== MARQUEE ===== */
.marquee-bar { background: #fff; border-top: 1px solid var(--border); border-bottom: 3px solid var(--gold); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; animation: slide 28s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes slide { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.mq-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 32px; border-right: 1px solid var(--border); flex-shrink: 0; font-family: var(--font-h); font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.mq-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: 6px; padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,72,144,0.1); transform: translateY(-3px); }
.service-card.accent-red { border-top-color: var(--red); }
.service-card.accent-gold { border-top-color: var(--gold); }
.service-icon-wrap { margin-bottom: 20px; }
.service-icon {
  width: 52px; height: 52px; border-radius: 8px;
  background: var(--navy-lt); display: flex; align-items: center;
  justify-content: center; border: 1px solid #c5d8ee;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--navy); }
.service-card h3 { font-family: var(--font-h); font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--font-h); font-size: 13px; font-weight: 600; color: var(--navy); transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.services-photo-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.photo-main { grid-column: span 2; border-radius: 8px; overflow: hidden; height: 300px; }
.photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-sub { border-radius: 8px; overflow: hidden; height: 180px; }
.photo-sub img { width: 100%; height: 100%; object-fit: cover; }
.equipment-list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.equip-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-left: 3px solid var(--gold);
  background: var(--bg); font-size: 14px; color: var(--text);
  font-family: var(--font-h); font-weight: 500;
}
.process-steps { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-h); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-text h4 { font-family: var(--font-h); font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--dark); }
.step-text p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== TRAINING CARDS ===== */
.training-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.training-card {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.training-card:hover { box-shadow: 0 8px 28px rgba(0,72,144,0.1); transform: translateY(-3px); }
.tc-photo { height: 180px; overflow: hidden; position: relative; }
.tc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.training-card:hover .tc-photo img { transform: scale(1.04); }
.tc-icon { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; background: rgba(255,255,255,0.92); border-radius: 6px; padding: 4px; }
.tc-icon img { width: 100%; height: 100%; object-fit: contain; }
.tc-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.tc-body h3 { font-family: var(--font-h); font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.25; }
.tc-body p { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
.tc-footer { border-top: 1px solid var(--border); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.tc-price { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--navy); }
.tc-price small { font-size: 12px; color: var(--muted); font-family: var(--font-b); font-weight: 400; }

/* Training detail page */
.course-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.course-main {}
.course-sidebar {}
.course-image { border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.course-image img { width: 100%; height: 320px; object-fit: cover; }
.curriculum-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.curriculum-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px;
  border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text);
}
.curriculum-item:last-child { border-bottom: none; }
.curriculum-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--navy); margin-top: 6px; flex-shrink: 0; }
.course-sidebar-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 24px; margin-bottom: 20px;
  border-top: 4px solid var(--navy);
}
.sidebar-price { font-family: var(--font-h); font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.sidebar-price-note { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.course-details-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.course-detail-row { display: flex; gap: 10px; font-size: 14px; }
.course-detail-label { font-family: var(--font-h); font-weight: 500; color: var(--muted); min-width: 90px; }
.course-detail-val { color: var(--text); }

/* ===== COMPANIES WE SERVE ===== */
.clients-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.client-card {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 22px 16px; display: flex; align-items: center; justify-content: center;
  min-height: 90px; transition: border-color 0.2s, box-shadow 0.2s;
}
.client-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(0,72,144,0.08); }
.client-name { font-family: var(--font-h); font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; text-align: center; transition: color 0.2s; }
.client-card:hover .client-name { color: var(--navy); }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.about-photo img { width: 100%; height: 500px; object-fit: cover; object-position: top; }
.about-cert-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); border-radius: 8px; padding: 16px 18px;
  color: #fff;
}
.cert-card-title { font-family: var(--font-h); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.cert-logos-row { display: flex; gap: 8px; }
.cert-logos-row img { height: 38px; background: rgba(255,255,255,0.9); border-radius: 4px; padding: 3px 6px; object-fit: contain; }
.about-content {}
.about-name { font-family: var(--font-h); font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.about-role { font-size: 14px; color: var(--red); font-weight: 600; margin-bottom: 20px; font-family: var(--font-h); letter-spacing: 0.5px; text-transform: uppercase; }
.cert-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }

/* ===== PARTNER LOGOS ===== */
.partners-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 28px; }
.partner-img { height: 44px; width: auto; background: rgba(255,255,255,0.9); border-radius: 4px; padding: 4px 8px; object-fit: contain; }

/* ===== WHY COMPARISON ===== */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cost-chart { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.cost-chart-label { font-family: var(--font-h); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 24px; }
.cost-row { margin-bottom: 18px; }
.cost-row-head { display: flex; justify-content: space-between; margin-bottom: 7px; }
.cost-row-name { font-family: var(--font-h); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.cost-row-name.reactive { color: #c0392b; }
.cost-row-name.preventive { color: var(--navy); }
.cost-row-name.predictive { color: #1a7a3e; }
.cost-row-note { font-size: 12px; color: var(--muted); }
.cost-bar-bg { height: 28px; background: var(--bg); border-radius: 3px; overflow: hidden; }
.cost-bar { height: 100%; border-radius: 3px; display: flex; align-items: center; padding-left: 10px; font-family: var(--font-h); font-size: 11px; font-weight: 600; color: #fff; transition: width 1.6s cubic-bezier(0.4,0,0.2,1); }
.bar-reactive { width: 0; background: #c0392b; }
.bar-preventive { width: 0; background: var(--navy); }
.bar-predictive { width: 0; background: #27ae60; color: #fff; }
.outcomes-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.outcome-item { text-align: center; padding: 14px; background: var(--bg); border-radius: 6px; border: 1px solid var(--border); }
.outcome-num { font-family: var(--font-h); font-size: 28px; font-weight: 700; line-height: 1; }
.outcome-desc { font-size: 11px; color: var(--muted); margin-top: 4px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feat { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: 6px; border: 1px solid var(--border); background: #fff; transition: border-color 0.2s; }
.why-feat:hover { border-color: var(--navy); }
.feat-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--navy-lt); border: 1px solid #c5d8ee; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.feat-text h4 { font-family: var(--font-h); font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.feat-text p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery-strip { overflow: hidden; position: relative; }
.gallery-strip::before, .gallery-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.gallery-strip::before { left: 0; background: linear-gradient(to right, #f4f7fb, transparent); }
.gallery-strip::after { right: 0; background: linear-gradient(to left, #f4f7fb, transparent); }
.gallery-track { display: flex; gap: 16px; animation: slide 34s linear infinite; width: max-content; }
.gallery-track:hover { animation-play-state: paused; }
.gallery-img { width: 260px; height: 190px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-img:hover img { transform: scale(1.05); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 28px 24px; border-left: 4px solid var(--navy);
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.2s;
}
.testi-card:hover { box-shadow: 0 6px 22px rgba(0,72,144,0.09); }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testi-quote { font-size: 14px; color: var(--text); line-height: 1.75; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.testi-initials { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-h); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-family: var(--font-h); font-size: 14px; font-weight: 600; color: var(--dark); }
.testi-co { font-size: 12px; color: var(--muted); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-section h2 { font-family: var(--font-h); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: #fff; margin-bottom: 14px; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-contact { display: flex; gap: 40px; justify-content: center; align-items: center; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.contact-lbl { font-family: var(--font-h); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.contact-val { font-family: var(--font-h); font-size: 15px; font-weight: 500; color: #fff; }
.contact-val a { color: #fff; }
.contact-val a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 48px; margin-bottom: 16px; background: rgba(255,255,255,0.9); border-radius: 4px; padding: 5px 10px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 260px; }
.footer-badges { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.footer-badge { background: rgba(254,221,1,0.1); border: 1px solid rgba(254,221,1,0.2); border-radius: 3px; padding: 3px 9px; font-family: var(--font-h); font-size: 10px; font-weight: 500; color: var(--gold); letter-spacing: 0.5px; }
.footer-col h4 { font-family: var(--font-h); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-partner-imgs { display: flex; gap: 10px; align-items: center; }
.footer-partner-imgs img { height: 26px; background: rgba(255,255,255,0.15); border-radius: 3px; padding: 2px 6px; object-fit: contain; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-h); font-size: 13px; font-weight: 500; color: var(--dark); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border); border-radius: 4px;
  padding: 11px 14px; font-family: var(--font-b); font-size: 14px; color: var(--text);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,72,144,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-sidebar-card { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 24px; margin-bottom: 20px; }
.contact-sidebar-card h3 { font-family: var(--font-h); font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 16px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.sidebar-contact-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.sidebar-contact-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-contact-icon svg { width: 15px; height: 15px; fill: var(--gold); }
.sidebar-contact-info .lbl { font-family: var(--font-h); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 2px; }
.sidebar-contact-info .val { font-size: 14px; color: var(--text); }
.sidebar-contact-info .val a:hover { color: var(--navy); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .scope-panel { display: none; }
  .services-detail-grid, .about-grid, .comparison-grid, .course-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-cert-card { position: static; margin-top: 16px; }
  .training-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .stat-cell:nth-child(2)::after, .stat-cell:nth-child(4)::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 74px; left: 0; right: 0; background: #fff; padding: 16px 20px; border-bottom: 2px solid var(--navy); z-index: 999; max-height: 80vh; overflow-y: auto; }
  .nav-item > a { height: 48px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; border-bottom: none; background: var(--bg); }
  .hamburger { display: flex; }
  #topbar { display: none; }
  .cta-contact { gap: 20px; }
  .services-photos-col { display: none; }
  .hero-content { padding-top: 80px; }
}
