/* =========================================================
   Care Axis Traders — Design System
   ========================================================= */

:root {
  --blue: #0a58ca;
  --blue-600: #0a58ca;
  --blue-700: #0848a8;
  --blue-50: #eaf1fd;
  --navy: #0b2545;
  --navy-800: #0f2b52;
  --cyan: #19a7e6;
  --cyan-50: #e6f6fd;
  --silver: #c9ced4;
  --silver-50: #f1f3f6;

  --ink: #0f172a;
  --muted: #5b6b82;
  --surface: #f5f8fc;
  --white: #ffffff;
  --line: #e5eaf2;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 6px rgba(11, 37, 69, 0.06);
  --shadow: 0 12px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.12);

  --container: 1200px;

  --gradient-brand: linear-gradient(135deg, #0a58ca 0%, #19a7e6 100%);
  --gradient-navy: linear-gradient(135deg, #0b2545 0%, #0a58ca 100%);
  --gradient-soft: linear-gradient(135deg, #eaf1fd 0%, #e6f6fd 100%);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--navy);
  margin: 0 0 .6em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Eyebrow + section titles */
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head { margin: 0 auto 50px; text-align: center; }
.section-head p { font-size: 1.02rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn i { font-size: .9em; }
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(10, 88, 202, 0.28);
}
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(10, 88, 202, 0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { color: var(--blue); transform: translateY(-2px); }
.btn-ghost {
  padding: 10px 18px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
}
.btn-ghost:hover { color: var(--blue); }

/* =========================================================
   Header
   ========================================================= */
.topbar {
  background: var(--navy);
  color: #cfd8e8;
  font-size: .85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.topbar a { color: #eef3fb; }
.topbar a:hover { color: var(--cyan); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar i { color: var(--cyan); margin-right: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,1);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; padding: 4px 0; gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 90px; width: auto; }
.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: .97rem;
  padding: 10px 16px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover,
.main-nav .active a { background: var(--blue-50); color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.wa-icon {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.1rem;
  transition: transform .2s ease;
}
.wa-icon:hover { color: #fff; transform: scale(1.08); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; border-radius: 10px;
  color: var(--navy); font-size: 1.4rem;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 110px 0 130px;
  color: #fff;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(11,37,69,.92) 0%, rgba(11,37,69,.78) 45%, rgba(10,88,202,.55) 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative;
}
.hero-text .eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.hero-text h1 { color: #fff; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,.18); }
.hero-text h1 span { background: linear-gradient(90deg, #6cc8f4 0%, #19a7e6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-text p { font-size: 1.1rem; max-width: 560px; margin-bottom: 28px; color: #dbe6f7; }
.hero-text p.hero-lead-secondary {
  font-size: 1rem;
  max-width: 580px;
  margin-top: -12px;
  margin-bottom: 28px;
  color: #c8d8ee;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-ctas .btn-outline {
  color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06);
}
.hero-ctas .btn-outline:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
/* Hero card: stacked trust rows — one bordered box per row, left-aligned */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  color: #ffffff;
}
.hero-card-inner .hero-trust {
  align-self: stretch;
  text-align: left;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  font-size: .88rem;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-trust-item i,
.hero-trust-item .fas {
  color: #ffffff;
  background: rgba(255,255,255,.2);
  padding: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  text-shadow: none;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-wrap {
  position: relative;
  flex: 0 1 460px;
  width: min(100%, 460px);
  max-width: 460px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-card {
  position: relative;
  width: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  background: rgba(11,37,69,.35);
  padding: 26px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-card .bg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
  z-index: 0;
}
.hero-card::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,37,69,.2) 0%, rgba(11,37,69,.7) 100%);
  z-index: 0;
}
.hero-card-inner {
  position: relative; z-index: 1;
  min-height: 260px;
  padding: 6px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.hero-card h3 { color: #fff; font-size: 1.6rem; line-height: 1.25; margin: 0; }
.hero-card p { color: #cfdcf2; margin: 0; max-width: 48ch; }
.hero-float {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--navy); font-size: .85rem;
  white-space: nowrap;
  z-index: 3;
}
.hero-float i {
  width: 32px; height: 32px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--blue-50); color: var(--blue); font-size: .9rem;
}
.hero-float.tl { top: -18px; left: -18px; }
.hero-float.br { bottom: -18px; right: -18px; }

/* =========================================================
   Value props strip
   ========================================================= */
.values { padding: 70px 0; }
.values .grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 24px;
  border-radius: var(--radius);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.value-card .icn {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); color: #fff; font-size: 1.25rem;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { font-size: .92rem; margin: 0; }

/* =========================================================
   About split
   ========================================================= */
.about-split { background: var(--surface); padding: 100px 0; }
.about-split .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: var(--gradient-navy);
  box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,37,69,.55) 100%);
}
.about-badge {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  background: #fff; padding: 16px 20px; border-radius: 14px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
}
.about-badge i { width: 44px; height: 44px; display: inline-flex; align-items:center; justify-content:center; background: var(--blue-50); color: var(--blue); border-radius: 12px; font-size: 1.2rem; }
.about-badge strong { color: var(--navy); display: block; font-size: 1rem; }
.about-badge span { color: var(--muted); font-size: .82rem; }

.about-text h2 { margin-bottom: 14px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.about-points li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; color: var(--navy); font-weight: 500;
}
.about-points li i { color: var(--blue); margin-top: 3px; }

/* =========================================================
   Category cards
   ========================================================= */
.cats { padding: 100px 0; }
.cats-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  position: relative;
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
}
.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  opacity: 0; transition: opacity .25s ease;
  z-index: 0;
}
.cat-card > * { position: relative; z-index: 1; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; color: inherit; }
.cat-card:hover::before { opacity: 1; }
.cat-card .icn {
  width: 58px; height: 58px; display: inline-flex; align-items:center; justify-content:center;
  background: var(--gradient-brand); color: #fff; border-radius: 16px; font-size: 1.4rem;
  margin-bottom: 20px;
}
.cat-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.cat-card p { font-size: .92rem; color: var(--muted); margin-bottom: 16px; }
.cat-card .arrow { color: var(--blue); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; }
.cat-card:hover .arrow { color: var(--navy); }
.cat-card:hover .arrow i { transform: translateX(4px); }
.cat-card .arrow i { transition: transform .2s ease; }

/* Rich category card (products page) */
.cat-card-rich {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card-rich:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; color: inherit; }
.cat-card-rich .visual {
  position: relative;
  height: 180px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  overflow: hidden;
}
.cat-card-rich .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cat-card-rich .visual i {
  position: relative; z-index: 2;
  font-size: 2.4rem;
  background: rgba(255,255,255,.18);
  width: 68px; height: 68px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.cat-card-rich .visual::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,88,202,.55) 0%, rgba(11,37,69,.55) 100%);
}
.cat-card-rich .body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.cat-card-rich h3 { margin-bottom: 10px; color: var(--navy); }
.cat-card-rich p { font-size: .92rem; color: var(--muted); margin-bottom: 16px; }
.cat-card-rich .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.cat-card-rich .chips span {
  font-size: .75rem; color: var(--navy); background: var(--blue-50);
  padding: 4px 10px; border-radius: 999px; font-weight: 500;
}
.cat-card-rich .view {
  margin-top: auto;
  color: var(--blue); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
}

/* =========================================================
   Home: how we work, audience, compliance (index)
   ========================================================= */
.home-steps { padding: 90px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-steps .section-head { margin-bottom: 44px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.step-card .step-num {
  position: absolute; top: 14px; right: 16px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--blue); text-transform: uppercase;
}
.step-card .icn {
  width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); color: #fff; font-size: 1.2rem;
}
.step-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.55; }

.home-serve { padding: 90px 0; background: var(--surface); }
.home-serve .section-head { margin-bottom: 44px; }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.serve-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.serve-card:hover { border-color: rgba(10,88,202,.25); box-shadow: var(--shadow-sm); }
.serve-card i {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue); font-size: 1.1rem;
}
.serve-card h3 { font-size: 1rem; color: var(--navy); margin: 0 0 6px; }
.serve-card p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.5; }

.home-compliance { padding: 90px 0; background: #fff; }
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.home-split-panel {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.home-split-panel h3 { font-size: 1.35rem; margin-bottom: 12px; color: var(--navy); }
.home-split-panel > p { color: var(--muted); margin-bottom: 22px; font-size: .98rem; line-height: 1.6; }
.check-list { display: grid; gap: 12px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .94rem; color: var(--navy); font-weight: 500;
}
.check-list li i { color: var(--blue); margin-top: 3px; }
.home-split-panel .btn { margin-top: 22px; }

.gallery-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.gallery-extra .gallery-item { min-height: 200px; }

.cats-foot {
  margin-top: 40px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cats-foot p { color: var(--muted); font-size: .98rem; line-height: 1.65; margin-bottom: 18px; }
.cats-foot .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Gallery strip
   ========================================================= */
.gallery { padding: 90px 0; }
.gallery .grid {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,37,69,.7) 100%);
  pointer-events: none;
}
.gallery-item .cap {
  position: absolute; left: 20px; bottom: 18px;
  color: #fff; font-weight: 600; font-size: .95rem; z-index: 2;
  display: flex; align-items: center; gap: 10px;
}
.gallery-item .cap i {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
}
.gallery-item:nth-child(1) { grid-row: 1 / span 2; }

@media (max-width: 768px) {
  .gallery .grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
}

/* =========================================================
   Why choose us
   ========================================================= */
.why { background: var(--surface); padding: 100px 0; }
.why .grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card .num {
  display: inline-block; font-size: 2rem; font-weight: 800;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .92rem; margin: 0; }

/* =========================================================
   Stats
   ========================================================= */
.stats {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: var(--gradient-navy);
  overflow: hidden;
}
.stats::after {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(25,167,230,.25), transparent 50%),
    radial-gradient(800px 500px at 100% 100%, rgba(10,88,202,.3), transparent 50%);
  pointer-events: none;
}
.stats .grid { position: relative; grid-template-columns: repeat(4, 1fr); gap: 20px; z-index: 1; text-align: center; }
.stats .stat strong {
  display: block; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; font-weight: 800; line-height: 1;
}
.stats .stat strong::after { content: "+"; color: var(--cyan); }
.stats .stat span { color: #cfdcf2; font-size: .95rem; }
.stats .stat i { color: var(--cyan); font-size: 1.4rem; margin-bottom: 10px; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner { padding: 80px 0; }
.cta-banner .box {
  position: relative;
  background: var(--gradient-brand);
  color: #fff;
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; gap: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner .box::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 10% 110%, rgba(255,255,255,.2), transparent 60%),
    radial-gradient(400px 300px at 110% -20%, rgba(11,37,69,.25), transparent 60%);
  pointer-events: none;
}
.cta-banner h2, .cta-banner p { color: #fff; position: relative; }
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { opacity: .92; margin: 0; }
.cta-banner .actions { text-align: right; position: relative; display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* =========================================================
   Breadcrumb banner
   ========================================================= */
.breadcrumb-banner {
  position: relative;
  padding: 160px 0 120px;
  color: #fff;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
}
.breadcrumb-banner::before {
  content:""; position: absolute; inset:0;
  background:
    linear-gradient(135deg, rgba(11,37,69,.88) 0%, rgba(10,88,202,.72) 60%, rgba(25,167,230,.55) 100%);
}
.breadcrumb-banner::after {
  content:""; position: absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity:.35;
}
.breadcrumb-banner .container { position: relative; z-index: 1; max-width: 900px; }
.breadcrumb-banner h1 { color: #fff; margin-bottom: 14px; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.breadcrumb-banner p.lead {
  color: #e6eefb; font-size: 1.05rem; margin: 0 auto 18px; max-width: 620px;
}
.breadcrumb-banner .crumbs {
  display: inline-flex; align-items: center; gap: 10px;
  color: #e6eefb; font-size: .9rem;
  background: rgba(255,255,255,.1);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
}
.breadcrumb-banner .crumbs a { color: #fff; font-weight: 500; }
.breadcrumb-banner .crumbs a:hover { color: var(--cyan); }
.breadcrumb-banner .crumbs i { font-size: .65rem; opacity: .7; }

/* =========================================================
   Product range (category detail)
   ========================================================= */
.range-intro { padding: 90px 0 40px; }
.range-intro .inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.range-intro .media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.range-intro .media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.range-intro .media .badge-icn {
  position: relative; z-index: 2;
  width: 84px; height: 84px; border-radius: 22px;
  background: rgba(255,255,255,.92);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.range-intro .media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,37,69,.1) 0%, rgba(11,37,69,.45) 100%);
}

.range-grid { padding: 40px 0 90px; }
.product-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-chip {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 500;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.product-chip:hover {
  transform: translateY(-2px);
  background: var(--blue-50);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.product-chip i {
  width: 38px; height: 38px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); color: #fff; border-radius: 10px; font-size: .9rem;
}

/* Quality note */
.quality-note {
  margin-top: 50px; padding: 34px;
  background: var(--surface);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center;
}
.quality-note i { font-size: 2rem; color: var(--blue); }
.quality-note h4 { color: var(--navy); margin: 0 0 4px; font-size: 1.05rem; font-weight: 700; }
.quality-note p { margin: 0; font-size: .92rem; }

/* Related categories */
.related-cats { background: var(--surface); padding: 80px 0; }
.related-cats .mini-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mini-cat {
  background: #fff; border: 1px solid var(--line); padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mini-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-cat i {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue); border-radius: 12px; font-size: 1.1rem; margin-bottom: 10px;
}
.mini-cat span { display: block; color: var(--navy); font-weight: 600; font-size: .9rem; }

/* =========================================================
   About page: mission/vision/values
   ========================================================= */
.mvv .grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: #fff; padding: 36px 30px; border: 1px solid var(--line);
  border-radius: var(--radius); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mvv-card .icn {
  width: 64px; height: 64px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); color: #fff; font-size: 1.6rem;
  margin-bottom: 20px;
}
.mvv-card h3 { margin-bottom: 8px; }
.mvv-card p { margin: 0; font-size: .95rem; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { padding: 90px 0 40px; }
.contact-grid .grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card {
  background: #fff; border: 1px solid var(--line);
  padding: 30px 24px; border-radius: var(--radius); text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .icn {
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); color: #fff; font-size: 1.3rem;
  margin: 0 auto 16px;
}
.contact-card h4 { font-size: 1.02rem; margin-bottom: 8px; color: var(--navy); }
.contact-card p, .contact-card a { font-size: .92rem; margin: 0; color: var(--muted); line-height: 1.55; }
.contact-card a:hover { color: var(--blue); }

.contact-form-wrap { padding: 40px 0 90px; }
.contact-form-wrap .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-form-wrap .info-side {
  padding: 44px;
  background: var(--gradient-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.contact-form-wrap .info-side::after {
  content:""; position: absolute; inset:0;
  background: radial-gradient(500px 300px at 100% 0%, rgba(25,167,230,.3), transparent 60%);
}
.contact-form-wrap .info-side > * { position: relative; z-index: 1; }
.contact-form-wrap .info-side h2 { color: #fff; }
.contact-form-wrap .info-side p { color: #cfdcf2; }
.contact-form-wrap .info-side ul { display: grid; gap: 18px; margin-top: 22px; }
.contact-form-wrap .info-side li { display: flex; gap: 14px; align-items: flex-start; }
.contact-form-wrap .info-side li > a.info-row-link {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  margin: -6px -10px;
  padding: 6px 10px;
  transition: background .2s ease;
}
.contact-form-wrap .info-side li > a.info-row-link:hover {
  background: rgba(255,255,255,.1);
}
.contact-form-wrap .info-side li > a.info-row-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.contact-form-wrap .info-side li i {
  width: 40px; height: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); color: var(--cyan); border-radius: 12px;
}
.contact-form-wrap .info-side li strong { display: block; color: #fff; margin-bottom: 2px; }
.contact-form-wrap .info-side li span { color: #cfdcf2; font-size: .92rem; }

form.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
form.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.contact-form label { font-size: .85rem; color: var(--navy); font-weight: 600; display: block; margin-bottom: 6px; }
form.contact-form .field { display: flex; flex-direction: column; }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10,88,202,.12);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }
form.contact-form button { align-self: flex-start; }
form.contact-form button:disabled {
  cursor: not-allowed;
  opacity: .7;
  transform: none;
  box-shadow: none;
}
.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: .92rem;
  line-height: 1.45;
}
.form-status.is-success,
.form-status.is-error,
.form-status.is-info { display: block; }
.form-status.is-success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}
.form-status.is-info {
  color: #084298;
  background: #cfe2ff;
  border: 1px solid #b6d4fe;
}
.form-status.is-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.map-wrap { padding-bottom: 0; line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: #07192f; color: #b9c6da; padding: 80px 0 0; }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img {
  height: 54px;
  width: auto;
  max-width: 260px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}
.footer-brand p { color: #a9b6ca; font-size: .92rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #b9c6da; font-size: .92rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-col li { display: flex; gap: 10px; align-items: flex-start; }
.footer-col li i { color: var(--cyan); margin-top: 4px; }
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { margin: 0; font-size: .86rem; color: #8a98ae; }
.footer-bottom a { color: var(--cyan); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .home-split { grid-template-columns: 1fr; gap: 28px; }
  .grid-4, .values .grid, .cats-grid, .why .grid, .stats .grid,
  .contact-grid .grid, .related-cats .mini-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual .hero-card-wrap {
    flex: 0 1 420px;
    width: min(100%, 420px);
    max-width: 420px;
    margin-inline: auto;
  }
  .hero-float.tl { left: 8px; top: -18px; }
  .hero-float.br { right: 8px; bottom: -18px; }
  .about-split .inner, .range-intro .inner,
  .contact-form-wrap .inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-banner .box { grid-template-columns: 1fr; text-align: center; }
  .cta-banner .actions { justify-content: center; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--line);
    padding: 14px 20px;
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .main-nav a { display: block; padding: 12px 14px; }
  .header-actions .btn { display: none; }
  .brand img { height: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .gallery-extra { grid-template-columns: 1fr; }
  .section-pad, .cats, .values, .about-split, .why, .stats, .cta-banner,
  .contact-grid, .contact-form-wrap, .mvv, .range-intro, .range-grid,
  .related-cats, .home-steps, .home-serve, .home-compliance, .gallery { padding: 60px 0; }
  .grid-3, .mvv .grid { grid-template-columns: 1fr; }
  .product-chips { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-4, .values .grid, .cats-grid, .why .grid,
  .stats .grid, .contact-grid .grid, .related-cats .mini-grid,
  .footer-grid, .about-points { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  .hero-card { min-height: 280px; max-width: 100%; }
  .hero-float.tl, .hero-float.br { display: none; }
  form.contact-form .row { grid-template-columns: 1fr; }
  .cta-banner .box { padding: 40px 26px; }
  .breadcrumb-banner { padding: 90px 0 60px; }
}

@media (max-width: 500px) {
  .product-chips { grid-template-columns: 1fr; }
}
