/* ============================================================
   CAT / SEM SPARE PARTS WEBSITE  —  Global Stylesheet
   Palette: Navy  /  Blue  /  Amber  /  Gray  /  White
   Theme: Industrial B2B  /  Trust-first  /  Mobile responsive
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0F2443;
  --navy-lt:    #1A3A5C;
  --blue:       #1D4ED8;
  --blue-lt:    #3B82F6;
  --amber:      #D97706;
  --amber-lt:   #F59E0B;
  --bg:         #F7F9FC;
  --bg-alt:     #EEF2F8;
  --border:     #CBD5E1;
  --border-lt:  #E2E8F0;
  --text:       #1A2133;
  --text-muted: #64748B;
  --white:      #FFFFFF;
  --green-wa:   #25D366;

  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Inter', sans-serif;

  --r: 6px;
  --shadow-sm: 0 1px 4px rgba(15,36,67,.08);
  --shadow-md: 0 4px 16px rgba(15,36,67,.12);
  --max-w: 1160px;
  --py: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  line-height: 1.15;
  font-weight: 700;
}

/* --- Layout ----------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: var(--py) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--alt  { background: var(--bg-alt); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: all .18s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: #B45309;
  border-color: #B45309;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: #1E40AF;
  border-color: #1E40AF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--ghost-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn--wa:hover {
  background: #1EBE58;
  border-color: #1EBE58;
  color: var(--white);
  transform: translateY(-1px);
}

.btn--sm  { padding: 8px 18px; font-size: .84rem; }
.btn--lg  { padding: 14px 34px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* --- Navbar ----------------------------------------------- */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}

/* Logo */
.navbar__logo { display: flex; flex-direction: column; line-height: 1.15; flex-shrink: 0; }
.navbar__logo-name {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .4px;
}
.navbar__logo-tag {
  font-size: .65rem;
  color: var(--amber-lt);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.navbar__nav a {
  color: rgba(255,255,255,.78);
  padding: 6px 13px;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 500;
  transition: all .15s;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Right side CTA */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__wa {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-wa);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r);
  border: 1px solid rgba(37,211,102,.3);
  transition: all .15s;
}
.navbar__wa:hover { background: rgba(37,211,102,.1); color: var(--green-wa); }
.navbar__wa svg { width: 15px; height: 15px; fill: var(--green-wa); flex-shrink: 0; }

/* Mobile toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  line-height: 1;
}
.navbar__toggle svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 2; }

/* --- Floating WhatsApp FAB -------------------------------- */
.wa-fab {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--green-wa);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: all .18s;
  text-decoration: none;
}
.wa-fab:hover {
  background: #1EBE58;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  color: var(--white);
}
.wa-fab svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }

/* --- Hero (Home) ------------------------------------------ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 84px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217,119,6,.15);
  color: var(--amber-lt);
  border: 1px solid rgba(217,119,6,.35);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.hero__title span { color: var(--amber-lt); }
.hero__sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  line-height: 1.72;
  max-width: 460px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Image placeholder (dark bg variant) */
.img-ph {
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.18);
  border-radius: 8px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 10px;
  color: rgba(255,255,255,.4);
}
.img-ph--light {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  color: var(--text-muted);
}
.img-ph svg { width: 38px; height: 38px; opacity: .4; }
.img-ph strong { font-size: .88rem; font-weight: 600; color: inherit; }
.img-ph em { font-size: .72rem; font-style: normal; opacity: .7; }

/* --- Trust Bar -------------------------------------------- */
.trust-bar {
  background: var(--amber);
  padding: 18px 24px;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}
.trust-bar__item { text-align: center; }
.trust-bar__n {
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.trust-bar__l {
  font-size: .74rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2px;
  letter-spacing: .2px;
}
.trust-bar__div {
  width: 1px;
  height: 36px;
  background: rgba(15,36,67,.2);
}

/* --- Section Heading -------------------------------------- */
.sh { margin-bottom: 44px; }
.sh--c { text-align: center; }
.sh--l { text-align: left; }
.sh__eye {
  display: inline-block;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.section--dark .sh__eye { color: var(--amber-lt); }
.sh__title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.section--dark .sh__title { color: var(--white); }
.sh__sub {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.7;
  max-width: 560px;
}
.sh--c .sh__sub { margin: 0 auto; }
.section--dark .sh__sub { color: rgba(255,255,255,.68); }

/* --- Category Cards (What We Supply) ---------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: all .18s;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--amber);
}
.cat-card__icon {
  width: 42px; height: 42px;
  background: var(--bg-alt);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.cat-card__icon svg { width: 22px; height: 22px; }
.cat-card__title { font-size: 1.15rem; color: var(--navy); margin-bottom: 7px; }
.cat-card__desc  { color: var(--text-muted); font-size: .88rem; line-height: 1.6; margin-bottom: 14px; }
.cat-card__list  { margin-bottom: 18px; display: flex; flex-direction: column; gap: 5px; }
.cat-card__list li {
  font-size: .83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cat-card__list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.cat-card__link {
  color: var(--blue);
  font-size: .87rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}
.cat-card__link:hover { gap: 8px; color: #1E40AF; }

/* --- Product Grid / Card ---------------------------------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 18px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .18s;
}
.prod-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-lt); }

.prod-card__img {
  height: 150px;
  background: var(--bg-alt);
  border-bottom: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .75rem;
  gap: 6px;
  text-align: center;
  padding: 12px;
}
.prod-card__img svg { width: 26px; height: 26px; opacity: .28; }

.prod-card__body { padding: 14px 16px; }
.prod-card__pn {
  font-size: .69rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.prod-card__name { font-size: 1rem; color: var(--navy); margin-bottom: 3px; }
.prod-card__oem  { font-size: .75rem; color: var(--text-muted); margin-bottom: 12px; }
.prod-card__btn  { width: 100%; justify-content: center; padding: 8px; font-size: .82rem; }

/* --- Category Section (cat320.html) ----------------------- */
.cat-section { margin-bottom: 56px; }
.cat-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.cat-section__tag {
  background: var(--navy);
  color: var(--amber-lt);
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}
.cat-section__title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: var(--navy);
}

/* --- Steps ------------------------------------------------ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.step-card {
  text-align: center;
  padding: 30px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
}
.step-card__n {
  width: 50px; height: 50px;
  background: var(--navy);
  color: var(--amber-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-card__title { font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.step-card__desc  { color: var(--text-muted); font-size: .87rem; line-height: 1.62; }

/* --- CTA Band --------------------------------------------- */
.cta-band {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}
.cta-band__title { font-size: clamp(1.55rem, 3vw, 2.1rem); color: var(--white); margin-bottom: 8px; }
.cta-band__sub   { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: .97rem; }
.cta-band__acts  { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* --- RFQ Banner ------------------------------------------- */
.rfq-banner {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.rfq-banner h3 { font-family: var(--font-h); font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.rfq-banner p  { color: var(--text-muted); font-size: .88rem; }

/* --- Why-Us Cards ----------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
}
.why-card__icon {
  width: 46px; height: 46px;
  background: rgba(29,78,216,.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card__title { font-size: 1.1rem; color: var(--navy); margin-bottom: 7px; }
.why-card__desc  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

/* --- Stats Row -------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: 48px 0;
}
.stat-item {
  background: var(--white);
  padding: 30px 20px;
  text-align: center;
}
.stat-item__n { font-family: var(--font-h); font-size: 2rem; color: var(--navy); line-height: 1; margin-bottom: 5px; }
.stat-item__l { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }

/* --- Photo Grid ------------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.photo-item {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--r);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 9px;
  color: var(--text-muted);
}
.photo-item svg    { width: 32px; height: 32px; opacity: .28; }
.photo-item strong { font-size: .86rem; font-weight: 600; color: var(--text); }
.photo-item em     { font-size: .73rem; font-style: normal; }

/* --- Process Steps (inline) ------------------------------- */
.process-list { counter-reset: step; }
.process-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-lt);
}
.process-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.process-item__n {
  width: 34px; height: 34px;
  background: var(--navy);
  color: var(--amber-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.process-item__title { font-weight: 600; color: var(--navy); margin-bottom: 3px; font-size: .93rem; }
.process-item__desc  { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

/* --- Contact Form ----------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.form-label .req { color: var(--blue); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: .91rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.08);
}
.form-textarea { resize: vertical; min-height: 108px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit { margin-top: 6px; }

.contact-side { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  padding: 24px;
}
.info-card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--amber-lt);
  margin-bottom: 18px;
}
.info-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .88rem;
}
.info-item:last-child { margin-bottom: 0; }
.info-item svg { width: 16px; height: 16px; color: var(--amber-lt); flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.45); margin-bottom: 1px; }

.wa-card {
  background: #06280D;
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--r);
  padding: 20px;
}
.wa-card p { color: rgba(255,255,255,.75); font-size: .86rem; margin-bottom: 12px; }
.wa-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  padding: 11px 18px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .92rem;
  transition: background .18s;
  text-decoration: none;
}
.wa-card a:hover { background: #1EBE58; color: var(--white); }
.wa-card svg { width: 18px; height: 18px; fill: var(--white); }

.next-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
}
.next-card h3 { font-family: var(--font-h); font-size: 1rem; color: var(--navy); margin-bottom: 14px; }
.next-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.next-item:last-child { margin-bottom: 0; }
.next-item__n {
  width: 24px; height: 24px;
  background: var(--navy);
  color: var(--amber-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .74rem;
  font-weight: 700;
  flex-shrink: 0;
}
.next-item__t { font-size: .86rem; color: var(--text); padding-top: 2px; line-height: 1.55; }

/* --- Page Hero (inner pages) ------------------------------ */
.page-hero {
  background: var(--navy);
  padding: 58px 24px 52px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 11px; }
.page-hero__sub   { color: rgba(255,255,255,.72); font-size: .98rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  padding: 9px 24px;
}
.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumb__inner a { color: var(--blue); }
.breadcrumb__inner a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: .4; }

/* --- Notice banner ---------------------------------------- */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(29,78,216,.07);
  border: 1px solid rgba(29,78,216,.18);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: .84rem;
  color: #1E3A8A;
  margin-bottom: 28px;
}
.notice svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

/* --- Footer ----------------------------------------------- */
.footer {
  background: #070F1C;
  color: rgba(255,255,255,.65);
  padding: 52px 24px 26px;
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}
.footer__name { font-family: var(--font-h); font-size: 1.25rem; color: var(--white); margin-bottom: 3px; }
.footer__tag  { font-size: .66rem; color: var(--amber-lt); letter-spacing: 1.1px; text-transform: uppercase; margin-bottom: 12px; }
.footer__desc { font-size: .86rem; line-height: 1.65; margin-bottom: 18px; max-width: 260px; }
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-wa);
  color: var(--white);
  padding: 8px 15px;
  border-radius: var(--r);
  font-size: .83rem;
  font-weight: 600;
  transition: background .15s;
}
.footer__wa:hover { background: #1EBE58; color: var(--white); }
.footer__wa svg { width: 15px; height: 15px; fill: var(--white); }

.footer__col-title {
  font-family: var(--font-h);
  font-size: .76rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 7px; }
.footer__links a { color: rgba(255,255,255,.55); font-size: .86rem; transition: color .15s; }
.footer__links a:hover { color: var(--white); }

.footer__ci { display: flex; flex-direction: column; gap: 12px; }
.footer__ci-item { display: flex; gap: 9px; align-items: flex-start; font-size: .86rem; }
.footer__ci-item svg { width: 15px; height: 15px; color: var(--amber-lt); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: var(--white); }

/* --- Trust Bar (Card variant — no fake statistics) -------- */
.trust-bar__ico {
  width: 40px;
  height: 40px;
  background: rgba(15,36,67,.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.trust-bar__ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}
.trust-bar__ct {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2px;
}
.trust-bar__cs {
  font-size: .72rem;
  color: var(--navy);
  opacity: .75;
  line-height: 1.4;
}

/* --- Meet Your Contact ------------------------------------ */
.cp-section { background: var(--white); }
.cp-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.cp-photo-ph {
  min-height: 340px;
  border-radius: 10px;
}
.cp-role {
  color: var(--blue);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.cp-bio {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.cp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 24px;
}
.cp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Utilities -------------------------------------------- */
.text-muted  { color: var(--text-muted); }
.text-blue   { color: var(--blue); }
.text-amber  { color: var(--amber); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.divider {
  border: none;
  border-top: 1px solid var(--border-lt);
  margin: 40px 0;
}

.tag {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-side   { position: static; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__grid > :first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --py: 48px; }

  /* Navbar mobile */
  .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--navy);
    padding: 12px 20px 16px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    z-index: 100;
  }
  .navbar__nav.open { display: flex; }
  .navbar__nav a { width: 100%; padding: 9px 12px; font-size: .94rem; }
  .navbar__toggle { display: block; }
  .navbar__wa span { display: none; }
  .navbar__right .btn { display: none; }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .hero__sub   { max-width: 100%; }
  .hero__actions { flex-wrap: wrap; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* FAB */
  .wa-fab span { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; }

  /* Meet Your Contact */
  .cp-inner { grid-template-columns: 1fr; gap: 28px; }
  .cp-photo-ph { min-height: 220px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > :first-child { grid-column: span 1; }
  .trust-bar__inner { gap: 20px; }
  .trust-bar__div   { display: none; }
}
