/* ═══════════════════════════════════════
   ADVENT INTERNATIONAL — MAIN STYLESHEET
   v1.0.0
═══════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --navy: #0D2B5C; --navy-dark: #081B3E; --navy-light: #1A4080;
  --blue: #1666C8; --blue-mid: #0E52A8; --blue-light: #EEF4FF;
  --gold: #C9A84C; --gold-light: #FBF5E6;
  --white: #FFFFFF; --off-white: #F7F9FC;
  --gray-50: #F0F3F8; --gray-100: #E0E6F0; --gray-300: #9BACC4;
  --text-primary: #0D2B5C; --text-secondary: #3D5272; --text-muted: #7B92AE;
  --font-h: 'Sora', sans-serif; --font-b: 'DM Sans', sans-serif;
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
  --sh-sm: 0 1px 3px rgba(13,43,92,0.08);
  --sh-md: 0 4px 16px rgba(13,43,92,0.10);
  --sh-lg: 0 12px 40px rgba(13,43,92,0.14);
  --W: 1180px; --NH: 80px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); font-size: 16px; line-height: 1.7; color: var(--text-primary); background: var(--white); -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.2; }
p { color: var(--text-secondary); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { padding: 96px 0; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container { max-width: var(--W); margin: 0 auto; padding: 0 24px; }
.site-content { padding-top: var(--NH); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: var(--r-md);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s ease; white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: #B8962F; transform: translateY(-1px); box-shadow: var(--sh-md); color: var(--navy-dark); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: var(--sh-md); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--gray-100); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn svg { flex-shrink: 0; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); }

/* ─── SECTION HEADERS ─── */
.s-header { margin-bottom: 56px; }
.s-header h2 { font-size: clamp(26px,3vw,40px); font-weight: 700; color: var(--navy); letter-spacing: -0.3px; margin-bottom: 14px; }
.s-header p { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.s-header.centered { text-align: center; }
.s-header.centered p { margin: 0 auto; }

/* ─── BRAND TAGS ─── */
.brand-tag { font-size: 11px; font-weight: 600; color: var(--blue); background: var(--blue-light); padding: 3px 8px; border-radius: 4px; letter-spacing: 0.3px; font-family: var(--font-h); }
.brand-tag.gold-t { color: #8B6B1A; background: var(--gold-light); }
.product-brands { display: flex; flex-wrap: wrap; gap: 6px; }

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--NH); background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--sh-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-branding { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; background: var(--navy); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-mark span { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--navy); }
.brand-text small { font-size: 10px; letter-spacing: 0.8px; color: var(--gold); text-transform: uppercase; font-weight: 600; }

/* WordPress Menu */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.main-navigation ul li a { font-size: 13.5px; font-weight: 500; color: var(--text-secondary); transition: color 0.15s; font-family: var(--font-h); text-decoration: none; }
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a { color: var(--navy); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--navy); font-family: var(--font-h); white-space: nowrap; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy-dark); padding: calc(var(--NH) + 72px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 40%,rgba(22,102,200,0.17) 0%,transparent 60%),radial-gradient(circle at 15% 75%,rgba(201,168,76,0.09) 0%,transparent 50%); pointer-events: none; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.40); font-family: var(--font-h); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.40); transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.70); }
.breadcrumb span { color: var(--gold); }
.breadcrumb svg { opacity: 0.4; }
.page-hero h1 { font-size: clamp(30px,4vw,52px); font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: -0.4px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.ph-sub { font-size: 17px; color: rgba(255,255,255,0.60); line-height: 1.75; max-width: 580px; margin-bottom: 32px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pill { font-family: var(--font-h); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 6px 14px; border-radius: 100px; }

/* ─── HERO (HOMEPAGE) ─── */
.home-hero {
  min-height: 100vh; background: var(--navy-dark); position: relative;
  display: flex; align-items: center; padding-top: var(--NH); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%,rgba(22,102,200,0.18) 0%,transparent 60%),radial-gradient(circle at 80% 20%,rgba(201,168,76,0.10) 0%,transparent 50%); pointer-events: none; }
.hero-grid-o { 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-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 100px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35); border-radius: 100px; padding: 6px 16px 6px 8px; margin-bottom: 28px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.6;transform:scale(1.3);} }
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: .5px; font-family: var(--font-h); }
.home-hero h1 { font-size: clamp(34px,4vw,58px); font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: -.5px; }
.home-hero h1 .hl { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.70); line-height: 1.75; margin-bottom: 40px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); }
.hero-trust-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; white-space: nowrap; }
.hero-trust-logos { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.trust-brand { font-family: var(--font-h); font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.50); letter-spacing: .5px; text-transform: uppercase; padding: 4px 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-sm); }
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-card-main { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-xl); padding: 36px; position: relative; overflow: hidden; }
.hero-card-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--gold),var(--blue)); }
.hero-card-main h3 { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 24px; letter-spacing: .5px; font-family: var(--font-h); }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-stat { padding: 16px; background: rgba(255,255,255,0.05); border-radius: var(--r-md); }
.hero-stat-num { font-family: var(--font-h); font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero-stat-num em { font-size: 20px; font-style: normal; color: var(--gold); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.50); }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-mini-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-lg); padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.hero-mini-icon { width: 36px; height: 36px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.hero-mini-icon.blue { background: rgba(22,102,200,0.20); }
.hero-mini-icon.gold { background: rgba(201,168,76,0.20); }
.hero-mini-card p { font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.4; }
.hero-mini-card strong { font-family: var(--font-h); font-size: 14px; font-weight: 600; color: var(--white); display: block; }

/* ─── MARQUEE ─── */
.marquee-section { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 24s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0);}100%{transform:translateX(-50%);} }
.marquee-item { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--gray-300); letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 48px; }
.marquee-item::after { content: '·'; color: var(--gold); font-size: 20px; }

/* ─── ABOUT SECTION ─── */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--blue-light); border-radius: var(--r-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--gray-300); font-size: 13px; font-family: var(--font-h); }
.img-placeholder svg { width: 48px; height: 48px; opacity: .4; }
.about-badge-float { position: absolute; bottom: -20px; right: -20px; background: var(--navy); border-radius: var(--r-lg); padding: 20px 24px; box-shadow: var(--sh-lg); }
.about-badge-float strong { display: block; font-family: var(--font-h); font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge-float span { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .8px; }
.about-text h2 { font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.milestones { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.milestone { display: flex; gap: 16px; align-items: flex-start; }
.m-year { flex-shrink: 0; font-family: var(--font-h); font-size: 12px; font-weight: 700; color: var(--gold); background: var(--gold-light); padding: 4px 10px; border-radius: var(--r-sm); margin-top: 2px; }
.milestone p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; font-family: var(--font-h); font-size: 14px; font-weight: 600; color: var(--blue); transition: gap .2s; }
.text-link:hover { gap: 12px; color: var(--blue); }

/* ─── PRODUCTS GRID ─── */
.products-section { background: var(--off-white); }
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.prod-card { background: var(--white); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--gray-100); transition: all .25s; position: relative; overflow: hidden; text-decoration: none; display: block; }
.prod-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.prod-card:hover::after { transform: scaleX(1); }
.prod-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.prod-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.prod-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.prod-cta { text-align: center; margin-top: 40px; }

/* ─── ADVANTAGES ─── */
.adv-section { background: var(--navy); }
.adv-section .s-header h2 { color: var(--white); }
.adv-section .s-header p { color: rgba(255,255,255,.55); }
.adv-section .section-label { color: var(--gold); }
.adv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--r-xl); overflow: hidden; }
.adv-item { background: var(--navy); padding: 36px; display: flex; gap: 20px; transition: background .2s; }
.adv-item:hover { background: var(--navy-light); }
.adv-num { flex-shrink: 0; font-family: var(--font-h); font-size: 40px; font-weight: 700; color: rgba(201,168,76,0.2); line-height: 1; width: 60px; }
.adv-text h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.adv-text p { font-size: 14px; color: rgba(255,255,255,.50); line-height: 1.65; margin-bottom: 0; }

/* ─── SUCCESSES ─── */
.succ-section { background: var(--white); }
.succ-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.succ-card { border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: box-shadow .2s; }
.succ-card:hover { box-shadow: var(--sh-md); }
.succ-num { flex-shrink: 0; width: 40px; height: 40px; background: var(--blue-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--blue); }
.succ-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.succ-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.pipeline-header { display: flex; align-items: center; gap: 16px; margin: 60px 0 28px; }
.pipeline-header h3 { font-size: 22px; font-weight: 700; color: var(--navy); }
.p-badge { background: var(--gold-light); color: var(--gold); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; font-family: var(--font-h); letter-spacing: .5px; text-transform: uppercase; }
.p-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.p-card { background: var(--off-white); border-radius: var(--r-md); padding: 20px; border-left: 3px solid var(--gold); }
.p-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.p-card .val { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--gold); }

/* ─── CONTACT ─── */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.c-info h2 { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.c-info > p { color: var(--text-muted); margin-bottom: 36px; }
.c-details { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-item-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.c-item-text strong { display: block; font-family: var(--font-h); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.c-item-text span { font-size: 14px; color: var(--text-muted); }
.c-form { background: var(--white); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--sh-md); border: 1px solid var(--gray-100); }
.form-title { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-family: var(--font-h); font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: .3px; text-transform: uppercase; }
.fg input,.fg select,.fg textarea { width: 100%; font-family: var(--font-b); font-size: 14px; color: var(--text-primary); background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: var(--r-md); padding: 12px 14px; outline: none; transition: border-color .15s; appearance: none; }
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239BACC4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color: var(--blue); background: var(--white); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; font-size: 15px; border-radius: var(--r-md); margin-top: 8px; border: none; }
.form-disc { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* WordPress Contact Form 7 overrides */
.wpcf7-form .fg input,
.wpcf7-form .fg select,
.wpcf7-form .fg textarea { width: 100%; }
.wpcf7-submit { width: 100%; background: var(--gold); color: var(--navy-dark); font-family: var(--font-h); font-size: 15px; font-weight: 600; padding: 16px; border-radius: var(--r-md); border: 2px solid var(--gold); cursor: pointer; transition: all 0.2s; }
.wpcf7-submit:hover { background: #B8962F; }
.wpcf7-response-output { margin-top: 12px; font-size: 13px; border-radius: var(--r-md); padding: 10px 16px; }

/* ─── BLOG ─── */
.blog-section { background: var(--white); padding: 80px 0; }
.blog-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .2s, transform .2s; text-decoration: none; display: block; }
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--blue-light); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 20px; }
.blog-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 8px; font-family: var(--font-h); }
.blog-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.blog-meta { font-size: 12px; color: var(--gray-300); margin-top: 12px; font-family: var(--font-h); }

/* ─── ABOUT PAGE SPECIFIC ─── */
.story-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img-wrap { position: relative; }
.story-pull { font-size: 20px; font-family: var(--font-h); font-weight: 600; color: var(--navy); line-height: 1.4; border-left: 3px solid var(--gold); padding-left: 20px; margin: 28px 0; }

/* Timeline */
.tl-section { background: var(--off-white); }
.tl-section h2 { font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 56px; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--gray-100); transform: translateX(-50%); }
.tl-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start; margin-bottom: 48px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-left { text-align: right; }
.tl-right { text-align: left; }
.tl-dot { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; border: 3px solid var(--white); }
.tl-dot span { font-family: var(--font-h); font-size: 11px; font-weight: 700; color: var(--gold); }
.tl-dot.gold-dot { background: var(--gold); }
.tl-dot.gold-dot span { color: var(--navy); }
.tl-year { font-family: var(--font-h); font-size: 24px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.tl-title { font-family: var(--font-h); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.tl-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.tl-spacer { background: transparent; }

/* VMC */
.vmc-section { background: var(--navy); }
.vmc-section .section-label { color: var(--gold); }
.vmc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--r-xl); overflow: hidden; }
.vmc-card { background: var(--navy); padding: 44px 36px; position: relative; }
.vmc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.vmc-card:nth-child(1)::before { background: var(--gold); }
.vmc-card:nth-child(2)::before { background: var(--blue); }
.vmc-card:nth-child(3)::before { background: #5DCAA5; }
.vmc-icon { font-size: 32px; margin-bottom: 20px; }
.vmc-label { font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.vmc-card:nth-child(1) .vmc-label { color: var(--gold); }
.vmc-card:nth-child(2) .vmc-label { color: #85B7EB; }
.vmc-card:nth-child(3) .vmc-label { color: #5DCAA5; }
.vmc-card h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.vmc-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 0; }
.vmc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.vmc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
.vmc-list li::before { content: ''; display: block; width: 6px; height: 6px; background: rgba(255,255,255,.2); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

/* Leadership */
.lead-section { background: var(--white); }
.lead-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-bottom: 48px; }
.lead-card { border: 1px solid var(--gray-100); border-radius: var(--r-xl); overflow: hidden; transition: box-shadow .25s; }
.lead-card:hover { box-shadow: var(--sh-lg); }
.lead-top { background: var(--off-white); padding: 36px 36px 0; display: flex; gap: 24px; align-items: flex-end; }
.lead-avatar { width: 96px; height: 96px; background: var(--navy); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: -1px; overflow: hidden; }
.lead-avatar span { font-family: var(--font-h); font-size: 32px; font-weight: 700; color: var(--gold); }
.lead-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lead-meta { padding-bottom: 20px; }
.lead-name { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.lead-title-role { font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .8px; font-family: var(--font-h); }
.lead-edu { font-size: 12px; color: var(--gray-300); margin-top: 4px; }
.lead-body { padding: 28px 36px 32px; }
.lead-body p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.lead-strengths { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.strength-tag { font-size: 11px; font-weight: 600; color: var(--navy); background: var(--blue-light); padding: 4px 10px; border-radius: var(--r-sm); font-family: var(--font-h); }

/* Org */
.org-section { background: var(--off-white); padding: 80px 0; }
.org-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.org-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 24px; position: relative; }
.org-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--blue); border-radius: 3px 0 0 3px; }
.org-card.gold-card::before { background: var(--gold); }
.org-card h4 { font-family: var(--font-h); font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.org-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 0; }

/* CSR */
.csr-section { background: var(--white); padding: 80px 0; }
.csr-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.csr-content h2 { font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.csr-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.csr-items { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.csr-item { display: flex; gap: 14px; align-items: flex-start; }
.csr-item-icon { width: 40px; height: 40px; background: var(--gold-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.csr-item-text strong { display: block; font-family: var(--font-h); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.csr-item-text span { font-size: 13px; color: var(--text-muted); }
.csr-img-wrap { background: var(--blue-light); border-radius: var(--r-xl); aspect-ratio: 4/3; overflow: hidden; }
.csr-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.csr-img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--blue-light); border-radius: var(--r-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--gray-300); font-size: 13px; font-family: var(--font-h); }
.csr-img-placeholder svg { width: 48px; height: 48px; opacity: .4; }

/* ─── PRODUCTS PAGE ─── */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--gray-100); position: sticky; top: var(--NH); z-index: 100; }
.filter-inner { display: flex; align-items: center; gap: 4px; overflow-x: auto; padding: 14px 0; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn { flex-shrink: 0; font-family: var(--font-h); font-size: 13px; font-weight: 600; color: var(--text-muted); background: var(--gray-50); border: none; padding: 9px 18px; border-radius: var(--r-md); cursor: pointer; transition: all .15s; white-space: nowrap; }
.filter-btn:hover { color: var(--navy); background: var(--gray-100); }
.filter-btn.active { background: var(--navy); color: var(--white); }
.products-main { padding: 80px 0; }
.prod-section { margin-bottom: 96px; scroll-margin-top: calc(var(--NH) + 60px); }
.prod-section:last-child { margin-bottom: 0; }
.sec-head { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; padding-bottom: 40px; border-bottom: 1px solid var(--gray-100); margin-bottom: 40px; }
.sec-icon-lg { width: 72px; height: 72px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.bg-blue-l { background: var(--blue-light); }
.bg-gold-l { background: var(--gold-light); }
.bg-navy-l { background: rgba(13,43,92,0.07); }
.sec-head-text h2 { font-size: clamp(22px,2.5vw,30px); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sec-head-text p { font-size: 15px; color: var(--text-muted); max-width: 640px; line-height: 1.7; margin-bottom: 0; }
.prod-items { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 28px; }
.prod-item { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 24px; transition: all .2s; }
.prod-item:hover { background: var(--white); box-shadow: var(--sh-md); transform: translateY(-2px); }
.pi-name { font-family: var(--font-h); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.pi-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.pi-specs { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.spec-row { display: flex; gap: 8px; align-items: baseline; }
.spec-lbl { font-size: 11px; font-weight: 600; color: var(--gray-300); font-family: var(--font-h); text-transform: uppercase; letter-spacing: .5px; min-width: 56px; flex-shrink: 0; }
.spec-val { font-size: 12px; color: var(--text-secondary); }
.ppp-banner { background: var(--navy); border-radius: var(--r-lg); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.ppp-text h4 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ppp-text p { font-size: 13px; color: rgba(255,255,255,.55); max-width: 480px; line-height: 1.6; margin-bottom: 0; }
.ppp-tag { font-family: var(--font-h); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); padding: 6px 14px; border-radius: 100px; white-space: nowrap; }
.sec-cta { display: flex; align-items: center; justify-content: space-between; background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 20px 24px; flex-wrap: wrap; gap: 12px; }
.sec-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }
.sec-cta p strong { color: var(--navy); font-weight: 600; }
.cons-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.cons-card { border: 1px solid var(--gray-100); border-radius: var(--r-md); padding: 20px; text-align: center; background: var(--white); transition: box-shadow .2s; }
.cons-card:hover { box-shadow: var(--sh-md); }
.cons-emoji { font-size: 28px; margin-bottom: 10px; }
.cons-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; font-family: var(--font-h); }
.cons-card p { font-size: 12px; color: var(--text-muted); margin-bottom: 0; }

/* ─── CTA DARK ─── */
.cta-dark { background: var(--navy-dark); padding: 80px 0; position: relative; overflow: hidden; }
.cta-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 60% 50%,rgba(22,102,200,0.15) 0%,transparent 60%); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-size: clamp(26px,3vw,38px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-lbl { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; justify-content: center; }
.cta-lbl::before,.cta-lbl::after { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.f-logo-mark { width: 36px; height: 36px; background: var(--gold); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.f-logo-mark span { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--navy-dark); }
.f-logo-text { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--white); }
.f-tagline { font-size: 13px; color: rgba(255,255,255,.40); line-height: 1.7; margin-bottom: 24px; }
.f-slogan { display: inline-block; font-family: var(--font-h); font-size: 12px; font-weight: 600; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 5px 14px; border-radius: 100px; }
.f-col-title { font-family: var(--font-h); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-widget-area ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.footer-widget-area ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .15s; text-decoration: none; }
.footer-widget-area ul li a:hover { color: var(--white); }
.f-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.f-bottom p { font-size: 12px; color: rgba(255,255,255,.28); margin: 0; }
.f-bottom a { color: var(--gold); }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .hero-content{grid-template-columns:1fr;}.hero-right{display:none;}
  .about-grid,.story-grid,.csr-grid{grid-template-columns:1fr;gap:48px;}
  .about-img-wrap,.story-img-wrap{order:-1;}
  .prod-grid,.vmc-grid,.adv-grid,.lead-grid{grid-template-columns:repeat(2,1fr);}
  .prod-items{grid-template-columns:repeat(2,1fr);}
  .cons-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
  .contact-grid{grid-template-columns:1fr;gap:40px;}
  .p-grid{grid-template-columns:repeat(2,1fr);}
  .org-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
  section{padding:64px 0;}
  .main-navigation,.nav-phone{display:none;}
  .menu-toggle{display:block;}
  .prod-grid,.prod-items,.succ-grid,.blog-grid,.form-g2{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .f-bottom{flex-direction:column;gap:8px;text-align:center;}
  .cta-actions,.hero-actions{flex-direction:column;}
  .vmc-grid,.adv-grid,.lead-grid{grid-template-columns:1fr;}
  .timeline::before{left:24px;}
  .tl-item{grid-template-columns:48px 1fr;gap:16px;}
  .tl-left{display:none;}
  .org-grid,.p-grid{grid-template-columns:1fr;}
  .sec-head{grid-template-columns:1fr;}
  .sec-icon-lg{display:none;}
  .cons-grid{grid-template-columns:repeat(2,1fr);}
  .about-badge-float,.fl-badge{bottom:-12px;right:-4px;}
}

/* ─── MOBILE MENU ─── */
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: var(--navy-dark); z-index: 999; padding: 100px 24px 40px; flex-direction: column; gap: 8px; }
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay a { font-family: var(--font-h); font-size: 22px; font-weight: 600; color: var(--white); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-decoration: none; }
.mobile-menu-overlay a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 28px; right: 24px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* ─── COUNTER ─── */
.counter { display: inline; }
