/* =========================================================
   AUROGUARD PRIVATE LIMITED — Corporate Industrial Theme
   Palette derived from the Auroguard shield logo
   ========================================================= */
:root {
  --green-900: #0a3d22;
  --green-800: #0f5132;
  --green-700: #14653f;
  --green-600: #1c7a4d;
  --navy-900: #0a1a3a;
  --navy-800: #102652;
  --navy-700: #1a2f5c;
  --gold-500: #d4af37;
  --gold-400: #e0c25a;
  --gold-300: #f1d877;
  --steel-100: #f4f6fa;
  --steel-200: #e6ebf2;
  --steel-300: #d0d8e3;
  --steel-500: #8895a8;
  --steel-700: #4a586e;
  --ink: #0d1726;
  --muted: #5a6677;
  --paper: #fbfcfd;
  --white: #ffffff;
  --line: rgba(15, 81, 50, 0.10);
  --line-soft: rgba(15, 23, 38, 0.08);
  --shadow-sm: 0 2px 8px rgba(10, 26, 58, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 26, 58, 0.10);
  --shadow-lg: 0 28px 80px rgba(10, 26, 58, 0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-weight: 700;
}
p { margin: 0; }

::selection { background: var(--gold-300); color: var(--navy-900); }

/* ---------- Top strip ---------- */
.top-strip {
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.top-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.top-strip a { color: var(--gold-300); font-weight: 600; }
.top-strip a:hover { color: var(--gold-500); }
.top-strip .ts-left { display: flex; align-items: center; gap: 10px; }
.top-strip .ts-left::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}
.top-strip .ts-right { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.nav-shell {
  max-width: var(--container);
  margin: 0 auto;
  min-height: 84px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: auto;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(10, 26, 58, 0.08));
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.01em;
}
.brand-text .b-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.nav-links > a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
}
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  height: 2px; width: 0;
  background: var(--gold-500);
  transition: width .25s var(--ease);
}
.nav-links > a:hover { color: var(--green-800); }
.nav-links > a:hover::after { width: 100%; }
.nav-cta {
  background: var(--green-800);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(15, 81, 50, 0.28);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(15, 81, 50, 0.36); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.30);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 175, 55, 0.42); }
.btn-green { background: var(--green-800); color: #fff; box-shadow: 0 8px 22px rgba(15, 81, 50, 0.28); }
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn-outline-dark { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn-outline-dark:hover { background: var(--green-800); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 80% 10%, rgba(20, 101, 63, 0.55), transparent 60%),
    radial-gradient(900px 500px at 12% 80%, rgba(212, 175, 55, 0.18), transparent 65%),
    linear-gradient(135deg, #061d11 0%, #0a3d22 45%, #102652 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: 50%;
  width: 520px; height: 520px;
  transform: translateY(-50%);
  background: url("../images/auroguard-logo.png") center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 28px 130px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-300);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold-300); }
.lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.trust-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 28px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.trust-panel strong {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.trust-panel strong::before {
  content: "★";
  color: var(--gold-500);
  font-size: 22px;
}
.trust-panel span {
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.trust-panel span::before {
  content: "›";
  color: var(--gold-500);
  font-weight: 800;
  font-size: 18px;
}

/* ---------- Trust / Certification strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-500);
}
.trust-strip-items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-strip-items span {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--steel-700);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-strip-items span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold-500);
  transform: rotate(45deg);
  display: inline-block;
}

/* ---------- Metric band ---------- */
.metric-band {
  max-width: var(--container);
  margin: -60px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.metric-band > div {
  padding: 32px 30px;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.metric-band > div:last-child { border-right: 0; }
.metric-band > div::before {
  content: "";
  position: absolute;
  left: 30px; top: 32px;
  width: 36px; height: 3px;
  background: var(--gold-500);
}
.metric-band strong {
  display: block;
  color: var(--green-800);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin: 18px 0 8px;
}
.metric-band span {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* ---------- Section base ---------- */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 28px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-heading h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.8vw, 52px);
  max-width: 780px;
}
.section-heading a {
  color: var(--green-800);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.section-heading a::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.section-heading a:hover { color: var(--gold-500); }
.section-heading a:hover::after { transform: translateX(4px); }

/* ---------- Product grid (home featured) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 81, 50, 0.18);
}
.product-card .pc-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--steel-200);
}
.product-card .pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card .pc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 26, 58, 0.42));
  pointer-events: none;
}
.product-card .pc-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .pc-cat {
  color: var(--gold-500);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.product-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 18px;
  flex: 1;
}
.product-card .pc-cta {
  color: var(--green-800);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.product-card .pc-cta::after { content: "→"; transition: transform .2s var(--ease); }
.product-card:hover .pc-cta::after { transform: translateX(4px); }

/* ---------- Capability / Confidence band ---------- */
.confidence {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(212, 175, 55, 0.12), transparent 65%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--green-900) 100%);
  color: #fff;
  padding: 110px max(28px, calc((100vw - 1232px) / 2));
  position: relative;
  overflow: hidden;
}
.confidence-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}
.confidence-intro h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
}
.confidence-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-top: 18px;
  max-width: 460px;
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.confidence-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.confidence-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}
.confidence-card .icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}
.confidence-card h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.confidence-card p { color: rgba(255, 255, 255, 0.78); font-size: 15px; }

/* ---------- Industries band ---------- */
.industries {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 28px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  text-transform: uppercase;
}
.industry-card h3 { font-size: 24px; margin-top: 10px; color: var(--ink); }
.industry-card p { color: var(--muted); font-size: 14.5px; margin-top: 10px; }

/* ---------- Blogs ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .meta {
  color: var(--green-700);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 24px; color: var(--ink); margin: 12px 0 12px; }
.blog-card p { color: var(--muted); font-size: 15px; flex: 1; margin-bottom: 18px; }
.blog-card a.read {
  color: var(--green-800);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.blog-card a.read::after { content: "→"; }
.blog-card:hover a.read { color: var(--gold-500); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 30% 50%, rgba(212, 175, 55, 0.15), transparent 60%),
    linear-gradient(120deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 90px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  max-width: 820px;
  margin: 0 auto 16px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.cta-band .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 90% 20%, rgba(20, 101, 63, 0.55), transparent 65%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--green-900) 100%);
  color: #fff;
  padding: 110px 28px 90px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  color: #fff;
  max-width: 960px;
  margin-bottom: 18px;
}
.page-hero p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.breadcrumb a { color: var(--gold-300); }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb span { color: rgba(255, 255, 255, 0.40); }

/* ---------- Catalog (products.php) ---------- */
.catalog-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 28px 30px;
}
.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.catalog-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
}
.catalog-head .cat-eyebrow {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.catalog-head .cat-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.catalog-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 81, 50, 0.18);
}
.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--steel-200);
}
.catalog-card .cc-body { padding: 18px 20px; display: flex; flex-direction: column; }
.catalog-card h3 { font-size: 19px; margin-bottom: 6px; color: var(--ink); }
.catalog-card p { color: var(--muted); font-size: 13.5px; margin: 0 0 12px; flex: 1; line-height: 1.5; }
.catalog-card a {
  color: var(--green-800);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.catalog-card a::after { content: " →"; }

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.category-filter button {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--steel-700);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.category-filter button:hover { color: var(--green-800); border-color: var(--green-800); }
.category-filter button.active { background: var(--green-800); color: #fff; border-color: var(--green-800); }

/* ---------- Product detail ---------- */
.product-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: start;
}
.product-detail-media {
  position: sticky;
  top: 110px;
}
.product-detail-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.product-detail-copy h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  color: var(--ink);
  margin-bottom: 18px;
}
.product-detail-copy .eyebrow { color: var(--green-700); }
.product-detail-copy .eyebrow::before { background: var(--green-700); }
.product-detail-copy .lead {
  color: var(--steel-700);
  font-size: 19px;
  margin: 8px 0 18px;
}
.product-detail-copy p { color: var(--muted); font-size: 16px; }

.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.spec-strip span {
  background: rgba(15, 81, 50, 0.06);
  border: 1px solid rgba(15, 81, 50, 0.16);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--green-800);
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.spec-strip span::before {
  content: "✓";
  color: var(--gold-500);
  font-weight: 800;
}

.product-detail .hero-actions { margin-top: 8px; }
.product-detail .btn-outline {
  color: var(--green-800);
  border-color: var(--green-800);
}
.product-detail .btn-outline:hover {
  background: var(--green-800);
  color: #fff;
}

/* Related products row */
.related {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 28px 100px;
}
.related h2 { font-size: 32px; color: var(--ink); margin-bottom: 22px; }

/* ---------- Article ---------- */
.article-shell {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 28px 100px;
}
.article-shell h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  color: var(--ink);
  margin: 14px 0 18px;
}
.article-shell .lead { color: var(--steel-700); font-size: 19px; }
.article-body { margin-top: 32px; }
.article-body p {
  color: var(--steel-700);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ---------- Contact ---------- */
.contact-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 28px 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 60px;
}
.contact-copy h2 { font-size: clamp(34px, 4vw, 52px); color: var(--ink); margin-bottom: 16px; }
.contact-copy .lead { color: var(--steel-700); font-size: 18px; }
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.contact-list .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-list .item:hover { border-color: var(--green-800); transform: translateX(4px); }
.contact-list .item .ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(15, 81, 50, 0.08);
  color: var(--green-800);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-list .item .label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
  font-weight: 700;
}
.contact-list .item .val { color: var(--ink); font-weight: 600; font-size: 16px; margin-top: 2px; }
.contact-list .item .val a { color: var(--green-800); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
}
.contact-form .field { display: grid; gap: 6px; }
.contact-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-700);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea,
.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.12);
}
.contact-form textarea,
.admin-card textarea { min-height: 140px; resize: vertical; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status {
  background: rgba(15, 81, 50, 0.08);
  border-left: 4px solid var(--green-800);
  padding: 14px 16px;
  font-weight: 600;
  color: var(--green-900);
  border-radius: var(--radius);
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #061d11, #030d07);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px max(28px, calc((100vw - 1232px) / 2)) 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.18));
}
.footer-about { font-size: 14.5px; line-height: 1.7; }
.footer-about strong { color: var(--gold-300); display: block; margin-top: 12px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer h3 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--gold-500);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }
.footer-contact { display: grid; gap: 10px; font-size: 14.5px; }
.footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--gold-300); }
.footer-contact .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
}
.footer-bottom {
  padding-top: 22px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.72); }
.footer-bottom a:hover { color: var(--gold-300); }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 44px rgba(37, 211, 102, 0.55); }
.floating-whatsapp::before {
  content: "";
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.65; }
}

/* ---------- Admin shell ---------- */
.admin-shell { max-width: var(--container); margin: 0 auto; padding: 50px 28px; }
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.admin-header h1 { color: var(--green-800); font-size: 40px; }
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.admin-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.admin-card h2 { color: var(--ink); font-size: 28px; margin-bottom: 18px; }
.admin-card form { display: grid; gap: 12px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 8px;
  text-align: left;
}
.admin-table th { color: var(--steel-700); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.danger { color: #b3261e; font-weight: 700; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.about-aside {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 14px; max-width: 920px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] { border-color: var(--green-700); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: rgba(15, 81, 50, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-800);
  font-weight: 800;
  font-size: 18px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.faq-item[open] summary::after { content: "−"; background: var(--green-800); color: #fff; transform: translateY(-50%) rotate(180deg); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--steel-700);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ---------- Market Area ---------- */
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.market-grid-tight { grid-template-columns: repeat(6, 1fr); gap: 10px; }
.market-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
}
.market-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-800);
  box-shadow: var(--shadow-sm);
}
.market-card .m-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.market-card .m-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.market-state { background: linear-gradient(135deg, rgba(15,81,50,.04), rgba(212,175,55,.04)); border-color: rgba(15,81,50,.18); }
.market-letter-block { margin-bottom: 32px; }
.market-letter {
  display: inline-block;
  background: var(--green-800);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  text-align: center;
  line-height: 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .market-grid { grid-template-columns: repeat(3, 1fr); }
  .market-grid-tight { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .market-grid-tight { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Admin tabs ---------- */
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 8px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.admin-tabs a {
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  color: var(--steel-700);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.admin-tabs a:hover { background: rgba(15,81,50,.05); color: var(--green-800); }
.admin-tabs a.active { background: var(--green-800); color: #fff; }

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 80px; padding-bottom: 100px; }
  .confidence-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .product-grid, .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-media { position: static; }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    background: var(--green-800);
    color: #fff;
    border: 0;
    padding: 11px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px 8px; }
  .nav-links > a::after { display: none; }
  .nav-cta { text-align: center; }
  .brand-text { display: none; }
  .top-strip-inner { justify-content: center; }
  .metric-band { grid-template-columns: 1fr 1fr; margin-top: -40px; }
  .metric-band > div:nth-child(2) { border-right: 0; }
  .metric-band > div:nth-child(1),
  .metric-band > div:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .product-grid, .industries-grid, .blog-grid, .catalog-grid, .confidence-grid { grid-template-columns: 1fr 1fr; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 22px; }
}

@media (max-width: 560px) {
  .product-grid, .industries-grid, .blog-grid, .catalog-grid, .confidence-grid { grid-template-columns: 1fr; }
  .metric-band { grid-template-columns: 1fr; margin: 0; border-radius: 0; }
  .metric-band > div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .metric-band > div:last-child { border-bottom: 0; }
  .hero h1 { font-size: 38px; }
  .contact-form { padding: 22px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .admin-grid { grid-template-columns: 1fr; }
  .floating-whatsapp { padding: 12px 16px; font-size: 13px; }
}
